Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Point Cloud Extension #558

Merged
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,19 @@
- Migration for `sar:type` -> `sar:product_type` and `sar:polarization` ->
`sar:polarizations` for pre-0.9 catalogs
([#556](https://github.com/stac-utils/pystac/pull/556))
- Collection summaries for Point Cloud Extension ([#558](https://github.com/stac-utils/pystac/pull/558))
- `PhenomenologyType` enum for recommended values of `pc:type` & `SchemaType` enum for
valid values of `type` in [Point Cloud Schema
Objects](https://github.com/stac-extensions/pointcloud#schema-object)
([#548](https://github.com/stac-utils/pystac/pull/548))

### Removed

### Changed

- The `from_dict` method on STACObjects will set the object's root link when a `root` parameter is present. An ItemCollection `from_dict` with a root parameter will set the root on each of it's Items. ([#549](https://github.com/stac-utils/pystac/pull/549))
- `PointcloudSchema` -> `Schema`, `PointcloudStatistic` -> `Statistic` for consistency
with naming convention in other extensions ([#548](https://github.com/stac-utils/pystac/pull/548))

### Fixed

Expand Down
59 changes: 52 additions & 7 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -423,17 +423,62 @@ LabelExtension
Pointcloud Extension
--------------------

Implements the :stac-ext:`Point Cloud Extension <pointcloud>`.
These classes are representations of the :stac-ext:`Pointcloud Extension Spec
<pointcloud>`.

PointcloudItemExt
PhenomenologyType
~~~~~~~~~~~~~~~~~

**TEMPORARILY REMOVED**
.. autoclass:: pystac.extensions.pointcloud.PhenomenologyType
:members:
:undoc-members:
:show-inheritance:

.. .. autoclass:: pystac.extensions.pointcloud.PointcloudItemExt
.. :members:
.. :undoc-members:
.. :show-inheritance:
SchemaType
~~~~~~~~~~

.. autoclass:: pystac.extensions.pointcloud.SchemaType
:members:
:undoc-members:
:show-inheritance:

Schema
~~~~~~

.. autoclass:: pystac.extensions.pointcloud.Schema
:members:
:inherited-members:
:show-inheritance:

Statistic
~~~~~~~~~

.. autoclass:: pystac.extensions.pointcloud.Statistic
:members:
:inherited-members:
:show-inheritance:

PointcloudExtension
~~~~~~~~~~~~~~~~~~~

.. autoclass:: pystac.extensions.pointcloud.PointcloudExtension
:members:
:inherited-members:
:show-inheritance:

ItemPointcloudExtension
~~~~~~~~~~~~~~~~~~~~~~~

.. autoclass:: pystac.extensions.pointcloud.ItemPointcloudExtension
:members:
:show-inheritance:

AssetPointcloudExtension
~~~~~~~~~~~~~~~~~~~~~~~~

.. autoclass:: pystac.extensions.pointcloud.AssetPointcloudExtension
:members:
:show-inheritance:

Projection Extension
--------------------
Expand Down
Loading