Project Icon

eodag

统一的地球观测数据访问工具

EODAG是一个开源的地球观测数据访问工具,提供统一的API来搜索、聚合和下载遥感图像。它采用模块化插件架构,支持多种数据提供商,可扩展性强。EODAG可作为STAC客户端或服务器运行,支持Python API、REST API和命令行界面,为用户提供灵活的使用方式。

.. image:: https://eodag.readthedocs.io/en/latest/_static/eodag_bycs.png :target: https://github.com/CS-SI/eodag

|

.. |pypi-badge| image:: https://badge.fury.io/py/eodag.svg :target: https://badge.fury.io/py/eodag

.. |conda-badge| image:: https://img.shields.io/conda/vn/conda-forge/eodag :target: https://anaconda.org/conda-forge/eodag

.. |rtd-badge| image:: https://readthedocs.org/projects/eodag/badge/?version=latest&style=flat :target: https://eodag.readthedocs.io/en/latest/

.. |gha-badge| image:: https://github.com/CS-SI/eodag/actions/workflows/test.yml/badge.svg :target: https://github.com/CS-SI/eodag/actions

.. |ghi-badge| image:: https://img.shields.io/github/issues/CS-SI/eodag.svg :target: https://github.com/CS-SI/eodag/issues

.. |binder-badge| image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/git/https%3A%2F%2Fgithub.com%2FCS-SI%2Feodag.git/master?filepath=docs%2Fnotebooks%2Fintro_notebooks.ipynb

|pypi-badge| |conda-badge| |rtd-badge| |gha-badge| |ghi-badge| |binder-badge|

.. |license-badge| image:: https://img.shields.io/pypi/l/eodag.svg :target: https://pypi.org/project/eodag/

.. |versions-badge| image:: https://img.shields.io/pypi/pyversions/eodag.svg :target: https://pypi.org/project/eodag/

|license-badge| |versions-badge|

|

请查看 EODAG Jupyterlab 扩展: eodag-labextension <https://github.com/CS-SI/eodag-labextension>_! 它为您的笔记本提供了友好的用户界面,帮助您使用 eodag 搜索和浏览地球观测产品。

EODAG(地球观测数据访问网关)是一个命令行工具和面向插件的Python框架,用于搜索、聚合结果和下载遥感图像,同时为数据访问提供统一的API,而不受数据提供商的限制。EODAG SDK围绕三个功能构建:

  • 列出产品类型:支持的产品列表及其描述

  • 搜索产品(按产品类型或uid):根据提供的搜索条件搜索产品

  • 下载产品:"原样"下载产品

EODAG 用 Python 开发。它根据模块化插件架构构建,易于扩展并能够集成新的数据提供商。该工具由三种类型的插件组成:

  • 目录搜索插件,负责搜索数据(OpenSearch、CSW 等)、构建路径、检索快速查看、组合结果

  • 下载插件,允许下载数据并将其本地检索(通过 FTP、HTTP 等),始终使用相同的目录组织

  • 身份验证插件,用于在使用的外部服务上对用户进行身份验证(JSON Token、Basic Auth、OAuth 等)。

从 v2.0 开始,EODAG 可以作为 STAC 客户端或服务器 <https://eodag.readthedocs.io/en/latest/stac.html>_ 运行。

阅读 文档 <https://eodag.readthedocs.io/en/latest/>_ 以获取更多见解。

.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/eodag_overview.png :alt: EODAG 概览 :class: no-scaled-link

安装

EODAG 可在 PyPI <https://pypi.org/project/eodag/>_ 上获得:

.. code-block:: bash

python -m pip install eodag

也可以通过 condaconda-forge 频道 <https://anaconda.org/conda-forge/eodag>_ 安装:

.. code-block:: bash

conda install -c conda-forge eodag

[!重要]

v3.0.0 中的重大变更: 请注意,EODAG 带有最小依赖集。如果您想要更多功能,请使用 可用的额外选项 <https://eodag.readthedocs.io/en/latest/getting_started_guide/install.html#optional-dependencies>_ 进行安装。

用法

要下载,您需要在 eodag 用户配置文件 <https://eodag.readthedocs.io/en/latest/getting_started_guide/configure.html>_ 中填写所需提供商的凭据。 该文件将在首次运行时自动创建,其中包含空值。

Python API

在 Python 代码中与 API 交互的示例用法:

.. code-block:: python

from eodag import EODataAccessGateway

dag = EODataAccessGateway()

search_results = dag.search(
    productType='S2_MSI_L1C',
    geom={'lonmin': 1, 'latmin': 43.5, 'lonmax': 2, 'latmax': 44}, # 接受 WKT 多边形、shapely.geometry 等
    start='2021-01-01',
    end='2021-01-15'
)

product_paths = dag.download_all(search_results)

这将在默认提供商上搜索 Sentinel 2 level-1C 产品,并返回找到的产品的第一页以及 估计的符合搜索条件的产品总数。然后它将下载这些产品。请 查看 Python API 用户指南 <https://eodag.readthedocs.io/en/latest/api_user_guide.html>_ 以获取更多详细信息。

[!重要]

v3.0.0 中的重大变更: search() <https://eodag.readthedocs.io/en/latest/api_reference/core.html#eodag.api.core.EODataAccessGateway.search>_ 方法现在只返回 单个 SearchResult,而不是包含 2 个值的元组。

STAC REST API

可以通过命令行将 eodag 实例作为符合 STAC 的 REST API 公开(需要 eodag[server]):

.. code-block:: bash

$ eodag serve-rest --help
用法: eodag serve-rest [选项]

  启动 eodag HTTP 服务器

  设置 EODAG_CORS_ALLOWED_ORIGINS 环境变量以配置跨源资源共享允许的源,
  作为逗号分隔的 URL(例如 'http://somewhere,htttp://somewhere.else')。

选项:
  -f, --config PATH   用户配置文件的文件路径,其中包含凭据,
                      默认为 ~/.config/eodag/eodag.yml
  -l, --locs PATH     位置 shapefile 配置文件的文件路径
  -d, --daemon        以守护进程模式运行
  -w, --world         使用 IPv4 0.0.0.0(所有网络接口)运行 uvicorn,
                      否则绑定到 127.0.0.1(localhost)。
  -p, --port INTEGER  要监听的端口  [默认: 5000]
  --debug             以调试模式运行(用于开发目的)
  --help              显示此消息并退出。

# 运行服务器
$ eodag serve-rest

# 列出 ``peps`` 提供商的可用产品类型:
$ curl "http://127.0.0.1:5000/collections?provider=peps" | jq ".collections[].id"
"S1_SAR_GRD"
"S1_SAR_OCN"
"S1_SAR_SLC"
"S2_MSI_L1C"
"S2_MSI_L2A"

# 搜索项目
$ curl "http://127.0.0.1:5000/search?collections=S2_MSI_L1C&bbox=0,43,1,44&datetime=2018-01-20/2018-01-25" \
| jq ".numberMatched"
6

# 浏览项目
$ curl "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items" \
| jq ".numberMatched"
9

# 获取下载链接
$ curl "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items" \
| jq ".features[0].assets.downloadLink.href"
"http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items/S2A_MSIL1C_20210125T105331_N0209_R051_T31UCR_20210125T130733/download"

# 下载
$ wget "http://127.0.0.1:5000/catalogs/S2_MSI_L1C/country/FRA/year/2021/month/01/day/25/cloud_cover/10/items/S2A_MSIL1C_20210125T105331_N0209_R051_T31UCR_20210125T130733/download"

eodag-server 可在 https://hub.docker.com/r/csspace/eodag-server <https://hub.docker.com/r/csspace/eodag-server>_ 上获得:

.. code-block:: bash docker run -p 5000:5000 --rm csspace/eodag-server:3.0.0b3

你还可以使用 STAC Browser <https://github.com/radiantearth/stac-browser>_ 浏览你的STAC API服务器。 只需运行:

.. code-block:: bash

git clone https://github.com/CS-SI/eodag.git
cd eodag
docker-compose up
# 或者使用更详细的日志记录:
EODAG_LOGGING=3 docker-compose up

然后在浏览器中访问 http://127.0.0.1:5001:

.. image:: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/stac_browser_example_600.png :target: https://raw.githubusercontent.com/CS-SI/eodag/develop/docs/_static/stac_browser_example.png :alt: STAC browser 示例 :width: 600px

更多信息,请参阅 STAC REST API 使用说明 <https://eodag.readthedocs.io/en/latest/stac_rest.html>_。

命令行界面

开始使用命令行界面:

  • 搜索产品::

    eodag search --productType S2_MSI_L1C --box 1 43 2 44 --start 2021-03-01 --end 2021-03-31

    上述请求在给定的边界框内搜索2021年3月的 S2_MSI_L1C 产品类型。它将结果保存在GeoJSON文件中(默认为 search_results.geojson)。

    结果是分页的,你可以使用 --all 一次性获取所有页面,或者使用 --cloudCover 20 搜索云覆盖率不超过20%的产品。更多可用选项信息,请运行::

    eodag search --help

  • 下载上次搜索结果::

    eodag download --search-results search_results.geojson

  • 仅下载上次搜索结果的快速预览图::

    eodag download --quicklooks --search-results search_results.geojson

  • 列出所有可用的产品类型和支持的提供商::

    eodag list

  • 列出指定提供商支持的可用产品类型::

    eodag list -p creodias

  • 查看所有可用选项和命令::

    eodag --help

  • 打印日志信息,在eodag主命令后添加 -v。例如 eodag -v list。添加的 v 越多(最多3个),工具输出的信息越详细。要获得完整的详细输出,可以执行:eodag -vvv list

贡献

你是否在我们的文档中发现了拼写错误?在运行EODAG时观察到了bug? 你是否有新功能的建议?

不要犹豫,请开启一个issue或提交一个pull request,我们非常欢迎各种贡献!

关于如何设置开发环境以及如何为eodag做出贡献的指导,请参阅 贡献指南_。

.. _贡献指南: https://github.com/CS-SI/eodag/blob/develop/CONTRIBUTING.rst

许可证

EODAG 使用 Apache License v2.0 许可。 详情请参阅 LICENSE 文件。

作者

EODAG 由 CS GROUP - France <https://www.csgroup.eu/>_ 创建。

致谢

EODAG 建立在一些非常有用的开源项目之上。有关这些项目及其许可证的详细信息,请参阅 NOTICE 文件。 感谢所有这些项目的作者!

项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号