Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 30 additions & 30 deletions engine/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ homepage = "https://github.com/reearth/reearth-flow"
license = "MIT OR Apache-2.0"
repository = "https://github.com/reearth/reearth-flow"
rust-version = "1.93.1" # Remember to update clippy.toml as well
version = "0.0.376"
version = "0.0.377"

[profile.dev]
opt-level = 0
Expand Down Expand Up @@ -126,7 +126,7 @@ geo-types = "0.7.18"
geojson = "0.24.2"
glam = "0.30.10"
# gltf = { version = "1.4", features = ["extensions", "extras"] }
fastxml = { version = "0.8.1", features = ["ureq"] }
fastxml = { version = "0.8.2", features = ["ureq"] }
gltf = { git = "https://github.com/gltf-rs/gltf", rev = "3def30c9caf96f2dbc85238179ea5a6152c5cf22", features = [
"EXT_texture_webp",
"extensions",
Expand Down
101 changes: 100 additions & 1 deletion engine/docs/mdbook/src/action.md
Original file line number Diff line number Diff line change
Expand Up @@ -8825,7 +8825,7 @@ Extracts UDX folders from cityGML path
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "UDXFolderExtractor Parameters",
"description": "Configuration for extracting UDX folder structure information from PLATEAU4 CityGML paths.",
"description": "Configuration for extracting UDX folder structure information from PLATEAU CityGML paths.",
"type": "object",
"required": [
"cityGmlPath"
Expand Down Expand Up @@ -8934,6 +8934,105 @@ Detect unshared edges in triangular meshes - edges that appear only once. REQUIR
### Category
* PLATEAU

## PLATEAU6.DomainOfDefinitionValidator
### Type
* processor
### Description
Validates domain of definition of CityGML features
### Parameters
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DomainOfDefinitionValidator Parameters",
"description": "Configuration for validating domain of definition of CityGML features.",
"type": "object",
"properties": {
"codelistsPath": {
"description": "Fallback codelists directory path expression. When codelists files are not found at the location relative to the GML file, this path will be used as the base directory for resolving codeSpace references.",
"anyOf": [
{
"$ref": "#/definitions/Expr"
},
{
"type": "null"
}
]
}
},
"definitions": {
"Expr": {
"type": "string"
}
}
}
```
### Input Ports
* default
### Output Ports
* default
* rejected
* duplicateGmlIdStats
### Category
* PLATEAU

## PLATEAU6.UDXFolderExtractor
### Type
* processor
### Description
Extracts UDX folders from cityGML path
### Parameters
```json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "UDXFolderExtractor Parameters",
"description": "Configuration for extracting UDX folder structure information from PLATEAU CityGML paths.",
"type": "object",
"required": [
"cityGmlPath"
],
"properties": {
"cityGmlPath": {
"$ref": "#/definitions/Expr"
},
"codelistsPath": {
"anyOf": [
{
"$ref": "#/definitions/Attribute"
},
{
"type": "null"
}
]
},
"schemasPath": {
"anyOf": [
{
"$ref": "#/definitions/Attribute"
},
{
"type": "null"
}
]
}
},
"definitions": {
"Attribute": {
"type": "string"
},
"Expr": {
"type": "string"
}
}
}
```
### Input Ports
* default
### Output Ports
* default
* rejected
### Category
* PLATEAU

## PlanarityFilter
### Type
* processor
Expand Down
Loading
Loading