Skip to content

Commit cf4b6bf

Browse files
committed
Link to the new extension location at https://github.com/stac-extensions
1 parent b75f32e commit cf4b6bf

File tree

12 files changed

+36
-4
lines changed

12 files changed

+36
-4
lines changed

pystac/extensions/eo.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
"""Implement the Electro-Optical (EO) extension.
2+
3+
https://github.com/stac-extensions/eo
4+
"""
5+
16
from pystac import Extensions
27
from pystac.item import Item
38
from pystac.extensions.base import (ItemExtension, ExtensionDefinition, ExtendedObject)

pystac/extensions/file.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
"""Implement the Label extension.
2+
3+
https://github.com/stac-extensions/file
4+
5+
"""
16
import enum
27

38
from pystac import Extensions

pystac/extensions/label.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
"""STAC Model classes for Label extension.
2+
3+
https://github.com/stac-extensions/label
24
"""
35
from enum import Enum
46

pystac/extensions/pointcloud.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Implement the Point Cloud extension.
2+
3+
https://github.com/stac-extensions/pointcloud
4+
"""
15
from pystac import Extensions, STACError
26
from pystac.item import Item
37
from pystac.extensions.base import (ItemExtension, ExtensionDefinition, ExtendedObject)

pystac/extensions/projection.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Implement the projection extension.
2+
3+
https://github.com/stac-extensions/projection
4+
"""
15
from pystac import Extensions
26
from pystac.item import Item
37
from pystac.extensions.base import (ItemExtension, ExtensionDefinition, ExtendedObject)

pystac/extensions/sar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Implement the STAC Synthetic-Aperture Radar (SAR) Extension.
22
3-
https://github.com/radiantearth/stac-spec/tree/dev/extensions/sar
3+
https://github.com/stac-extensions/sar
44
"""
55

66
import enum

pystac/extensions/sat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Implement the Satellite (SAT) Extension.
22
3-
https://github.com/radiantearth/stac-spec/tree/dev/extensions/sat
3+
https://github.com/stac-extensions/sat
44
"""
55

66
import enum

pystac/extensions/scientific.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Implement the scientific extension.
22
3-
https://github.com/radiantearth/stac-spec/tree/dev/extensions/scientific
3+
https://github.com/stac-extensions/scientific
44
55
For a description of Digital Object Identifiers (DOIs), see the DOI Handbook:
66

pystac/extensions/single_file_stac.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Implement the Single File STAC extension.
2+
3+
https://github.com/stac-extensions/single-file-stac
4+
"""
15
from pystac.catalog import Catalog
26

37
import pystac

pystac/extensions/timestamps.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
"""Implement the timestamps extension.
2+
3+
https://github.com/stac-extensions/timestamps
4+
"""
15
import pystac
26
from pystac import Extensions
37
from pystac.extensions.base import (ExtendedObject, ExtensionDefinition, ItemExtension)

0 commit comments

Comments
 (0)