Skip to content

Commit

Permalink
Bump to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscorn committed Sep 11, 2023
1 parent f65064e commit 004d5a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions japanese_grids/algorithms/utils/generator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Iterator, Optional, Tuple

AVAILABLE_PRIMARY_CODE = frozenset(
AVAILABLE_PRIMARY_CODES = frozenset(
[
"3036",
"3622",
Expand Down Expand Up @@ -202,7 +202,7 @@ def iter_primary_mesh_patch(
for x in range(22, 53 + 1):
lng0 = x + 100
code = f"{y:02d}{x:02d}"
if code in AVAILABLE_PRIMARY_CODE:
if code in AVAILABLE_PRIMARY_CODES:
bbox = (lng0, lat0, lng0 + 1, lat1)
if extent is None or (_intersect(bbox, extent)):
yield (code, bbox)
Expand Down
4 changes: 2 additions & 2 deletions japanese_grids/metadata.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[general]
name=Japanese Grid Mesh
version=0.0.1
version=0.0.2
qgisMinimumVersion=3.6
description=Create grid squares used in Japan. 日本で使われている「地域メッシュ」を作成します。
description=Create grid squares used in Japan. 日本で使われている「地域メッシュ」を作成します。プロセッシングツールボックスから利用できます。
author=MIERUNE Inc.
[email protected]

Expand Down

0 comments on commit 004d5a5

Please sign in to comment.