Skip to content

Commit

Permalink
enabled output compression
Browse files Browse the repository at this point in the history
  • Loading branch information
benediktschwab committed Oct 16, 2023
1 parent d90b4f7 commit daad481
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ class OpendriveToCitygmlProcessor(
citygmlModelResult.second.serializeToJsonFile(outputSubDirectoryPath / ROADSPACES_TO_CITYGML_REPORT_PATH)

// write CityGML model
CitygmlWriter.writeToFile(citygmlModelResult.first, parameters.getCitygmlWriteVersion(), outputSubDirectoryPath / "citygml_model.gml")
CitygmlWriter.writeToFile(
citygmlModelResult.first,
parameters.getCitygmlWriteVersion(),
outputSubDirectoryPath / ("citygml_model.gml" + parameters.compressionFormat.toFileExtension())
)
}
}

Expand Down

0 comments on commit daad481

Please sign in to comment.