Skip to content

Commit

Permalink
fixing bug for #19
Browse files Browse the repository at this point in the history
  • Loading branch information
iannesbitt committed Jul 6, 2023
1 parent b30165b commit c1d5fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdgpoints/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def cli():
Parse the command options and arguments.
"""
parser = argparse.ArgumentParser(prog='pdgpoints', description='Convert LiDAR files (LAS, LAZ) to Cesium tilesets.')
parser.add_argument('-c', '--copy_I_to_RGB', action='store_true', help='Whether to copy intensity values to RGB')
parser.add_argument('-c', '--copy_i_to_rgb', action='store_true', help='Whether to copy intensity values to RGB')
parser.add_argument('-m', '--merge', action='store_true', help='Whether to use merge function')
parser.add_argument('-a', '--archive', action='store_true', help='Whether to archive the input dataset')
parser.add_argument('-s', '--rgb_scale', type=float, default=1.0, help='Scale multiplier for RGB values')
Expand All @@ -31,6 +31,6 @@ def cli():
archive=args.archive,
rgb_scale=args.rgb_scale,
translate_z=args.translate_z,
from_vdatum=args.from_vdatum,
from_geoid=args.from_geoid,
geoid_region=args.geoid_region)
p.run()

0 comments on commit c1d5fbf

Please sign in to comment.