├── .codespell_words ├── .github ├── dependabot.yml └── workflows │ ├── ci.yaml │ ├── format.yaml │ └── prerelease.yaml ├── .pre-commit-config.yaml ├── Contributing.md ├── LICENSE.txt ├── README.md ├── marine_acoustic_msgs ├── CHANGELOG.rst ├── CMakeLists.txt ├── README.md ├── bmr │ ├── README.md │ ├── make_v1_1_0.py │ ├── order00_projected_sonar_image.bmr │ └── order02_package_rename.bmr ├── msg │ ├── DetectionFlag.msg │ ├── Dvl.msg │ ├── PingInfo.msg │ ├── ProjectedSonarImage.msg │ ├── RawSonarImage.msg │ ├── SonarDetections.msg │ ├── SonarImageData.msg │ └── SonarRanges.msg └── package.xml └── marine_sensor_msgs ├── CHANGELOG.rst ├── CMakeLists.txt ├── README.md ├── bmr ├── RadarSector.bmr └── order00_package_rename.bmr ├── msg ├── RadarEcho.msg ├── RadarSector.msg └── TurbidityNTU.msg └── package.xml /.codespell_words: -------------------------------------------------------------------------------- 1 | ned 2 | reson 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/.github/workflows/format.yaml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/.github/workflows/prerelease.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/README.md -------------------------------------------------------------------------------- /marine_acoustic_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /marine_acoustic_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /marine_acoustic_msgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/README.md -------------------------------------------------------------------------------- /marine_acoustic_msgs/bmr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/bmr/README.md -------------------------------------------------------------------------------- /marine_acoustic_msgs/bmr/make_v1_1_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/bmr/make_v1_1_0.py -------------------------------------------------------------------------------- /marine_acoustic_msgs/bmr/order00_projected_sonar_image.bmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/bmr/order00_projected_sonar_image.bmr -------------------------------------------------------------------------------- /marine_acoustic_msgs/bmr/order02_package_rename.bmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/bmr/order02_package_rename.bmr -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/DetectionFlag.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/DetectionFlag.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/Dvl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/Dvl.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/PingInfo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/PingInfo.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/ProjectedSonarImage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/ProjectedSonarImage.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/RawSonarImage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/RawSonarImage.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/SonarDetections.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/SonarDetections.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/SonarImageData.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/SonarImageData.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/msg/SonarRanges.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/msg/SonarRanges.msg -------------------------------------------------------------------------------- /marine_acoustic_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_acoustic_msgs/package.xml -------------------------------------------------------------------------------- /marine_sensor_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /marine_sensor_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /marine_sensor_msgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/README.md -------------------------------------------------------------------------------- /marine_sensor_msgs/bmr/RadarSector.bmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/bmr/RadarSector.bmr -------------------------------------------------------------------------------- /marine_sensor_msgs/bmr/order00_package_rename.bmr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/bmr/order00_package_rename.bmr -------------------------------------------------------------------------------- /marine_sensor_msgs/msg/RadarEcho.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/msg/RadarEcho.msg -------------------------------------------------------------------------------- /marine_sensor_msgs/msg/RadarSector.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/msg/RadarSector.msg -------------------------------------------------------------------------------- /marine_sensor_msgs/msg/TurbidityNTU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/msg/TurbidityNTU.msg -------------------------------------------------------------------------------- /marine_sensor_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apl-ocean-engineering/marine_msgs/HEAD/marine_sensor_msgs/package.xml --------------------------------------------------------------------------------