-
Notifications
You must be signed in to change notification settings - Fork 11
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
GeoPackage出力ドライバーの実装 #58
Closed
Closed
Conversation
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
Codecov ReportAttention:
Additional details and impacted files
📢 Thoughts on this report? Let us know! |
3 tasks
sorami
added a commit
that referenced
this pull request
Dec 13, 2023
Related #55 (一部のみ実装) (裏で #58 とかもやってるので、これのレビュー完了はタスク進行のブロッカーになっていません!) まだ属性を網羅していませんが、小さめにということで、まずこれで方向性が間違っていないか、ご確認いただけないでしょうか。 ## 変更 - [x] Codeへの PartialEq, Eq deriveの追加 - テストで比較するため(`citygml/src/values.rs`) - [x] CityFurniture用のテストの追加 - 沼津市2021リアルデータを利用(`tests/test_cityfurniture.rs`) - `tests/models/` とサブディレクトリも検討しましたが、Cargoの仕組み上、tests直下でないと少々ややこしかったので、ひとまずこのようにフラットに置きました - [x] CityFurnitureの属性を補充 - `class`, `function`(`src/models/cityfurniture.rs`) 定義した属性: https://www.mlit.go.jp/plateaudocument/#toc4_14 <img width="1173" alt="image" src="https://github.com/MIERUNE/nusamai/assets/595008/e3034299-ffa4-4a09-b8df-492449697c82"> ## 悩み - リアルデータには、仕様書にある全属性が存在するわけではない - 手元で、テスト用のモックXMLデータを作る? - 仕様書の読み方がまだわかっておらず、定義すべきものが間違っていないか確証がない - https://www.mlit.go.jp/plateaudocument/#toc4_14 - 例えば、↓にある、 `name`や `description`、はたまた `gen:stringAttribute`なども定義が必要か <img width="1163" alt="image" src="https://github.com/MIERUNE/nusamai/assets/595008/1bb926d4-cfa7-4c35-a4eb-152b96b28c21">
mainブランチでの様々な変更も踏まえて、改めてPRを作る。 |
ciscorn
pushed a commit
that referenced
this pull request
Dec 27, 2023
Related #55 (一部のみ実装) (裏で #58 とかもやってるので、これのレビュー完了はタスク進行のブロッカーになっていません!) まだ属性を網羅していませんが、小さめにということで、まずこれで方向性が間違っていないか、ご確認いただけないでしょうか。 ## 変更 - [x] Codeへの PartialEq, Eq deriveの追加 - テストで比較するため(`citygml/src/values.rs`) - [x] CityFurniture用のテストの追加 - 沼津市2021リアルデータを利用(`tests/test_cityfurniture.rs`) - `tests/models/` とサブディレクトリも検討しましたが、Cargoの仕組み上、tests直下でないと少々ややこしかったので、ひとまずこのようにフラットに置きました - [x] CityFurnitureの属性を補充 - `class`, `function`(`src/models/cityfurniture.rs`) 定義した属性: https://www.mlit.go.jp/plateaudocument/#toc4_14 <img width="1173" alt="image" src="https://github.com/MIERUNE/nusamai/assets/595008/e3034299-ffa4-4a09-b8df-492449697c82"> ## 悩み - リアルデータには、仕様書にある全属性が存在するわけではない - 手元で、テスト用のモックXMLデータを作る? - 仕様書の読み方がまだわかっておらず、定義すべきものが間違っていないか確証がない - https://www.mlit.go.jp/plateaudocument/#toc4_14 - 例えば、↓にある、 `name`や `description`、はたまた `gen:stringAttribute`なども定義が必要か <img width="1163" alt="image" src="https://github.com/MIERUNE/nusamai/assets/595008/1bb926d4-cfa7-4c35-a4eb-152b96b28c21">
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#8