Skip to content

Commit

Permalink
make refinement add the default
Browse files Browse the repository at this point in the history
  • Loading branch information
bertt committed Aug 28, 2024
1 parent d1dbf5a commit fab1468
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ If --username and/or --dbname are not specified the current username is used as
--add_outlines (Default: false) Add outlines (Cesium)
-r, --refinement (Default: REPLACE) Refinement ADD/REPLACE (Cesium)
-r, --refinement (Default: ADD) Refinement ADD/REPLACE (Cesium)
--zoom (Default: 15) Zoom level (Mapbox)
Expand Down
2 changes: 1 addition & 1 deletion src/pg2b3dm/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class Options
[Option("add_outlines", Required = false, Default = false, HelpText = "Add outlines (Cesium)", SetName = "Cesium")]
public bool? AddOutlines { get; set; }

[Option('r', "refinement", Required = false, Default = "REPLACE", HelpText = "Refinement option REPLACE/ADD (Cesium)", SetName = "Cesium")]
[Option('r', "refinement", Required = false, Default = "ADD", HelpText = "Refinement option REPLACE/ADD (Cesium)", SetName = "Cesium")]
public string Refinement{ get; set; }

// mapbox specific options
Expand Down

0 comments on commit fab1468

Please sign in to comment.