├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── preview.yml │ └── update-dates.yaml ├── .gitignore ├── README.md ├── docs ├── aerial_autonomy_stacks.md ├── aerial_vehicles.md ├── education_and_tutorial.md ├── events.md ├── goatcounter.html ├── hardware.md ├── images │ ├── blimp.png │ ├── edit-button.png │ ├── fixed_wing.png │ ├── flapping.png │ └── quadcopter.png ├── index.md ├── message_standards.md ├── middleware_and_drivers.md ├── safety_management.md ├── scripts │ └── update_repo_dates.py ├── simulation.md └── software.md ├── mkdocs.yml ├── pixi.lock ├── pixi.toml ├── requirements.txt └── tools ├── stopwords.txt └── word_cloud.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.github/workflows/update-dates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/.github/workflows/update-dates.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/README.md -------------------------------------------------------------------------------- /docs/aerial_autonomy_stacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/aerial_autonomy_stacks.md -------------------------------------------------------------------------------- /docs/aerial_vehicles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/aerial_vehicles.md -------------------------------------------------------------------------------- /docs/education_and_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/education_and_tutorial.md -------------------------------------------------------------------------------- /docs/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/events.md -------------------------------------------------------------------------------- /docs/goatcounter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/goatcounter.html -------------------------------------------------------------------------------- /docs/hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/hardware.md -------------------------------------------------------------------------------- /docs/images/blimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/images/blimp.png -------------------------------------------------------------------------------- /docs/images/edit-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/images/edit-button.png -------------------------------------------------------------------------------- /docs/images/fixed_wing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/images/fixed_wing.png -------------------------------------------------------------------------------- /docs/images/flapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/images/flapping.png -------------------------------------------------------------------------------- /docs/images/quadcopter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/images/quadcopter.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/message_standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/message_standards.md -------------------------------------------------------------------------------- /docs/middleware_and_drivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/middleware_and_drivers.md -------------------------------------------------------------------------------- /docs/safety_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/safety_management.md -------------------------------------------------------------------------------- /docs/scripts/update_repo_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/scripts/update_repo_dates.py -------------------------------------------------------------------------------- /docs/simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/simulation.md -------------------------------------------------------------------------------- /docs/software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/docs/software.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/pixi.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/tools/stopwords.txt -------------------------------------------------------------------------------- /tools/word_cloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ROS-Aerial/aerial_robotic_landscape/HEAD/tools/word_cloud.sh --------------------------------------------------------------------------------