Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docs/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@ The tuple follows the [Rasterio/`affine.Affine`](https://affine.readthedocs.io/e

Instead of constructing these manually, prefer helpers:

- AOI means area of interest.
- `extract_grid_params(obj)`: Match an `ee.Image` or `ee.ImageCollection` source grid.
- `fit_geometry(geometry, grid_crs, grid_scale=(x, y))`: Define pixel size (resolution) over an AOI.
- `fit_geometry(geometry, grid_crs, grid_scale=(x, y))`: Define pixel size (resolution) over an area of interest.
- `fit_geometry(geometry, grid_crs, grid_shape=(w, h))`: Define output array dimensions, letting resolution float.

### Y Scale Sign & Orientation
Expand Down
8 changes: 2 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,11 @@ conda install -c conda-forge xee

Before each stable release, Xee publishes one or more release candidates (e.g. `v0.1.1rc1`) to PyPI. If you want to test upcoming changes before the stable release:

```shell
pip install --upgrade --pre xee
```
`pip install --upgrade --pre xee`

Or pin a specific release candidate:

```shell
pip install xee==0.1.1rc1
```
`pip install xee==0.1.1rc1`

Prerelease builds are not published to Conda-Forge.
```
Expand Down