-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from MIERUNE/feature/metadata
UI微調整,metadata/READMEの修正,アイコンの追加
- Loading branch information
Showing
7 changed files
with
91 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,30 @@ | ||
# qgis-csmap-plugin | ||
|
||
DEMからGeoTIFF形式のCS立体図を作成するQGISプラグインです。 | ||
DEMの変換にはcsmap-pyを利用しています。 | ||
It is a QGIS plugin that creates a GeoTIFF format CS topographic map from a DEM. | ||
The DEM conversion process is based on [csmap-py](https://github.com/MIERUNE/csmap-py). | ||
<img src='./imgs/icon.png' alt="CSMap Plugin Icon" width="10%"><br> | ||
_出典:基盤地図情報数値標高モデル(項目名=6441-42)を本プラグインで処理して作成_ | ||
|
||
![image](./imgs/howtouse.png) | ||
DEMをGeoTIFF形式のCS立体図に変換するQGISプラグインです。<br> | ||
DEMの変換処理は[ csmap-py ](https://github.com/MIERUNE/csmap-py)を利用しているため,最新版QGIS LTR(Windows / macOS)で動作します。<br> | ||
|
||
## インストール | ||
|
||
- 本プラグインは QGIS Python Plugin Repository で公開されているため,QGISの『プラグイン > プラグインの管理とインストール』から `CSMap Plugin` と検索してインストール可能です。 | ||
|
||
### Windowsをお使いの方へ | ||
- Windows版のQGISでは,プラグインの読み込みエラーが発生する場合があります。<br> | ||
- [csmap-py ](https://github.com/MIERUNE/csmap-py)によるDEMの変換処理は rasterio と numpy により実行されているので,Windows版のQGISでは rasterio を手動でインストールする必要があります。以下の手順でインストールしてください。<br> | ||
|
||
rasterio インストール手順: | ||
- Pythonコンソールを起動します。 | ||
- `!pip install rasterio` を実行します。赤文字で `WARNING` が表示されても,最下行に `Successfully installed ~` と表示されれば問題ありません。 | ||
- QGISを再起動して,もう一度Pythonコンソールを起動します。 | ||
- `import rasterio` を実行すると,本プラグインのアイコンが表示されます。 | ||
|
||
## 使用方法 | ||
|
||
- アイコンをクリックして,プラグインを起動します。 | ||
- 入力ファイル:DEM(GDALでサポートされている形式)を選択します。 | ||
- 出力ファイル:出力されるCS立体図の名前を指定します。 | ||
- `高度なオプション` 及び `処理終了後,自動でウィンドウを閉じる` の使用は任意です。 | ||
|
||
<img src='./imgs/usage.png' alt="Usage Example of CSMap Plugin" width="70%"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
[general] | ||
name=CSMap Plugin | ||
qgisMinimumVersion=3.0 | ||
about=Processing is based on csmap-py. | ||
description=Convert DEM to CSMap | ||
version=1.0 | ||
qgisMinimumVersion=3.32 | ||
about=最新版QGIS LTR(Windows / macOS)で動作します。 | ||
description=DEMをGeoTIFF形式のCS立体図に変換するQGISプラグインです。 | ||
version=0.0.1 | ||
|
||
#Plugin main icon | ||
icon=imgs/icon.png | ||
|
||
author=MIERUNE Inc. | ||
[email protected] | ||
homepage= | ||
tracker= | ||
repository= | ||
tags= | ||
homepage=https://github.com/MIERUNE/csmap-qgis-plugin | ||
tracker=https://github.com/MIERUNE/csmap-qgis-plugin/issues | ||
repository=https://github.com/MIERUNE/csmap-qgis-plugin | ||
tags=python, DEM, GeoTIFF | ||
category= |