Skip to content

Commit

Permalink
Merge branch 'feature/legacy-grid'
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscorn committed Sep 11, 2023
2 parents 8ce2194 + 25fae47 commit 4b3dbfb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

[![Test](https://github.com/MIERUNE/qgis-japan-mesh/actions/workflows/test.yml/badge.svg)](https://github.com/MIERUNE/qgis-japan-mesh/actions/workflows/test.yml)

A QGIS Plugin to generate and handle Japanese Grid Squares -- 日本の地域メッシュを QGIS で扱うためのプラグイン(現状はメッシュの生成機能のみ
A QGIS Plugin to generate and handle Japanese Grid Squares — 日本で使われている「標準地域メッシュ」と「国土基本図図郭」を QGIS で扱うためのプラグイン(現状はメッシュ生成用プロセッシングアルゴリズムのみ

## License

License: GPL v2

## 開発
## Development

QGIS にデプロイする:

Expand Down
4 changes: 2 additions & 2 deletions japanese_grids/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name=Japanese Grid Mesh
version=0.0.3
qgisMinimumVersion=3.6
description=Create grid squares used in Japan. 日本で使われている「地域メッシュ」を作成します。プロセッシングツールボックスから利用できます。
description=Create common grid squares used in Japan. 日本で使われている「標準地域メッシュ」および「国土基本図図郭」を作成します。プロセッシングツールボックスから利用できます。
author=MIERUNE Inc.
[email protected]

about=Create grid squares used in Japan. Currently, only the "Grid Square Code" (JIS X 0410) is supported.
about=Create grid squares used in Japan. It supports the "Grid Square Code" (JIS X 0410) and "Kokudo Kihonzu Zukaku".

repository=https://github.com/MIERUNE/qgis-japan-mesh
tracker=https://github.com/MIERUNE/qgis-japan-mesh/issues
Expand Down
4 changes: 2 additions & 2 deletions tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

def test_registered(qgis_app: QgsApplication, provider: str):
registory = QgsApplication.processingRegistry()
provider = registory.providerById("japanese_grids")
provider = registory.providerById("japanesegrid")
assert provider is not None
assert len(provider.name()) > 0
assert isinstance(provider.icon(), QIcon)

alg = registory.algorithmById("japanese_grids:create_grid_square")
alg = registory.algorithmById("japanesegrid:creategridsquare")
assert alg is not None
assert alg.group() is None
assert alg.groupId() is None
Expand Down

0 comments on commit 4b3dbfb

Please sign in to comment.