From 52e6474c33c93ca9bff205a60bc75e90a446013b Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Mon, 11 Mar 2024 16:24:48 +0100 Subject: [PATCH] Fix the docs and readme --- README.md | 3 +-- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8b23b96..3e6654d 100755 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ A library for modelling and processing 2.5D terrains using a (2D) Delaunay trian The triangulation is computed in 2D, but the *z*-elevation of the vertices are kept. The underlying code is written in [Rust](https://www.rust-lang.org/) (so it's rather fast) and [robust arithmetic](https://crates.io/crates/robust) is used (so it shouldn't crash). - startinpy uses the [startin Rust library](https://github.com/hugoledoux/startin) and adds several utilities and functions, for instance [NumPy](https://numpy.org/) support for input/output, exporting to several formats, and easy-of-use. startinpy allows you to: @@ -19,7 +18,7 @@ startinpy allows you to: 1. insert incrementally points 2. delete vertices (useful for simplification, interpolation, and other operations) 3. interpolate and create grids with several methods: TIN, natural neighbours, IDW, Laplace, etc. - 4. use other useful terrain Python libraries that are also NumPy-based, eg [laszy](https://laspy.readthedocs.io), [meshio](https://github.com/nschloe/meshio) + 4. use other useful terrain Python libraries that are also NumPy-based, eg [laspy](https://laspy.readthedocs.io), [meshio](https://github.com/nschloe/meshio) 5. outputs the TIN to several formats: OBJ, PLY, GeoJSON, and CityJSON 6. extra attributes (the ones from LAS/LAZ) can be stored with the vertices diff --git a/docs/index.md b/docs/index.md index 8d3e72f..01c18c5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -16,7 +16,7 @@ startinpy uses the [startin Rust library](https://github.com/hugoledoux/startin) 1. insert incrementally points 2. delete vertices (useful for simplification, interpolation, and other operations) 3. interpolate and create grids with several methods: TIN, natural neighbours, IDW, Laplace, etc. -4. use other useful terrain Python libraries that are also NumPy-based, eg [laszy](https://laspy.readthedocs.io), [meshio](https://github.com/nschloe/meshio) +4. use other useful terrain Python libraries that are also NumPy-based, eg [laspy](https://laspy.readthedocs.io), [meshio](https://github.com/nschloe/meshio) 5. outputs the TIN to several formats: OBJ, PLY, GeoJSON, and CityJSON 6. [extra attributes](attributes) (the ones from LAS/LAZ) can be stored with the vertices :::