Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BuildingDetailAttribute などを別表として読み込む #92

Merged
merged 1 commit into from
Oct 2, 2023
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
4 changes: 4 additions & 0 deletions plateau_plugin/plateau/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@
from .building import (
BUILDING,
BUILDING_BOUNDARY_SURFACE,
BUILDING_DETAIL,
BUILDING_FURNITURE,
BUILDING_INSTALLATION,
BUILDING_INT_INSTALLATION,
BUILDING_OPENING,
LARGE_CUSTOMER_FACILITY_ATTRIBUTE,
)
from .cityfurniture import CITY_FURNITURE
from .generics import GENERIC_CITY_OBJECT
Expand Down Expand Up @@ -58,6 +60,8 @@
BUILDING_INT_INSTALLATION,
BUILDING_OPENING,
BUILDING_FURNITURE,
BUILDING_DETAIL,
LARGE_CUSTOMER_FACILITY_ATTRIBUTE,
# bridge
BRIDGE,
BRIDGE_BOUNDARY_SURFACE,
Expand Down
3 changes: 3 additions & 0 deletions plateau_plugin/plateau/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ class FeatureProcessingDefinition:
disaster_risk_attr_conatiner_path: str | None = None
"""災害リスク属性 uro:(Building)DisasterRiskAttribute を包含する要素への element path"""

nested_attributes: list[str] | None = None
"""ネストされた属性として表現すべき属性"""

non_geometric: bool = False
"""ジオメトリを持たない Feature かどうか

Expand Down
Loading