├── .flake8 ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.md ├── LICENSE ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── docs ├── Doc │ ├── CityTemporalTilerDesignNotes.md │ ├── CityTilerDesignNotes.md │ ├── Tilers_features.md │ ├── UML │ │ ├── Loa.drawio │ │ ├── Loa.drawio.png │ │ ├── Lod1.drawio │ │ ├── Lod1.drawio.png │ │ ├── activity_generic_example.drawio │ │ ├── activity_generic_example.drawio.png │ │ ├── base_architecture.drawio │ │ ├── base_architecture.drawio.png │ │ ├── py3dtilers_formats.drawio │ │ ├── py3dtilers_formats.png │ │ ├── tiler_activity.drawio │ │ ├── tiler_activity.drawio.png │ │ ├── tiler_activity_smaller.drawio │ │ ├── tiler_activity_smaller.drawio.png │ │ ├── tilers.drawio │ │ └── tilers.drawio.png │ ├── cityGML_to_3DTiles_example.md │ └── geoJSON_to_3DTiles_example.md ├── py3dtilers │ ├── CityTiler │ │ ├── CityTemporalTiler.html │ │ ├── CityTiler.html │ │ ├── citym_bridge.html │ │ ├── citym_building.html │ │ ├── citym_cityobject.html │ │ ├── citym_relief.html │ │ ├── citym_waterbody.html │ │ ├── database_accesses.html │ │ ├── database_accesses_batch_table_hierarchy.html │ │ ├── index.html │ │ ├── temporal_building.html │ │ ├── temporal_graph.html │ │ └── temporal_utils.html │ ├── Color │ │ ├── color_config.html │ │ └── index.html │ ├── Common │ │ ├── feature.html │ │ ├── geometry_node.html │ │ ├── geometry_tree.html │ │ ├── group.html │ │ ├── index.html │ │ ├── loa_node.html │ │ ├── lod1_node.html │ │ ├── lod_feature_list.html │ │ ├── lod_tree.html │ │ ├── obj_writer.html │ │ ├── polygon_extrusion.html │ │ ├── tiler.html │ │ ├── tileset_creation.html │ │ └── tree_with_children_and_parent.html │ ├── GeojsonTiler │ │ ├── GeojsonTiler.html │ │ ├── geojson.html │ │ ├── geojson_line.html │ │ ├── geojson_polygon.html │ │ ├── index.html │ │ └── lineBuffer.html │ ├── IfcTiler │ │ ├── IfcTiler.html │ │ ├── ifcObjectGeom.html │ │ └── index.html │ ├── ObjTiler │ │ ├── ObjTiler.html │ │ ├── index.html │ │ └── obj.html │ ├── Texture │ │ ├── atlas.html │ │ ├── atlas_node.html │ │ ├── atlas_rectangle.html │ │ ├── index.html │ │ └── texture.html │ ├── TilesetReader │ │ ├── TilesetMerger.html │ │ ├── TilesetReader.html │ │ ├── index.html │ │ ├── tile_to_feature.html │ │ └── tileset_tree.html │ └── index.html └── readme.md ├── py3dtilers ├── .gitignore ├── CityTiler │ ├── .gitignore │ ├── CityTemporalTiler.py │ ├── CityTiler.py │ ├── CityTilerDBConfigReference.yml │ ├── README.md │ ├── __init__.py │ ├── citym_bridge.py │ ├── citym_building.py │ ├── citym_cityobject.py │ ├── citym_relief.py │ ├── citym_waterbody.py │ ├── database_accesses.py │ ├── database_accesses_batch_table_hierarchy.py │ ├── temporal_building.py │ ├── temporal_graph.py │ └── temporal_utils.py ├── Color │ ├── README.md │ ├── __init__.py │ ├── citytiler_config.json │ ├── color_config.py │ └── default_config.json ├── Common │ ├── README.md │ ├── __init__.py │ ├── feature.py │ ├── geometry_node.py │ ├── geometry_tree.py │ ├── group.py │ ├── kd_tree.py │ ├── loa_node.py │ ├── lod1_node.py │ ├── lod_feature_list.py │ ├── lod_tree.py │ ├── obj_writer.py │ ├── polygon_extrusion.py │ ├── tiler.py │ ├── tileset_creation.py │ └── tree_with_children_and_parent.py ├── GeojsonTiler │ ├── GeojsonTiler.py │ ├── README.md │ ├── __init__.py │ ├── geojson.py │ ├── geojson_line.py │ ├── geojson_polygon.py │ └── lineBuffer.py ├── IfcTiler │ ├── IFC_Geometry.md │ ├── IfcTiler.py │ ├── README.md │ ├── __init__.py │ └── ifcObjectGeom.py ├── ObjTiler │ ├── ObjTiler.py │ ├── README.md │ ├── __init__.py │ └── obj.py ├── Texture │ ├── __init__.py │ ├── atlas.py │ ├── atlas_node.py │ ├── atlas_rectangle.py │ └── texture.py ├── TilesetReader │ ├── README.md │ ├── TilesetMerger.py │ ├── TilesetReader.py │ ├── __init__.py │ ├── reader_utils.py │ ├── tile_to_feature.py │ └── tileset_tree.py └── __init__.py ├── setup.py └── tests ├── Readme.md ├── __init__.py ├── city_temporal_tiler_test_data ├── graph_2009-2012.json ├── test_data_temporal_2009.sql └── test_data_temporal_2012.sql ├── city_tiler_test_data ├── polygons │ └── polygon.geojson └── test_data.sql ├── data └── .gitkeep ├── geojson_tiler_test_data ├── buildings │ ├── feature_1 │ │ └── oneBlock.geojson │ └── feature_2 │ │ └── oneBlock.geojson ├── polygons │ └── oneBlock_polygons_buffer.geojson └── roads │ ├── line_string_road.geojson │ └── multi_line_string_road.geojson ├── ifc_tiler_test_data └── FZK.ifc ├── obj_tiler_data ├── Cube │ ├── cube_1.obj │ └── cube_2.obj ├── MultiLODModel │ ├── tour_part_dieu_0.obj │ ├── tour_part_dieu_1.obj │ └── tour_part_dieu_2.obj └── TexturedCube │ ├── cube.mtl │ ├── cube.obj │ └── tex.png ├── test_cityTemporalTiler.py ├── test_cityTiler.py ├── test_geojsonTiler.py ├── test_ifcTiler.py ├── test_objTiler.py ├── test_tiler.py ├── test_tilesetReader.py ├── tiler_test_data ├── loa_polygons │ └── polygons_lod_tree_test.geojson └── texture.jpg └── tileset_reader_test_data ├── textured_cube ├── tiles │ ├── 0.b3dm │ └── ATLAS_3.png └── tileset.json ├── white_buildings ├── tiles │ ├── 0.b3dm │ └── 1.b3dm └── tileset.json └── white_buildings_with_lods ├── tiles ├── 0.b3dm ├── 1.b3dm └── 2.b3dm └── tileset.json /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=venv/, setup.py 3 | ignore=E501 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/README.md -------------------------------------------------------------------------------- /docs/Doc/CityTemporalTilerDesignNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/CityTemporalTilerDesignNotes.md -------------------------------------------------------------------------------- /docs/Doc/CityTilerDesignNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/CityTilerDesignNotes.md -------------------------------------------------------------------------------- /docs/Doc/Tilers_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/Tilers_features.md -------------------------------------------------------------------------------- /docs/Doc/UML/Loa.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/Loa.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/Loa.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/Loa.drawio.png -------------------------------------------------------------------------------- /docs/Doc/UML/Lod1.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/Lod1.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/Lod1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/Lod1.drawio.png -------------------------------------------------------------------------------- /docs/Doc/UML/activity_generic_example.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/activity_generic_example.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/activity_generic_example.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/activity_generic_example.drawio.png -------------------------------------------------------------------------------- /docs/Doc/UML/base_architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/base_architecture.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/base_architecture.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/base_architecture.drawio.png -------------------------------------------------------------------------------- /docs/Doc/UML/py3dtilers_formats.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/py3dtilers_formats.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/py3dtilers_formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/py3dtilers_formats.png -------------------------------------------------------------------------------- /docs/Doc/UML/tiler_activity.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/tiler_activity.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/tiler_activity.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/tiler_activity.drawio.png -------------------------------------------------------------------------------- /docs/Doc/UML/tiler_activity_smaller.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/tiler_activity_smaller.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/tiler_activity_smaller.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/tiler_activity_smaller.drawio.png -------------------------------------------------------------------------------- /docs/Doc/UML/tilers.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/tilers.drawio -------------------------------------------------------------------------------- /docs/Doc/UML/tilers.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/UML/tilers.drawio.png -------------------------------------------------------------------------------- /docs/Doc/cityGML_to_3DTiles_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/cityGML_to_3DTiles_example.md -------------------------------------------------------------------------------- /docs/Doc/geoJSON_to_3DTiles_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/Doc/geoJSON_to_3DTiles_example.md -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/CityTemporalTiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/CityTemporalTiler.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/CityTiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/CityTiler.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/citym_bridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/citym_bridge.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/citym_building.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/citym_building.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/citym_cityobject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/citym_cityobject.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/citym_relief.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/citym_relief.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/citym_waterbody.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/citym_waterbody.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/database_accesses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/database_accesses.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/database_accesses_batch_table_hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/database_accesses_batch_table_hierarchy.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/temporal_building.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/temporal_building.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/temporal_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/temporal_graph.html -------------------------------------------------------------------------------- /docs/py3dtilers/CityTiler/temporal_utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/CityTiler/temporal_utils.html -------------------------------------------------------------------------------- /docs/py3dtilers/Color/color_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Color/color_config.html -------------------------------------------------------------------------------- /docs/py3dtilers/Color/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Color/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/feature.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/geometry_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/geometry_node.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/geometry_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/geometry_tree.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/group.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/loa_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/loa_node.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/lod1_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/lod1_node.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/lod_feature_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/lod_feature_list.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/lod_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/lod_tree.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/obj_writer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/obj_writer.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/polygon_extrusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/polygon_extrusion.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/tiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/tiler.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/tileset_creation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/tileset_creation.html -------------------------------------------------------------------------------- /docs/py3dtilers/Common/tree_with_children_and_parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Common/tree_with_children_and_parent.html -------------------------------------------------------------------------------- /docs/py3dtilers/GeojsonTiler/GeojsonTiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/GeojsonTiler/GeojsonTiler.html -------------------------------------------------------------------------------- /docs/py3dtilers/GeojsonTiler/geojson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/GeojsonTiler/geojson.html -------------------------------------------------------------------------------- /docs/py3dtilers/GeojsonTiler/geojson_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/GeojsonTiler/geojson_line.html -------------------------------------------------------------------------------- /docs/py3dtilers/GeojsonTiler/geojson_polygon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/GeojsonTiler/geojson_polygon.html -------------------------------------------------------------------------------- /docs/py3dtilers/GeojsonTiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/GeojsonTiler/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/GeojsonTiler/lineBuffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/GeojsonTiler/lineBuffer.html -------------------------------------------------------------------------------- /docs/py3dtilers/IfcTiler/IfcTiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/IfcTiler/IfcTiler.html -------------------------------------------------------------------------------- /docs/py3dtilers/IfcTiler/ifcObjectGeom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/IfcTiler/ifcObjectGeom.html -------------------------------------------------------------------------------- /docs/py3dtilers/IfcTiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/IfcTiler/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/ObjTiler/ObjTiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/ObjTiler/ObjTiler.html -------------------------------------------------------------------------------- /docs/py3dtilers/ObjTiler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/ObjTiler/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/ObjTiler/obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/ObjTiler/obj.html -------------------------------------------------------------------------------- /docs/py3dtilers/Texture/atlas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Texture/atlas.html -------------------------------------------------------------------------------- /docs/py3dtilers/Texture/atlas_node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Texture/atlas_node.html -------------------------------------------------------------------------------- /docs/py3dtilers/Texture/atlas_rectangle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Texture/atlas_rectangle.html -------------------------------------------------------------------------------- /docs/py3dtilers/Texture/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Texture/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/Texture/texture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/Texture/texture.html -------------------------------------------------------------------------------- /docs/py3dtilers/TilesetReader/TilesetMerger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/TilesetReader/TilesetMerger.html -------------------------------------------------------------------------------- /docs/py3dtilers/TilesetReader/TilesetReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/TilesetReader/TilesetReader.html -------------------------------------------------------------------------------- /docs/py3dtilers/TilesetReader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/TilesetReader/index.html -------------------------------------------------------------------------------- /docs/py3dtilers/TilesetReader/tile_to_feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/TilesetReader/tile_to_feature.html -------------------------------------------------------------------------------- /docs/py3dtilers/TilesetReader/tileset_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/TilesetReader/tileset_tree.html -------------------------------------------------------------------------------- /docs/py3dtilers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/py3dtilers/index.html -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/docs/readme.md -------------------------------------------------------------------------------- /py3dtilers/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /py3dtilers/CityTiler/.gitignore: -------------------------------------------------------------------------------- 1 | CityTilerDBConfig.yml -------------------------------------------------------------------------------- /py3dtilers/CityTiler/CityTemporalTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/CityTemporalTiler.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/CityTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/CityTiler.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/CityTilerDBConfigReference.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/CityTilerDBConfigReference.yml -------------------------------------------------------------------------------- /py3dtilers/CityTiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/README.md -------------------------------------------------------------------------------- /py3dtilers/CityTiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/__init__.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/citym_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/citym_bridge.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/citym_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/citym_building.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/citym_cityobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/citym_cityobject.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/citym_relief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/citym_relief.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/citym_waterbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/citym_waterbody.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/database_accesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/database_accesses.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/database_accesses_batch_table_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/database_accesses_batch_table_hierarchy.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/temporal_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/temporal_building.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/temporal_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/temporal_graph.py -------------------------------------------------------------------------------- /py3dtilers/CityTiler/temporal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/CityTiler/temporal_utils.py -------------------------------------------------------------------------------- /py3dtilers/Color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Color/README.md -------------------------------------------------------------------------------- /py3dtilers/Color/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Color/__init__.py -------------------------------------------------------------------------------- /py3dtilers/Color/citytiler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Color/citytiler_config.json -------------------------------------------------------------------------------- /py3dtilers/Color/color_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Color/color_config.py -------------------------------------------------------------------------------- /py3dtilers/Color/default_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Color/default_config.json -------------------------------------------------------------------------------- /py3dtilers/Common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/README.md -------------------------------------------------------------------------------- /py3dtilers/Common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/__init__.py -------------------------------------------------------------------------------- /py3dtilers/Common/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/feature.py -------------------------------------------------------------------------------- /py3dtilers/Common/geometry_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/geometry_node.py -------------------------------------------------------------------------------- /py3dtilers/Common/geometry_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/geometry_tree.py -------------------------------------------------------------------------------- /py3dtilers/Common/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/group.py -------------------------------------------------------------------------------- /py3dtilers/Common/kd_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/kd_tree.py -------------------------------------------------------------------------------- /py3dtilers/Common/loa_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/loa_node.py -------------------------------------------------------------------------------- /py3dtilers/Common/lod1_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/lod1_node.py -------------------------------------------------------------------------------- /py3dtilers/Common/lod_feature_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/lod_feature_list.py -------------------------------------------------------------------------------- /py3dtilers/Common/lod_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/lod_tree.py -------------------------------------------------------------------------------- /py3dtilers/Common/obj_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/obj_writer.py -------------------------------------------------------------------------------- /py3dtilers/Common/polygon_extrusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/polygon_extrusion.py -------------------------------------------------------------------------------- /py3dtilers/Common/tiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/tiler.py -------------------------------------------------------------------------------- /py3dtilers/Common/tileset_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/tileset_creation.py -------------------------------------------------------------------------------- /py3dtilers/Common/tree_with_children_and_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Common/tree_with_children_and_parent.py -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/GeojsonTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/GeojsonTiler/GeojsonTiler.py -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/GeojsonTiler/README.md -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/__init__.py: -------------------------------------------------------------------------------- 1 | from .GeojsonTiler import main 2 | 3 | __all__ = ['main'] 4 | -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/geojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/GeojsonTiler/geojson.py -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/geojson_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/GeojsonTiler/geojson_line.py -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/geojson_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/GeojsonTiler/geojson_polygon.py -------------------------------------------------------------------------------- /py3dtilers/GeojsonTiler/lineBuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/GeojsonTiler/lineBuffer.py -------------------------------------------------------------------------------- /py3dtilers/IfcTiler/IFC_Geometry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/IfcTiler/IFC_Geometry.md -------------------------------------------------------------------------------- /py3dtilers/IfcTiler/IfcTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/IfcTiler/IfcTiler.py -------------------------------------------------------------------------------- /py3dtilers/IfcTiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/IfcTiler/README.md -------------------------------------------------------------------------------- /py3dtilers/IfcTiler/__init__.py: -------------------------------------------------------------------------------- 1 | from .IfcTiler import main 2 | 3 | __all__ = ['main'] 4 | -------------------------------------------------------------------------------- /py3dtilers/IfcTiler/ifcObjectGeom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/IfcTiler/ifcObjectGeom.py -------------------------------------------------------------------------------- /py3dtilers/ObjTiler/ObjTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/ObjTiler/ObjTiler.py -------------------------------------------------------------------------------- /py3dtilers/ObjTiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/ObjTiler/README.md -------------------------------------------------------------------------------- /py3dtilers/ObjTiler/__init__.py: -------------------------------------------------------------------------------- 1 | from .ObjTiler import main 2 | 3 | __all__ = ['main'] 4 | -------------------------------------------------------------------------------- /py3dtilers/ObjTiler/obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/ObjTiler/obj.py -------------------------------------------------------------------------------- /py3dtilers/Texture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Texture/__init__.py -------------------------------------------------------------------------------- /py3dtilers/Texture/atlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Texture/atlas.py -------------------------------------------------------------------------------- /py3dtilers/Texture/atlas_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Texture/atlas_node.py -------------------------------------------------------------------------------- /py3dtilers/Texture/atlas_rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Texture/atlas_rectangle.py -------------------------------------------------------------------------------- /py3dtilers/Texture/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/Texture/texture.py -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/README.md -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/TilesetMerger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/TilesetMerger.py -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/TilesetReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/TilesetReader.py -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/__init__.py -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/reader_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/reader_utils.py -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/tile_to_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/tile_to_feature.py -------------------------------------------------------------------------------- /py3dtilers/TilesetReader/tileset_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/py3dtilers/TilesetReader/tileset_tree.py -------------------------------------------------------------------------------- /py3dtilers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | __version__ = '1.2.0' 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/setup.py -------------------------------------------------------------------------------- /tests/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/Readme.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/city_temporal_tiler_test_data/graph_2009-2012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/city_temporal_tiler_test_data/graph_2009-2012.json -------------------------------------------------------------------------------- /tests/city_temporal_tiler_test_data/test_data_temporal_2009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/city_temporal_tiler_test_data/test_data_temporal_2009.sql -------------------------------------------------------------------------------- /tests/city_temporal_tiler_test_data/test_data_temporal_2012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/city_temporal_tiler_test_data/test_data_temporal_2012.sql -------------------------------------------------------------------------------- /tests/city_tiler_test_data/polygons/polygon.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/city_tiler_test_data/polygons/polygon.geojson -------------------------------------------------------------------------------- /tests/city_tiler_test_data/test_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/city_tiler_test_data/test_data.sql -------------------------------------------------------------------------------- /tests/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/geojson_tiler_test_data/buildings/feature_1/oneBlock.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/geojson_tiler_test_data/buildings/feature_1/oneBlock.geojson -------------------------------------------------------------------------------- /tests/geojson_tiler_test_data/buildings/feature_2/oneBlock.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/geojson_tiler_test_data/buildings/feature_2/oneBlock.geojson -------------------------------------------------------------------------------- /tests/geojson_tiler_test_data/polygons/oneBlock_polygons_buffer.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/geojson_tiler_test_data/polygons/oneBlock_polygons_buffer.geojson -------------------------------------------------------------------------------- /tests/geojson_tiler_test_data/roads/line_string_road.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/geojson_tiler_test_data/roads/line_string_road.geojson -------------------------------------------------------------------------------- /tests/geojson_tiler_test_data/roads/multi_line_string_road.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/geojson_tiler_test_data/roads/multi_line_string_road.geojson -------------------------------------------------------------------------------- /tests/ifc_tiler_test_data/FZK.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/ifc_tiler_test_data/FZK.ifc -------------------------------------------------------------------------------- /tests/obj_tiler_data/Cube/cube_1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/Cube/cube_1.obj -------------------------------------------------------------------------------- /tests/obj_tiler_data/Cube/cube_2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/Cube/cube_2.obj -------------------------------------------------------------------------------- /tests/obj_tiler_data/MultiLODModel/tour_part_dieu_0.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/MultiLODModel/tour_part_dieu_0.obj -------------------------------------------------------------------------------- /tests/obj_tiler_data/MultiLODModel/tour_part_dieu_1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/MultiLODModel/tour_part_dieu_1.obj -------------------------------------------------------------------------------- /tests/obj_tiler_data/MultiLODModel/tour_part_dieu_2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/MultiLODModel/tour_part_dieu_2.obj -------------------------------------------------------------------------------- /tests/obj_tiler_data/TexturedCube/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/TexturedCube/cube.mtl -------------------------------------------------------------------------------- /tests/obj_tiler_data/TexturedCube/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/TexturedCube/cube.obj -------------------------------------------------------------------------------- /tests/obj_tiler_data/TexturedCube/tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/obj_tiler_data/TexturedCube/tex.png -------------------------------------------------------------------------------- /tests/test_cityTemporalTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_cityTemporalTiler.py -------------------------------------------------------------------------------- /tests/test_cityTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_cityTiler.py -------------------------------------------------------------------------------- /tests/test_geojsonTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_geojsonTiler.py -------------------------------------------------------------------------------- /tests/test_ifcTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_ifcTiler.py -------------------------------------------------------------------------------- /tests/test_objTiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_objTiler.py -------------------------------------------------------------------------------- /tests/test_tiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_tiler.py -------------------------------------------------------------------------------- /tests/test_tilesetReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/test_tilesetReader.py -------------------------------------------------------------------------------- /tests/tiler_test_data/loa_polygons/polygons_lod_tree_test.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tiler_test_data/loa_polygons/polygons_lod_tree_test.geojson -------------------------------------------------------------------------------- /tests/tiler_test_data/texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tiler_test_data/texture.jpg -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/textured_cube/tiles/0.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/textured_cube/tiles/0.b3dm -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/textured_cube/tiles/ATLAS_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/textured_cube/tiles/ATLAS_3.png -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/textured_cube/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/textured_cube/tileset.json -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings/tiles/0.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings/tiles/0.b3dm -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings/tiles/1.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings/tiles/1.b3dm -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings/tileset.json -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings_with_lods/tiles/0.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings_with_lods/tiles/0.b3dm -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings_with_lods/tiles/1.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings_with_lods/tiles/1.b3dm -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings_with_lods/tiles/2.b3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings_with_lods/tiles/2.b3dm -------------------------------------------------------------------------------- /tests/tileset_reader_test_data/white_buildings_with_lods/tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oslandia/py3dtilers/HEAD/tests/tileset_reader_test_data/white_buildings_with_lods/tileset.json --------------------------------------------------------------------------------