File: index.rst

package info (click to toggle)
pystac 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 19,904 kB
  • sloc: python: 24,370; makefile: 124; sh: 7
file content (57 lines) | stat: -rw-r--r-- 2,116 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
PySTAC Documentation
####################

PySTAC is a library for working with `SpatioTemporal Asset Catalogs (STAC)
<https://stacspec.org/>`_ in `Python 3 <https://www.python.org/>`_. Some nice features
of PySTAC are:

* Reading and writing STAC version 1.0. Future versions will read older versions of
  STAC, but always write the latest supported version. See :ref:`stac_version_support`
  for details.
* In-memory manipulations of STAC catalogs.
* Extend the I/O of STAC metadata to provide support for other platforms (e.g. cloud
  providers).
* Easy, efficient crawling of STAC catalogs. STAC objects are only read in when needed.
* Easily write "absolute published", "relative published" and "self-contained" catalogs
  as :stac-spec:`described in the best practices documentation
  <best-practices.md#use-of-links>`.

.. grid:: 1 2 2 2
   :gutter: 2

   .. grid-item-card:: Get Started

       * :doc:`installation`: Instructions for installing the basic package as well as
         extras.
       * :doc:`quickstart`: Jupyter notebook tutorial on using PySTAC for reading &
         writing STAC catalogs.

   .. grid-item-card:: Go Deeper

       * :doc:`concepts`: Overview of how various concepts and structures from the STAC
         Specification are implemented within PySTAC.
       * :doc:`tutorials`: In-depth tutorials on using PySTAC for a number of different
         applications.
       * :doc:`api`: Detailed API documentation of PySTAC classes, methods, and functions.

Related Projects
================

* `pystac-client <https://github.com/stac-utils/pystac-client>`__: A Python client for
  working with STAC Catalogs and APIs.
* `stactools <https://github.com/stac-utils/stactools>`__: A command line tool and
  library for working with STAC.
* `sat-stac <https://github.com/sat-utils/sat-stac>`__: A Python 3 library for reading
  and working with existing Spatio-Temporal Asset Catalogs (STAC). *Much of PySTAC
  builds on the code and concepts of* ``sat-stac``.

.. toctree::
   :maxdepth: 2
   :hidden:

   installation
   quickstart
   concepts
   api
   tutorials
   contributing