Skip to content

Commit

Permalink
Merge pull request #320 from schwehr/extension-docs
Browse files Browse the repository at this point in the history
Link to the new extension location at https://github.com/stac-extensions
  • Loading branch information
lossyrob authored May 5, 2021
2 parents b75f32e + cf4b6bf commit b005962
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 4 deletions.
5 changes: 5 additions & 0 deletions pystac/extensions/eo.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""Implement the Electro-Optical (EO) extension.
https://github.com/stac-extensions/eo
"""

from pystac import Extensions
from pystac.item import Item
from pystac.extensions.base import (ItemExtension, ExtensionDefinition, ExtendedObject)
Expand Down
5 changes: 5 additions & 0 deletions pystac/extensions/file.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""Implement the Label extension.
https://github.com/stac-extensions/file
"""
import enum

from pystac import Extensions
Expand Down
2 changes: 2 additions & 0 deletions pystac/extensions/label.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"""STAC Model classes for Label extension.
https://github.com/stac-extensions/label
"""
from enum import Enum

Expand Down
4 changes: 4 additions & 0 deletions pystac/extensions/pointcloud.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Implement the Point Cloud extension.
https://github.com/stac-extensions/pointcloud
"""
from pystac import Extensions, STACError
from pystac.item import Item
from pystac.extensions.base import (ItemExtension, ExtensionDefinition, ExtendedObject)
Expand Down
4 changes: 4 additions & 0 deletions pystac/extensions/projection.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Implement the projection extension.
https://github.com/stac-extensions/projection
"""
from pystac import Extensions
from pystac.item import Item
from pystac.extensions.base import (ItemExtension, ExtensionDefinition, ExtendedObject)
Expand Down
2 changes: 1 addition & 1 deletion pystac/extensions/sar.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Implement the STAC Synthetic-Aperture Radar (SAR) Extension.
https://github.com/radiantearth/stac-spec/tree/dev/extensions/sar
https://github.com/stac-extensions/sar
"""

import enum
Expand Down
2 changes: 1 addition & 1 deletion pystac/extensions/sat.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Implement the Satellite (SAT) Extension.
https://github.com/radiantearth/stac-spec/tree/dev/extensions/sat
https://github.com/stac-extensions/sat
"""

import enum
Expand Down
2 changes: 1 addition & 1 deletion pystac/extensions/scientific.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Implement the scientific extension.
https://github.com/radiantearth/stac-spec/tree/dev/extensions/scientific
https://github.com/stac-extensions/scientific
For a description of Digital Object Identifiers (DOIs), see the DOI Handbook:
Expand Down
4 changes: 4 additions & 0 deletions pystac/extensions/single_file_stac.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Implement the Single File STAC extension.
https://github.com/stac-extensions/single-file-stac
"""
from pystac.catalog import Catalog

import pystac
Expand Down
4 changes: 4 additions & 0 deletions pystac/extensions/timestamps.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Implement the timestamps extension.
https://github.com/stac-extensions/timestamps
"""
import pystac
from pystac import Extensions
from pystac.extensions.base import (ExtendedObject, ExtensionDefinition, ItemExtension)
Expand Down
2 changes: 1 addition & 1 deletion pystac/extensions/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Implement the version extension.
https://github.com/radiantearth/stac-spec/tree/dev/extensions/version
https://github.com/stac-extensions/version
Note that the version/schema.json does not know about the links.
"""
Expand Down
4 changes: 4 additions & 0 deletions pystac/extensions/view.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
"""Implement the View Geometry extension.
https://github.com/stac-extensions/view
"""
import pystac
from pystac import Extensions
from pystac.item import Item
Expand Down

0 comments on commit b005962

Please sign in to comment.