|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status |
|
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged lanelet2_io at Robotics Stack Exchange
|
Package Summary
Tags | No category tags. |
Version | 1.2.2 |
License | BSD |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/fzi-forschungszentrum-informatik/lanelet2.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2024-10-25 |
Dev Status | MAINTAINED |
CI status |
|
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Fabian Immel
Authors
- Fabian Poggenhans
Lanelet2 IO
IO Module for parsing and writing LaneletMaps.
It contains a various reader/writer functions for different formats. Which format will be used is determined the extension of the given filename. If a writer/parser is registered for this extension, it will be chosen automatically.
Currently available IO modules are:
- OSM (.osm) writes/loads specialized lanelet maps from OpenStreetMap html files. See maps module for a primer on this.
- Binary (.bin) writes/loads the map to/from an internal bin format. Very efficient for writing and reading but not human-readable
Projections
Most IO modules require a projection from WGS84 (lat/lon) to a local metric coordinate system. To make sure the loaded map is correct in itself it is very important to choose the correct origin and the correct projector.
The origin should be as close to where the map is as possible.
For an overview on projections, have a look at the projection module.
Usage
Here is an example of how to read a file from .osm and write it back out as .bin:
#include <lanelet2_io/io.h>
std::string filename_in = "mymap.osm";
lanelet::Origin origin(49.0, 8.4);
lanelet::LaneletMapPtr laneletMap = lanelet::load(filenameIn, origin);
std::string filename_out = "mymap.bin";
lanelet::write(filenameOut, *laneletMap);
Changelog for package lanelet2_io
1.2.2 (2024-10-25)
- Build documentation with mkdocs (#321)
- Contributors: DavUhll
1.2.1 (2023-05-10)
1.2.0 (2023-01-30)
- Fix OSM file output for upload and elevation
(#245)
- discourage upload and format elevation to max 2 decimals to prevent JSOM excessive elevation precision errors
- remove width to prevent leading spaces for lat/lon/ele
- allow for providing parameters josm_prevent_upload and josm_format_elevation to write
- Test lat/lon/ele formatting with and without josm_format_elevation. Test josm_upload
- improve read/write tutorial section comments
- document params
- Add CI using GitHub Actions (#256)
- Contributors: Michał Antkiewicz, Nico Neumann, Fabian Immel
1.1.1 (2020-09-14)
1.1.0 (2020-09-06)
- Add experimental support for building with colcon on ros2 and ament_cmake
- Format files with clang-format 10
- io: Fix random errors in bin serialization when serializing a HybridMap fixes fzi-forschungszentrum-informatik/Lanelet2#128
- Making all includes in lanelet2_io consistent.
- Updating package.xml files to format 3.
- Contributors: Fabian Poggenhans, Joshua Whitley
1.0.1 (2020-03-24)
- Make sure lanelet2 buildtool_export_depends on mrt_cmake_modules
- Add changelogs
- Improve warning if wrong decimal symbol is set, also report it when loading
- Contributors: Fabian Poggenhans
1.0.0 (2020-03-03)
- Bump version to 1.0
- Add a new class 'LaneletSubmap' that only contains parts of the map and is faster to construct
- IO: Implement warning for cases where the decimal point is overridden by a different locale resolves MRT/released/lanelet2#91
- Fix loading of polygons that have been written without an area tag resolves MRT/released/lanelet2#113
- Refactored osm parser so that parsed roles in relations keep their positions
- Improve c++17 support, supress warnings and clang-tidy 7 issues
- IO now complains when loading georeferenced maps with a default origin (resolves #71)
- Initial commit
- Contributors: Fabian Poggenhans, Maximilian Naumann
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
ament_cmake_core | |
mrt_cmake_modules | |
lanelet2_core |
System Dependencies
Name |
---|
gtest |
boost |
pugixml-dev |