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

具体的なデータパイプラインの土台を実装する #78

Merged
merged 4 commits into from
Dec 18, 2023

Conversation

ciscorn
Copy link
Member

@ciscorn ciscorn commented Dec 18, 2023

nusamai crate の main.rs で、パイプラインを走らせられるようにしました。(もともとテストコードとしてなんとなく実装してあったパイプラインを整えて main.rs の形にした、という感じです)。

いまのところ以下のようにして実行できます。

time cargo run --release ~/Desktop/PLATEAU/15100_niigata-shi_2022_citygml_1_op/udx/bldg/*.gml --sink serde

少しずつリファクタリングしながらやっているためコードの変更点は多いですが、本質的な変更はそれほど多くないです。全体に目を通して頂く必要はないと思います。 また、今後も色々とbreaking changesが発生すると思います。

要点はPRにコメントします。

Closes #67

@ciscorn ciscorn self-assigned this Dec 18, 2023
Copy link

codecov bot commented Dec 18, 2023

Codecov Report

Attention: 122 lines in your changes are missing coverage. Please review.

Files Patch % Lines
nusamai/src/main.rs 0.00% 58 Missing ⚠️
nusamai/src/source/citygml.rs 72.30% 18 Missing ⚠️
nusamai-plateau/citygml/src/values.rs 23.80% 16 Missing ⚠️
nusamai/src/sink/noop.rs 71.42% 8 Missing ⚠️
nusamai/src/sink/serde.rs 85.71% 8 Missing ⚠️
nusamai-plateau/citygml/macros/src/lib.rs 80.00% 6 Missing ⚠️
nusamai/src/pipeline/feedback.rs 20.00% 4 Missing ⚠️
nusamai-plateau/citygml/src/parser.rs 50.00% 3 Missing ⚠️
nusamai/src/pipeline/transform.rs 0.00% 1 Missing ⚠️
Additional details and impacted files
Components Coverage Δ
GUI ∅ <ø> (∅)
Backend 67.37% <61.96%> (-23.29%) ⬇️
Libraries 83.28% <60.93%> (+0.30%) ⬆️

📢 Thoughts on this report? Let us know!

nusamai/src/sink/serde.rs Outdated Show resolved Hide resolved
nusamai/src/sink/noop.rs Outdated Show resolved Hide resolved
Copy link
Collaborator

@nokonoko1203 nokonoko1203 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@ciscorn ciscorn merged commit b2151c2 into main Dec 18, 2023
3 of 4 checks passed
@ciscorn ciscorn deleted the feature/actual-pipeline-stub branch December 18, 2023 08:48
sorami added a commit that referenced this pull request Dec 19, 2023
close #62

## 概要

- 従来のコードは、 `nusamai-geometry` の Geometryを直接扱って、変換していた
- → 「トップレベル都市オブジェクト」を入力として、GeoJSONへの変換処理を行う
  - #78 で用意されたものを利用している

`Geometries` にある `multipolygon`, `multilinestring`, `multipoint`
、それぞれをFeatureにしている。


## 変更

- [x] 変換処理の書き換え
  - `nusamai-geojson/src/conversion.rs`
  - `nusamai-geojson/src/lib.rs`
- [x] CityGMLファイルをパースしてGeoJSONを出力するexampleの追加
  - `nusamai-geojson/examples/gml2geojson.rs`
- その他
  - [x] Tauri側の暫定処理を、この変更に合わせて修正: `app/src-tauri/*`
- [x] いにしえのパースexampleの削除: `nusamai-geojson/examples/citygml_polygons.rs`

## 補足: 属性の扱い

属性はこのPRでは考慮していない。

トップレベル都市オブジェクトの ` cityobj: FeatureOrData<'a>` を扱う必要がある。

別途対応する #46
ciscorn added a commit that referenced this pull request Dec 27, 2023
nusamai crate の main.rs
で、パイプラインを走らせられるようにしました。(もともとテストコードとしてなんとなく実装してあったパイプラインを整えて main.rs
の形にした、という感じです)。

いまのところ以下のようにして実行できます。

```
time cargo run --release ~/Desktop/PLATEAU/15100_niigata-shi_2022_citygml_1_op/udx/bldg/*.gml --sink serde
```


少しずつリファクタリングしながらやっているためコードの変更点は多いですが、本質的な変更はそれほど多くないです。全体に目を通して頂く必要はないと思います。
また、今後も色々とbreaking changesが発生すると思います。

要点はPRにコメントします。

Closes #67
ciscorn pushed a commit that referenced this pull request Dec 27, 2023
close #62

- 従来のコードは、 `nusamai-geometry` の Geometryを直接扱って、変換していた
- → 「トップレベル都市オブジェクト」を入力として、GeoJSONへの変換処理を行う
  - #78 で用意されたものを利用している

`Geometries` にある `multipolygon`, `multilinestring`, `multipoint`
、それぞれをFeatureにしている。

- [x] 変換処理の書き換え
  - `nusamai-geojson/src/conversion.rs`
  - `nusamai-geojson/src/lib.rs`
- [x] CityGMLファイルをパースしてGeoJSONを出力するexampleの追加
  - `nusamai-geojson/examples/gml2geojson.rs`
- その他
  - [x] Tauri側の暫定処理を、この変更に合わせて修正: `app/src-tauri/*`
- [x] いにしえのパースexampleの削除: `nusamai-geojson/examples/citygml_polygons.rs`

属性はこのPRでは考慮していない。

トップレベル都市オブジェクトの ` cityobj: FeatureOrData<'a>` を扱う必要がある。

別途対応する #46
ciscorn pushed a commit that referenced this pull request Dec 27, 2023
close #62

- 従来のコードは、 `nusamai-geometry` の Geometryを直接扱って、変換していた
- → 「トップレベル都市オブジェクト」を入力として、GeoJSONへの変換処理を行う
  - #78 で用意されたものを利用している

`Geometries` にある `multipolygon`, `multilinestring`, `multipoint`
、それぞれをFeatureにしている。

- [x] 変換処理の書き換え
  - `nusamai-geojson/src/conversion.rs`
  - `nusamai-geojson/src/lib.rs`
- [x] CityGMLファイルをパースしてGeoJSONを出力するexampleの追加
  - `nusamai-geojson/examples/gml2geojson.rs`
- その他
  - [x] Tauri側の暫定処理を、この変更に合わせて修正: `app/src-tauri/*`
- [x] いにしえのパースexampleの削除: `nusamai-geojson/examples/citygml_polygons.rs`

属性はこのPRでは考慮していない。

トップレベル都市オブジェクトの ` cityobj: FeatureOrData<'a>` を扱う必要がある。

別途対応する #46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

データパイプラインに実際の都市オブジェクトを流す
2 participants