Skip to content

Commit

Permalink
switching to z12 as defult tile ouput
Browse files Browse the repository at this point in the history
  • Loading branch information
kpwebb committed Jan 30, 2018
1 parent 53bccdf commit 0865ba1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public byte[] toBinary() throws IOException {

SharedStreetsProto.SharedStreetsReference.Builder reference = SharedStreetsProto.SharedStreetsReference.newBuilder();

reference.setId(this.id.toString());
reference.setId(this.getId());

reference.setFormOfWay(SharedStreetsProto.SharedStreetsReference.FormOfWay.forNumber(this.formOfWay.getValue()));
reference.setGeometryId(this.geometry.id.toString());
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/sharedstreets/tools/builder/ProcessPBF.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static void main(String[] args) throws Exception {
.create() );

options.addOption( OptionBuilder.withLongOpt( "zlevel" )
.withDescription( "tile z-level (default 10)" )
.withDescription( "tile z-level (default 12)" )
.hasArg()
.withArgName("Z-LEVEL")
.create() );
Expand All @@ -55,7 +55,7 @@ public static void main(String[] args) throws Exception {

String outputPath = "";

Integer zLevel = 11;
Integer zLevel = 12 ;

try {
// parse the command line arguments
Expand Down

0 comments on commit 0865ba1

Please sign in to comment.