Skip to content

Instantly share code, notes, and snippets.

@chambbj
Created October 31, 2012 20:48
Show Gist options
  • Select an option

  • Save chambbj/3989768 to your computer and use it in GitHub Desktop.

Select an option

Save chambbj/3989768 to your computer and use it in GitHub Desktop.
LAS to GeoJSON XML pipeline
<?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