Last active
April 1, 2025 00:50
-
-
Save connormanning/c2c9b5e8f56b1e8d524b8717e33729bd to your computer and use it in GitHub Desktop.
Installing PDAL/Entwine/Greyhound natively (OS X)
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
brew tap osgeo/osgeo4mac geos | |
brew install cmake points2grid gdal libgeotiff libxml2 jsoncpp nitro sqlite laszip xz curl ninja | |
git clone [email protected]:hobu/laz-perf.git && cd laz-perf | |
mkdir build && cd build | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release .. | |
ninja install | |
git clone [email protected]:PDAL/PDAL.git pdal && cd pdal | |
mkdir build && cd build | |
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DWITH_LAZPERF=ON -DWITH_LASZIP=ON -DBUILD_PLUGIN_GREYHOUND=ON .. | |
ninja install | |
git clone [email protected]:connormanning/entwine.git && cd entwine | |
mkdir build && cd build | |
cmake -G Ninja .. | |
ninja install | |
git clone [email protected]:hobu/greyhound.git && cd greyhound | |
mkdir build && cd build | |
cmake -G Ninja .. | |
make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment