{"id":25723517,"url":"https://github.com/cs-si/eodag-cube","last_synced_at":"2025-05-07T02:30:08.570Z","repository":{"id":45366018,"uuid":"322671215","full_name":"CS-SI/eodag-cube","owner":"CS-SI","description":"Data access for EODAG","archived":false,"fork":false,"pushed_at":"2025-02-07T14:45:46.000Z","size":6625,"stargazers_count":12,"open_issues_count":3,"forks_count":1,"subscribers_count":6,"default_branch":"develop","last_synced_at":"2025-05-07T02:29:40.578Z","etag":null,"topics":["catalog","datacube","downloader","eodag","lib","remote-sensing","search","spatial-imagery"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CS-SI.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-18T18:12:50.000Z","updated_at":"2025-02-07T14:45:49.000Z","dependencies_parsed_at":"2022-09-26T16:21:25.759Z","dependency_job_id":"c256ba56-8adb-4450-bbdb-0458b7eca403","html_url":"https://github.com/CS-SI/eodag-cube","commit_stats":{"total_commits":34,"total_committers":2,"mean_commits":17.0,"dds":0.02941176470588236,"last_synced_commit":"b13342a7737b99777e8f52f1f036cbb0ce2afdae"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CS-SI%2Feodag-cube","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CS-SI%2Feodag-cube/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CS-SI%2Feodag-cube/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CS-SI%2Feodag-cube/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CS-SI","download_url":"https://codeload.github.com/CS-SI/eodag-cube/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252801260,"owners_count":21806283,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["catalog","datacube","downloader","eodag","lib","remote-sensing","search","spatial-imagery"],"created_at":"2025-02-25T20:36:56.866Z","updated_at":"2025-05-07T02:30:08.526Z","avatar_url":"https://github.com/CS-SI.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://badge.fury.io/py/eodag-cube.svg\n    :target: https://badge.fury.io/py/eodag-cube\n\n.. image:: https://img.shields.io/pypi/l/eodag-cube.svg\n    :target: https://pypi.org/project/eodag-cube/\n\n.. image:: https://img.shields.io/pypi/pyversions/eodag-cube.svg\n    :target: https://pypi.org/project/eodag-cube/\n\n.. image:: https://mybinder.org/badge_logo.svg\n    :target: https://mybinder.org/v2/git/https%3A%2F%2Fgithub.com%2FCS-SI%2Feodag-cube.git/package-data?filepath=docs%2Fnotebooks%2Fclip-reproject.ipynb\n\nEODAG-cube\n==========\n\nThis project is the data-access part of `EODAG \u003chttps://github.com/CS-SI/eodag\u003e`_\n\n.. image:: https://eodag.readthedocs.io/en/latest/_static/eodag_bycs.png\n    :target: https://github.com/CS-SI/eodag\n\n|\n\n\nInstallation\n============\n\nEODAG-cube is on `PyPI \u003chttps://pypi.org/project/eodag-cube/\u003e`_::\n\n    python -m pip install eodag-cube\n\nDocumentation\n=============\n\nDocumentation is available through `EODAG API User Guide / Data access with eodag-cube \u003chttps://eodag.readthedocs.io/en/latest/notebooks/api_user_guide/9_post_process.html#Data-access-with-eodag-cube\u003e`_.\n\nSee also:\n\n* `Python API Reference / EOProduct - pixel access \u003chttps://eodag.readthedocs.io/en/latest/api_reference/eoproduct.html#pixel-access\u003e`_\n* `Python API Reference / Assets - pixel access \u003chttps://eodag.readthedocs.io/en/latest/api_reference/assets.html#pixel-access\u003e`_\n* `Python API Reference / utils - xarray \u003chttps://eodag.readthedocs.io/en/latest/api_reference/utils.html#xarray\u003e`_\n\nUsage - Python API\n==================\n\nExample usage for interacting with the api in your Python code:\n\n.. code-block:: python\n\n    from eodag import EODataAccessGateway\n    from rasterio.crs import CRS\n\n    dag = EODataAccessGateway()\n    search_criteria = dict(\n        provider='earth_search',\n        productType='S2_MSI_L1C',\n        geom=[1, 43.5, 2, 44],\n        start='2020-06-04',\n        end='2020-06-05',\n    )\n    search_results = dag.search(**search_criteria)\n    product = search_results[0]\n    product\n\n.. image:: docs/_static/eoproduct.png?raw=true\n   :alt: EOProduct\n\nWhole product as ``XarrayDict``:\n\n.. code-block:: python\n\n    product.to_xarray()\n\n.. image:: docs/_static/xarray_dict.png?raw=true\n   :alt: XarrayDict\n\nSingle asset as ``xarray.Dataset``:\n\n.. code-block:: python\n\n    product.assets[\"blue\"].to_xarray()\n\n.. image:: docs/_static/dataset.png?raw=true\n   :alt: Dataset\n\n``fsspec.core.OpenFile`` file object:\n\n.. code-block:: python\n\n    product.assets[\"blue\"].get_file_obj()\n\n``\u003cFile-like object S3FileSystem, sentinel-s2-l1c/tiles/31/T/DJ/2020/6/4/0/B02.jp2\u003e``\n\nContribute\n==========\n\nIf you intend to contribute to eodag-cube source code::\n\n    git clone https://github.com/CS-SI/eodag-cube.git\n    cd eodag-cube\n    python -m pip install -e .[dev]\n    pre-commit install\n    tox\n\nLICENSE\n=======\n\nEODAG is licensed under Apache License v2.0.\nSee LICENSE file for details.\n\n\nAUTHORS\n=======\n\nEODAG is developed by `CS GROUP - France \u003chttps://www.c-s.fr\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcs-si%2Feodag-cube","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcs-si%2Feodag-cube","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcs-si%2Feodag-cube/lists"}