vectiler
vectiler-0.1.0
플랫폼 | 빌드 상태 |
---|---|
OS X/리눅스 | |
윈도우 |
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를 설치한 후 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