Hello I’m looking for some information about vtkCesium3DTilesWriter. Particularly an explanation on the input parameters would be useful, and a list of required vs optional parameters.
These are the only pages I was able to find, but unfortunately not completely informative:
https://vtk.org/doc/nightly/html//classvtkCesium3DTilesWriter.html
https://www.kitware.com/3d-tiles-generation-using-vtk/
Thanks!!
danlipsa
(Dan Lipsa (Kitware))
June 8, 2023, 1:31am
2
This is the script we use to generate 3dtiles from a list of obj or citygml files. You may be able to use this directly to do the conversion you need.
#!/usr/bin/env python
###############################################################################
# Copyright Kitware Inc. and Contributors
# Distributed under the Apache License, 2.0 (apache.org/licenses/LICENSE-2.0)
# See accompanying Copyright.txt and LICENSE files for details
###############################################################################
import argparse
from glob import glob
import json
import logging
import math
import numpy as np
import os
import re
from subprocess import run
from typing import (
List,
This file has been truncated. show original