types
Custom types, custom Dagster types
ExportResult
dataclass
¶
Result of the tile export with tyler for a single tile.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile_id
|
str
|
Tile ID |
required |
cityjson_path
|
Path
|
Path to the cityjson file |
required |
gpkg_path
|
Path
|
Path to the geopackage file |
required |
obj_paths
|
Sequence[Path]
|
Paths to the OBJ files |
required |
wkt
|
str
|
Tile WKT |
required |
Source code in bag3d/common/types.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|