DriveWorks SDK Reference
3.0.4260 Release
For Test and Development only

/dvs/git/dirty/gitlab-master_av/dw/sdk/tools/maps/maptool_dw_maps_to_kml/README-maptool_dw_maps_to_kml.md
Go to the documentation of this file.
1 # Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
2 
3 @page dwx_maptool_dw_maps_to_kml DriveWorks Maps to KML Converter Tool
4 @tableofcontents
5 
6 @section dwx_map_klm_description Description
7 
8 The NVIDIA<sup>&reg;</sup> DriveWorks Maps to KML Converter tool converts a DriveWorks Map file to a KML file.<br>
9 The KML file is suitable for viewing in applications such as Google Earth.
10 
11 @note SW Release Applicability: This tool is available in <b>NVIDIA DRIVE Software</b> releases.
12 
13 @section dwx_map_klm_prerequisites Prerequisites
14 
15 This tool is available on the x86 Host System.
16 
17 This tool creates output files that are placed into the current working directory by default. Please ensure the following for your convenience:
18 - Write permissions are enabled for the current working directory.
19 - Include the tools folder in the binary search path of the system.
20 - Execute from your home directory.
21 
22 @section dwx_map_klm_usage Running the Tool
23 
24 Run the tool by executing:
25 
26  ./maptool_dw_maps_to_kml --input_file=input.bin
27  --output_file=output.kml
28  [--absolute_height]
29  [--convert_unknown_colors]
30  [--ignore_hd_compliance]
31  [--low_alpha]
32 
33 @subsection dwx_map_klm_params Parameters
34 
35  --input_file=[path to input file]
36  Description: The input DriveWorks Maps filename.
37  Default value: input.bin
38 
39  --output_file=[path to output file]
40  Description: The output KML filename.
41  Default value: output.kml
42 
43  --absolute_height
44  Description: If specified, uses absolute height instead of clamping to ground.
45  This parameter is optional.
46 
47  --convert_unknown_colors
48  Description: If specified, converts unknown colored lane boundaries as white lane boundaries.
49  This parameter is optional.
50 
51  --ignore_hd_compliance
52  Description: If specified, ignores HD compliance and white lane boundaries, using shades of green instead.
53  This parameter is optional.
54 
55  --low_alpha
56  Description: If specified, displays dashed lane boundaries with more transparency.
57  This parameter is optional.
58 
59 @section maps_to_kml_example Examples
60 
61 @subsection maps_to_kml_example_ignoreHD Ignoring HD Compliance using Shades of Green
62 
63  ./maptool_dw_maps_to_kml --input_file=input.bin
64  --output_file=output.kml
65  --ignore_hd_compliance
66 
67 @subsection maps_to_kml_example_white Converting Unknown Colored Lane Boundaries to White with more Transparency
68 
69  ./maptool_dw_maps_to_kml --input_file=input.bin
70  --output_file=output.kml
71  --convert_unknown_colors
72  --low_alpha