-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<!-- Close or Related Issues --> Close #686 ### What I did(変更内容) <!-- Please describe the motivation behind this PR and the changes it introduces. --> <!-- どのような変更をしますか? 目的は? --> - タイトルの通り - v4で追加されたschemaの定義を追加 - shp変換時の属性名の短縮定義を追加 ### Notes(連絡事項) <!-- If manual testing is required, please describe the procedure. --> <!-- 手動での動作確認が必要なら手順を簡単に伝えてください。そのほか連絡事項など。 --> 確認時に実行したコマンド ``` cargo run <INPUT_PATH> --sink <SINK> -t use_lod=max_lod --output <OUTPUT_PATH> ``` - v4テストデータの bldg、dem、fld、frn、lsld、tran、urf、vegのデータで全てのsinkで動作を確認済み - 使用したテストデータはテクスチャが存在しないため、テクスチャ付きの変換の確認はできていない
- Loading branch information
1 parent
80c0230
commit 561163a
Showing
5 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
use nusamai_citygml::{citygml_feature, CityGmlElement}; | ||
|
||
use super::common::DataQualityAttribute; | ||
|
||
#[allow(non_camel_case_types)] | ||
#[citygml_feature(name = "uro:demDataQualityAttribute")] | ||
pub struct demDataQualityAttribute { | ||
#[citygml(path = b"uro:DataQualityAttribute", required)] | ||
pub data_quality_attribute: Option<DataQualityAttribute>, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters