Field | Type | Description | Default value | Example value |
schema | String | The schema of the required table. | public | postgres |
flip_y_z | Boolean | Specifies whether to exchange values on the y-axis and z-axis. Note By default, the y-axis of glTF is vertical while the z-axis is vertical in GanosBase. If you set this parameter to true, take note of the following points: | true | false |
split_meshgeom | Boolean | Specifies whether to divide geometry data. Note If you want to divide geometry data, take note of the following items: If geometry data exists, the geometry table named [Primary table name]_meshgeom is generated. The texture geometry in the primary table points to the corresponding data in the referenced table after referencing is complete. This facilitates the division of the data records that have a large number of complex geometries and prevents excessive size of a single record. If you want to import multiple models into one table, make sure that the IDs of the imported models are different. If duplicate IDs exist, duplicate geometries are generated. Geometry tables and texture tables can be divided at the same time without interfering with each other.
| false | true |
split_texture | Boolean | Specifies whether to divide texture data. Note If you want to divide texture data, take note of the following items: If an embedded image texture exists, the texture table named[Primary table name]_texture is generated. The texture data in the primary table points to the corresponding data in the referenced table after referencing is complete. This facilitates the division of data records that have a large number of textures and prevents excessive size of a single record. For example, oblique photographs can be divided in an efficient manner. If you want to divide texture data but the texture data is in the URL format, the reference mode is unavailable. If you want to divide texture data but the data does not contain any embedded image textures, no texture table is generated. If you want to import multiple models into one table, make sure that the IDs of the imported models are different. If duplicate IDs exist, duplicate geometries are generated. Geometry tables and texture tables can be divided at the same time without interfering with each other.
| false | true |
sfmesh_column | String | The data field of the primary table. | gltf_data | my_data |
gltf_id_column | String | The data ID field of the primary table. | gltf_id | my_id |