Skip to content

tutorial typo fix #1992

@pdavid-cssopra

Description

@pdavid-cssopra

Tuto typo fix

docs/getting_started_guide/features_overview.ipynb

  • in the user configuration file ~/.config/eodag.eodag.yml:

mistake on path: ~/.config/eodag/eodag.yml

docs/notebooks/tutos/tuto_meteoblue.ipynb

tomorrow = (datetime.date.today() + datetime.timedelta(days=1)).isoformat()

Unaware datetime
Use: today = datetime.datetime.now(datetime.timezone.utc).date()

docs/notebooks/tutos/tuto_stac_client.ipynb

prods_S2L1C = dag.search(
    collection="sentinel-2-l1c", 
    locations=dict(country="ROU"), 
    start="2020-05-01", 
    end="2020-05-15", 
    items_per_page=10, 
    count=True
)

Requested: add provider="uvt"
/!\ after re-check, seems not necessary

docs/notebooks/tutos/tuto_wekeo.ipynb

prods_S2L1C = dag.search(collection="sentinel-2-l1c", locations=dict(country="ROU"), start="2020-05-01", end="2020-05-15", items_per_page=10, count=True)

products = EodagTest.dag.search(
    collection="CAMS_GFE_GFAS", 
    start="2018-01-01", 
    end="2018-01-02",
    geom=[0.25, 43.2, 2.8, 43.9],
    provider="wekeo_ecmwf",
    **{
        'ecmwf:variable': 'wildfire_flux_of_total_carbon_in_aerosols',
        'ecmwf:data_format': 'grib',
    }
)

eodag.utils.exceptions.ValidationError: 1 error(s). ecmwf:variable: Input should be a valid list

Use: 'ecmwf:variable': ['wildfire_flux_of_total_carbon_in_aerosols'],

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions