Created
October 31, 2012 20:48
-
-
Save chambbj/3989768 to your computer and use it in GitHub Desktop.
LAS to GeoJSON XML pipeline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Pipeline version="1.0"> | |
| <Writer type="drivers.text.writer"> | |
| <Option name="filename"> | |
| output.json | |
| </Option> | |
| <Option name="order"> | |
| X,Y,Z | |
| </Option> | |
| <Option name="keep_unspecified"> | |
| true | |
| </Option> | |
| <Option name="format"> | |
| geojson | |
| </Option> | |
| <Option name="chunk_size"> | |
| 10 | |
| </Option> | |
| <Reader type="drivers.las.reader"> | |
| <Option name="filename"> | |
| input.las | |
| </Option> | |
| </Reader> | |
| </Writer> | |
| </Pipeline> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment