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
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,27 @@
4
4
5
5
Xvec combines [Xarray](http://xarray.pydata.org) n-D arrays and [shapely 2](https://shapely.readthedocs.io/en/latest/) planar vector geometries to create a support for vector data cubes in Python. See [this post](https://r-spatial.org/r/2022/09/12/vdc.html) by Edzer Pebesma on an introduction of the concept or the introduction of their implementation in Xvec in our [documentation](https://xvec.readthedocs.io/en/latest/intro.html).
6
6
7
+
## Project status
8
+
9
+
The project is in the early stage of development and its API may still change.
10
+
7
11
## Installing
8
12
9
-
Xvec is not released yet and can be installed from GitHub.
13
+
You can install Xvec from PyPI using `pip` or from conda-forge using `mamba` or `conda`:
14
+
15
+
```sh
16
+
pip install xvec
17
+
```
18
+
19
+
Or (recommended):
20
+
21
+
```sh
22
+
mamba install xvec -c conda-forge
23
+
```
24
+
25
+
### Development version
26
+
27
+
The development version can be installed from GitHub.
0 commit comments