Skip to content

Commit 3cad08c

Browse files
authored
Update README.md
explanation for windows users about installation and wheels
1 parent 50118df commit 3cad08c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PlanetOverlap
1+
# planet_overlap
22
Find and organize satellite images for area/time of interest (tailored for Planet Labs Imagery)
33

44
**planet_overlap** is a scalable satellite imagery query engine for retrieving and filtering Planet Labs imagery (PSScene and SkySatScene) over large areas and long time periods.
@@ -54,6 +54,22 @@ Install locally:
5454
```bash
5555
pip install .
5656
```
57+
### Special consideration for Windows Users:
58+
59+
There may be a need for pre-compiled wheel files to be installed for several packages (GDAL, Fiona, Shapely, pyproj, and Rtree). Downloading GDAL first will avoid dependency errors. You will need to taylor these downloads for your specific python version and architecture (ie., Python 3.14 64-bit)
60+
```Powershell
61+
python -m pip install --index https://gisidx.github.io/gwi gdal fiona shapely pyproj rtree
62+
```
63+
Verify your installation:
64+
```Powershell
65+
python -c "import geopandas; import fiona; import shapely; import pyproj; import rtree; print('All dependencies installed!')"
66+
```
67+
Install GeoPandas after the wheels:
68+
```Powershell
69+
python -m pip install geopandas
70+
```
71+
**Rationale** This package uses GDAL and Fiona which arenon-python C/ C++ code libraries. Pip cannot automatically build GDALon Windows so it needs precompiled binary packages (wheels).
72+
5773
---
5874
## 🔑 Planet API Key
5975

0 commit comments

Comments
 (0)