@@ -35,13 +35,12 @@ using `scikit-build-core <https://scikit-build-core.readthedocs.io>`_ settings:
3535 --no-deps \
3636 --no-build-isolation
3737
38+
3839 GitHub
3940................................................................................
4041
4142The repository for PDAL's Python extension is available at https://github.com/PDAL/python
4243
43- Python support released independently from PDAL itself as of PDAL 1.7.
44-
4544Usage
4645--------------------------------------------------------------------------------
4746
@@ -91,7 +90,7 @@ Stage Objects
9190- A stage is an instance of ``pdal.Reader ``, ``pdal.Filter `` or ``pdal.Writer ``.
9291- A stage can be instantiated by passing as keyword arguments the options
9392 applicable to the respective PDAL stage. For more on PDAL stages and their
94- options, check the PDAL documentation on `Stage Objects <https://pdal.io /pipeline.html#stage-objects >`__.
93+ options, check the PDAL documentation on `Stage Objects <https://pdal.org /pipeline.html#stage-objects >`__.
9594
9695 - The ``filename `` option of ``Readers `` and ``Writers `` as well as the ``type ``
9796 option of ``Filters `` can be passed positionally as the first argument.
@@ -417,8 +416,8 @@ Method:
417416#. read point cloud file
418417#. remove noise
419418#. clean up invalid values
420- #. classify ground points using `SMRF <https://pdal.io /en/2.9.2 /stages/filters.smrf.html >`__
421- #. write with `GDAL writer <https://pdal.io/en/2.9.2 /stages/writers.gdal.html >`__
419+ #. classify ground points using `SMRF <https://pdal.org /en/latest /stages/filters.smrf.html >`__
420+ #. write with `GDAL writer <https://pdal.io/en/stable /stages/writers.gdal.html >`__
422421
423422.. note :: If your pointcloud already has ground classified, you can skip all but
424423 the reader and writer and achieve the same result.
@@ -479,11 +478,11 @@ Method:
479478
480479
481480 .. _`Numpy` : http://www.numpy.org/
482- .. _`schema` : http://www.pdal.io /dimensions.html
483- .. _`metadata` : http://www.pdal.io /development/metadata.html
481+ .. _`schema` : http://www.pdal.org /dimensions.html
482+ .. _`metadata` : http://www.pdal.org /development/metadata.html
484483.. _`TileDB` : https://tiledb.com/
485484.. _`TileDB-PDAL integration` : https://docs.tiledb.com/geospatial/pdal
486- .. _`TileDB writer plugin` : https://pdal.io /stages/writers.tiledb.html
485+ .. _`TileDB writer plugin` : https://pdal.org /stages/writers.tiledb.html
487486
488487.. image :: https://github.com/PDAL/python/workflows/Build/badge.svg
489488 :target: https://github.com/PDAL/python/actions?query=workflow%3ABuild
@@ -493,6 +492,6 @@ Requirements
493492
494493* PDAL 2.7+
495494* Python >=3.9
496- * Pybind11 (eg :code: `pip install pybind11[global] `)
497- * Numpy >= 1.22 (eg :code: `pip install numpy `)
498- * scikit-build-core (eg :code: `pip install scikit-build-core `)
495+ * Pybind11 >= 2.12 (eg :code: `pip install pybind11[global] `)
496+ * Numpy >= 1.24 at runtime and >= 2.0 for isolated builds (eg :code: `pip install numpy `)
497+ * scikit-build-core >= 1.0 (eg :code: `pip install scikit-build-core `)
0 commit comments