File tree Expand file tree Collapse file tree 5 files changed +661
-110
lines changed Expand file tree Collapse file tree 5 files changed +661
-110
lines changed Original file line number Diff line number Diff line change 7
7
- ` ProjectionExtension.crs_string ` to provide a single string to describe the coordinate reference system (CRS).
8
8
Useful because projections can be defined by EPSG code, WKT, or projjson.
9
9
([ #548 ] ( https://github.com/stac-utils/pystac/pull/548 ) )
10
+ - SAR Extension summaries([ #556 ] ( https://github.com/stac-utils/pystac/pull/556 ) )
11
+ - Migration for ` sar:type ` -> ` sar:product_type ` and ` sar:polarization ` ->
12
+ ` sar:polarizations ` for pre-0.9 catalogs
13
+ ([ #556 ] ( https://github.com/stac-utils/pystac/pull/556 ) )
10
14
11
15
### Removed
12
16
Original file line number Diff line number Diff line change @@ -499,8 +499,63 @@ RasterExtension
499
499
:show-inheritance:
500
500
:inherited-members:
501
501
502
+ SAR Extension
503
+ -------------
504
+ These classes are representations of the :stac-ext: `SAR Extension Spec
505
+ <sar> `.
506
+
507
+ FrequencyBand
508
+ ~~~~~~~~~~~~~
509
+
510
+ .. autoclass :: pystac.extensions.sar.FrequencyBand
511
+ :members:
512
+ :undoc-members:
513
+ :show-inheritance:
514
+
515
+ Polarization
516
+ ~~~~~~~~~~~~
517
+
518
+ .. autoclass :: pystac.extensions.sar.Polarization
519
+ :members:
520
+ :undoc-members:
521
+ :show-inheritance:
522
+
523
+ ObservationDirection
524
+ ~~~~~~~~~~~~~~~~~~~~
525
+
526
+ .. autoclass :: pystac.extensions.sar.ObservationDirection
527
+ :members:
528
+ :undoc-members:
529
+ :show-inheritance:
530
+
531
+ SarExtension
532
+ ~~~~~~~~~~~~
533
+
534
+ .. autoclass :: pystac.extensions.sar.SarExtension
535
+ :members:
536
+ :show-inheritance:
537
+ :inherited-members:
538
+
539
+ ItemSarExtension
540
+ ~~~~~~~~~~~~~~~~
541
+
542
+ .. autoclass :: pystac.extensions.sar.ItemSarExtension
543
+ :members:
544
+ :show-inheritance:
545
+ :inherited-members:
546
+
547
+ AssetSarExtension
548
+ ~~~~~~~~~~~~~~~~~
549
+
550
+ .. autoclass :: pystac.extensions.sar.AssetSarExtension
551
+ :members:
552
+ :show-inheritance:
553
+ :inherited-members:
554
+
502
555
Satellite Extension
503
556
-------------------
557
+ These classes are representations of the :stac-ext: `Satellite Extension Spec
558
+ <sat> `.
504
559
505
560
OrbitState
506
561
~~~~~~~~~~
Original file line number Diff line number Diff line change @@ -283,8 +283,7 @@ class EOExtension(
283
283
:class:`~pystac.Item` or :class:`~pystac.Asset` with properties from the
284
284
:stac-ext:`Electro-Optical Extension <eo>`. This class is generic over the type of
285
285
STAC Object to be extended (e.g. :class:`~pystac.Item`,
286
- :class:`~pystac.
287
- Asset`).
286
+ :class:`~pystac.Asset`).
288
287
289
288
To create a concrete instance of :class:`EOExtension`, use the
290
289
:meth:`EOExtension.ext` method. For example:
You can’t perform that action at this time.
0 commit comments