Skip to content

Commit

Permalink
Fix --help for compres() operator, it was wrong --digit needs to be…
Browse files Browse the repository at this point in the history
… there
  • Loading branch information
hugoledoux committed Feb 3, 2021
1 parent 6ba172e commit d1e1969
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cjio/cjio.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,10 +436,10 @@ def compress_cmd(digit):
"""
Compress a CityJSON file, ie stores its vertices with integers.
The '--digit' parameter is the number of digits to preserve, so
The '--digit' parameter is the number of digits to preserve (default=3), so
millimeter precision that would be '3'.
$ cjio myfile.json compress 3 info
$ cjio myfile.json compress --digit 3 info
"""
def processor(cm):
Expand Down

0 comments on commit d1e1969

Please sign in to comment.