Skip to content

Commit

Permalink
Merge pull request #17 from MIERUNE/feature/yobimei
Browse files Browse the repository at this point in the history
"予備名" フィールドに対応する
  • Loading branch information
ciscorn authored Sep 1, 2023
2 parents 96b99af + 4e05ceb commit 15faaf1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mojxml"
version = "0.3.0"
version = "0.4.0"
description = 'A tool for fast conversion of Japanese "MOJ Map XML" (land registration polygons) into geospatial formats.'
authors = ["MIERUNE Inc. <[email protected]>"]
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions src/mojxml/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def _parse_features(
"大字名": None,
"丁目名": None,
"小字名": None,
"予備名": None,
"地番": None,
"座標値種別": None,
"筆界未定構成筆": None,
Expand Down
1 change: 1 addition & 0 deletions src/mojxml/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class _SchemaType(TypedDict):
("大字名", "str"),
("丁目名", "str"),
("小字名", "str"),
("予備名", "str"),
("地番", "str"),
("筆界未定構成筆", "str"),
("精度区分", "str"),
Expand Down

0 comments on commit 15faaf1

Please sign in to comment.