vectiler
vectiler-0.1.0
平台 | 建置狀態 |
---|---|
作業系統/Linux | |
視窗 |
基於 mapzen 向量切片的波前 obj 向量切片產生器和導出器。
導出範例
獲取子模組
首先透過執行以下命令初始化子模組:
$ git submodule update --init --recursive
安裝依賴項 (OS X)
$ brew install cmake
安裝依賴項(Linux)
要建置 vectiler,您需要一個支援c++11
的編譯器,例如在 ubuntu 機器上使用g++-4.9
:
$ sudo add-apt-repository ppa:ubuntu-toolchain-r/test
$ sudo apt-get update
$ sudo apt-get install g++-4.9 cmake libcurl4-openssl-dev
建置(OS X/Linux)
要在build/
目錄中使用 cmake 進行構建,請執行以下命令:
cmake . -Bbuild
cmake --build build
建置(Windows)
首先安裝 CMake for Windows,然後在 MinGW 等命令列工具中執行以下命令:
$ mkdir build
$ cd build
$ cmake .. -G " Visual Studio 14 2015 Win64 "
$ cmake --build .
用法
Usage: ./vectiler.out [options]
Options:
--name File name ((null))
--apikey Nextzen Developer API key (https://developers.nextzen.org/)
--splitMeshes Generate one mesh per feature in wavefront file (0)
--tilex Tile X (can be a tile range: 19294/19295) (19294)
--tiley Tile Y (can be a tile range: 24642/24643) (24642)
--tilez Tile Z (zoom) (16)
--offsetx Global tile Offset on X coordinate (0.0)
--offsety Global tile Offset on Y coordinate (0.0)
--append Append the obj to an existing obj file (0)
--buildings Whether to export building geometry (1)
--buildingsExtrusionScale Building height scale factor (1.0)
--buildingsHeight The height at which building should be extruded (if no height data is available) (0.0)
--pedestal Build a pedestal when running with terrain option (Useful for 3d printing) (0)
--pedestalHeight Pedestal height, can be negative (0.0)
--terrain Generate terrain elevation topography (0)
--terrainSubdivision Terrain mesh subdivision (64)
--terrainExtrusionScale Terrain mesh extrusion scale (1.0)
--roads Whether to export roads geometry (0)
--roadsHeight The roads height offset (z-axis) (1.0)
--roadsExtrusionWidth The roads extrusion width (5.0)
--normals Export with normals (0)
--version Output version
--help Output help
地形
地形匯出僅適用於縮放 15 ( --tilez
):
$ ./vectiler --tilex 5242/5260 --tiley 12642/12666 --tilez 15 --terrain 1 --buildings 1 --terrainExtrusionScale 1.5 --buildingsExtrusionScale 1.9