Vec2Map
[Drivers]
Collaboration diagram for Vec2Map:
- Provides
- Requires
- Configuration requests
- None
- Configuration file options
- cells_per_unit (float)
- Default: 0.0 (Should be set to something greater than zero!)
- How many cells are occupied for one vectormap unit (for example 50.0 cells for one meter)
- init_geos (integer)
- Default: 1
- If set to 1, GEOS will be initialized by this driver. If you use other driver that uses GEOS (e.g. postgis), you must set it to 0.
- full_extent (integer)
- Default: 1
- If set to 1, extent will be computed as if point (0, 0) were in the middle. Warning! It can produce large grid map!
- draw_border (integer)
- Default: 1
- If set to 1, border will be drawn around whole map. Border line will be marked as occupied place in the grid.
- skip_feature (string)
- Default: ""
- Do not draw feature with that name on final grid map
- Example
driver ( name "vec2map" requires ["vectormap:0"] provides ["map:0"] cells_per_unit 50.0 init_geos 0 )
- TODO
- Try to use BuildWKB() method as in sicknav200 driver instead of GEOS. Note that it should use Linestring instead of Multipoint.