You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+16-12
Original file line number
Diff line number
Diff line change
@@ -50,14 +50,10 @@ pip install eis_toolkit
50
50
conda install -c conda-forge eis_toolkit
51
51
```
52
52
53
-
You can find the latest release of EIS Toolkit also in the [releases page](https://github.com/GispoCoding/eis_toolkit/releases) of this GitHub repository as a Python wheel. Just download the wheel and install with pip
54
-
55
-
```console
56
-
pip install eis_toolkit-0.4.0-py3-none-any.whl
57
-
```
53
+
A Python wheel can be downloaded also from the [releases page](https://github.com/GispoCoding/eis_toolkit/releases) of this GitHub repository.
58
54
59
55
> [!TIP]
60
-
> GDAL needs to be installed separately on Windows when using pip / PyPI. If you have trouble installing EIS Toolkit in a venv due to GDAL, you can download a compatible GDAL wheel (for example from [this repository](https://github.com/cgohlke/geospatial-wheels/releases)), install it first, and then attempt to install EIS Toolkit again.
56
+
> GDAL needs to be installed separately on Windows when using pip / PyPI. If you have trouble installing EIS Toolkit due to GDAL, you can download a compatible GDAL wheel (for example from [this repository](https://github.com/cgohlke/geospatial-wheels/releases)), install it first, and then attempt to install EIS Toolkit again.
61
57
62
58
63
59
## Usage
@@ -71,7 +67,7 @@ from eis_toolkit.raster_processing.reprojecting import reproject_raster
71
67
from eis_toolkit.exploratory_analyses.pca import compute_pca
72
68
```
73
69
74
-
You can find several Jupyter notebooks in this repostiory that demonstrate how tools of EIS Toolkit can be used. The documentation of EIS Toolkit can be read [here](https://gispocoding.github.io/eis_toolkit/).
70
+
The documentation of EIS Toolkit can be read [here](https://gispocoding.github.io/eis_toolkit/). You can find several Jupyter notebooks in this repostiory that demonstrate how tools of EIS Toolkit can be used.
75
71
76
72
77
73
### EIS QGIS Plugin
@@ -80,23 +76,31 @@ For those that prefer using tools of EIS Toolkit via a graphical user interface,
80
76
The plugin is developed by the same core team that develops EIS Toolkit.
81
77
82
78
### CLI
83
-
EIS Toolkit includes a [Typer](https://typer.tiangolo.com/) command-line interface that serves as a common interface for integrating the toolkit with external applications, such as QGIS. However, it can be used directly too. To use the CLI, simply use the command
79
+
EIS Toolkit includes a [Typer](https://typer.tiangolo.com/) command-line interface that serves as a common interface for integrating the toolkit with external applications, such as QGIS. The CLI can be used directly too, for example
80
+
84
81
```console
85
-
eis
82
+
eis resample-raster-cli --input-raster path/to/raster.tif --output-raster path/to/output.tif --resolution 50 --resampling-method bilinear
86
83
```
87
84
88
-
or
85
+
For general help, use
89
86
90
87
```console
91
88
eis --help
92
89
```
93
90
94
-
to get started. However, please note that the CLI has been primarily designed to communicate with external programs and may feel clunky in direct use.
91
+
or help for a tool
92
+
93
+
```console
94
+
eis <tool-name> --help
95
+
```
96
+
97
+
> [!NOTE]
98
+
> Please note that the CLI has been primarily designed to communicate with external programs and may be clunky in direct use.
95
99
96
100
## Roadmap
97
101
98
102
- Milestone 1: **Beta release 0.1** (November 2023). The toolkit should have the basic funtionalities required for a full MPM workflow. Official testing phase begins. The plugin will be still under active development.
99
-
- Milestone 2: **Release 1.0** (April 2024). All features should be incorporated at this time and the toolkit useful for actual MPM work. Testing will continue, potential bugs will be fixed and the user experience refined.
103
+
- Milestone 2: **Release 1.0** (May 2024). Most features should be incorporated at this time and the toolkit useful for actual MPM work. Testing will continue, more advanced methods added and the user experience refined.
Copy file name to clipboardexpand all lines: pyproject.toml
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "eis_toolkit"
3
-
version = "0.5.2"
3
+
version = "1.0.0"
4
4
description = "EIS Toolkit is a comprehensive collection of tools suitable for mineral prospectivity mapping. This toolkit has been developed as part of the Exploration Information System project which has been funded by European Union."
0 commit comments