Code Monkey home page Code Monkey logo

s1orbits's Introduction

Sentinel-1 Orbits

This repository offers up-to-date and well-structured daily Sentinel-1 RESORB and POEORB orbits for PyGMTSAR InSAR software, available at InSAR.dev.

We ensure the orbits remain current by utilizing regularly scheduled GitHub Actions runners that update the orbits catalog every four hours. Additionally, you can manually trigger the updating scripts on the GitHub Actions page or via a terminal command. Currently, this repository keeps track of the ESA's orbits store at https://step.esa.int/auxdata/orbits, but additional sources may be included if necessary.

The updating process is comprehensive: it involves storing orbits in daily directories, unpacking zip archives, removing unnecessary files like those found in the /var directory, and conducting validity checks on the orbit XML files. Verified orbits are subsequently repacked into single-file zip archives. We always host POEORB files, providing permanent links to them. RESORB files are removed as soon as the corresponding POEORB files become accessible.

If the ESA's orbit archive becomes overloaded or experiences downtime, you can always rely on this GitHub repository. Furthermore, you can clone this repository to your own account, and it will stay up-to-date thanks to auto-synchronization.

To streamline the repository, you may opt to create a new one that includes all GitHub workflows. All files in the root directory, along with all the orbits and index files, can be seamlessly added to the new repository using the commands below:

git add README.md *.py *.sh .github/workflows/*
git commit -m "Update root directory files and workflows"
git push

for satellite_dir in $(find . -maxdepth 1 -type d -name 'S1*'); do
    satellite=$(basename "$satellite_dir")
    for year_dir in $(find "$satellite_dir" -maxdepth 1 -type d -name '20*'); do
        year=$(basename "$year_dir")
        git add "$satellite/$year"
        git commit -m "Add $satellite $year data"
        git push
    done
done

s1orbits's People

Contributors

alexeypechnikov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.