Open data mit Open source - Prozessierung von Copernicus Daten mit freier (Kommandozeilen-) Software

Sentinel-2 Szenen automatisiert herunterladen

sentinelsat

Was ist sentinelsat?

Sentinelsat makes searching, downloading and retrieving the metadata of Sentinel satellite images from the Copernicus Open Access Hub easy.
  1. Registrierung bei Copernicus Open Access Hub (via Open Hub) notwendig
  2. Erstellung des Interessensgebietes mit geojson.io und speichern des JSONs in einer Datei. Alternativ kann das Gebiet Bonn herunterladen werden mit dem Befehl
    curl https://mundialis.github.io/fossgis2018/open_data_mit_open_source/processing/bonn.json > bonn.json
  3. Installation von sentinelsat mit
    pip install sentinelsat
  4. Filtern und Download mit sentinelsat. Siehe auch Dokumentation

      WORK_DIR=/home/user/Desktop/open_data_mit_open_source/
      USER=xxx
      PASSWORD=yyy
      JSON=bonn.json

      mkdir -p ${WORK_DIR}
      cd ${WORK_DIR}

      sentinelsat -u ${USER} -p ${PASSWORD} -g ${JSON} --sentinel 2 --cloud 10 -s 20170601 -e 20170901

      sentinelsat -u ${USER} -p ${PASSWORD} --uuid 1e339b20-144a-4ccf-8ace-36077508b155

      sentinelsat -u ${USER} -p ${PASSWORD} --name S2A_MSIL2A_20170619T103021_N0205_R108_T32ULB_20170619T103021 -d --path ${WORK_DIR}
    

Impressum - Datenschutzerklärung