-
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
nusamai-gpkg: クレートの作成、空のGeoPackageファイル作成 #89
Conversation
Codecov ReportAttention:
Additional details and impacted files
📢 Thoughts on this report? Let us know! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Compile-time verification が使えるなら積極的に使うとよいかもなと思いましたが、Gpkgの固定テーブル以外は動的なので、あまり使い所はないかも。
https://github.com/launchbadge/sqlx?tab=readme-ov-file#compile-time-verification
#8 まず、ベースの部分を作ってみました。 このPR後に、ジオメトリデータをバイナリ化したりしたものなど、各情報をSQLiteテーブルへ入れていく。 ## 変更 - [x] `nusamai-gpkg` クレートの新規作成 - [x] SQLxによる、空のGeoPackageファイル作成 - [x] example: CLIからのテスト実行
#89 を踏まえて、トップレベル都市オブジェクトをGeoPackageへ追加する部分を実装。 参考(Notion): [GeoPackage メモ](https://www.notion.so/GeoPackage-56b53cc7ee5f4270a7df151d84bfb290) (テーブルやバイナリの構造など) ## 大まかな流れ - `GpkgHandler::init` (`src/handler.rs`) - `sql/init.sql` で、GeoPackage用のテーブルを作成 - `sql/mpoly3d.sql` で、3Dマルチポリゴン用のテーブルを用意 - `GpkgHandler::add_object` - トップレベル都市オブジェクトを受け取り、DBへ追加 - ジオメトリのバイナリを作る部分は `src/geometry.rs` にある exampleの実行例: ``` $ cargo run --example gml2gpkg ~/plateau/13100_tokyo23-ku_2022_citygml_1_2_op/udx/bldg/53392546_bldg_6697_2_op.gml ``` ## このPRで対応しない想定のイシュー - #119 - #120 - #121 - #122 - #124 - #125
close #121 #89 , #129 での、Gpkg変換の初期実装をもとに、全体の流れに組み込む(sinkを作る)。 とりあえず書いてみたコード例のようなものなので、コメントいただきたいです。 ## 悩み SQLx(async)の取り扱い。とりあえず、Sinkの中でブロックしてやってみているが、こう言う方法でいいのか? --------- Co-authored-by: Taku Fukada <[email protected]>
#8
まず、ベースの部分を作ってみました。
このPR後に、ジオメトリデータをバイナリ化したりしたものなど、各情報をSQLiteテーブルへ入れていく。
変更
nusamai-gpkg
クレートの新規作成