Thanks to visit codestin.com
Credit goes to github.com

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 doc/source/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GeoUtils is a Python package for **accessible** and **consistent** geospatial an

```{important}
:class: margin
GeoUtils ``v0.2`` is released with more consistent point cloud support! We are working Xarray and GeoPandas accessors for our data objects.
GeoUtils ``v0.2`` is released with more consistent point cloud support! We are working on Xarray and GeoPandas accessors for all data objects, as well as other scalability features.
```

GeoUtils is built on top of core geospatial packages (Rasterio, GeoPandas, PyProj) and numerical packages
Expand Down Expand Up @@ -137,7 +137,6 @@ release_notes
:maxdepth: 2

credits
license
```

# Indices and tables
Expand Down
2 changes: 1 addition & 1 deletion doc/source/pointcloud_class.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ geoparquet) usually used for **sparse point clouds**, and from point-cloud-type
used for **dense point clouds**.

```{warning}
Support for LAS files is still preliminary and loads all data in memory for most operations. We are working on adding support for implicit chunked reading.
Support for LAS files is still preliminary and loads all data in memory for most operations. We are working on adding operations with chunked reading.
```

Below, a summary of the {class}`~geoutils.PointCloud` object and its methods.
Expand Down
8 changes: 7 additions & 1 deletion doc/source/stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ kernelspec:
GeoUtils supports statistical analysis tailored to geospatial objects.

For a {class}`~geoutils.Raster` or a {class}`~geoutils.PointCloud`, the statistics are naturally performed on the {attr}`~geoutils.Raster.data` attribute
which is clearly defined. For a {class}`~geoutils.Vector`, statistics have to be performed on a specific column.
which is clearly defined.

[//]: # (For a {class}`~geoutils.Vector`, statistics have to be performed on a specific column.)

```{warning}
The API for statistical features is preliminary and might change with the release of zonal and grouped statistics.
```

## Estimators

Expand Down
Loading