{"id":34087135,"url":"https://github.com/isce-framework/s1-reader","last_synced_at":"2026-03-11T12:16:35.430Z","repository":{"id":37104933,"uuid":"429125612","full_name":"isce-framework/s1-reader","owner":"isce-framework","description":"Sentinel-1 reader","archived":false,"fork":false,"pushed_at":"2025-12-08T18:48:24.000Z","size":8700,"stargazers_count":33,"open_issues_count":25,"forks_count":13,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-01-14T10:27:42.742Z","etag":null,"topics":["geospatial-processing","insar","remote-sensing","sentinel-1","synthetic-aperture-radar"],"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/isce-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-17T16:44:31.000Z","updated_at":"2025-10-12T03:55:30.000Z","dependencies_parsed_at":"2025-04-11T19:26:17.207Z","dependency_job_id":"7dbb60f4-1f31-4924-8db4-892e6dfd0bd4","html_url":"https://github.com/isce-framework/s1-reader","commit_stats":{"total_commits":81,"total_committers":9,"mean_commits":9.0,"dds":0.7777777777777778,"last_synced_commit":"1b25c0517ade7369fc189256f46146f73d68d7ae"},"previous_names":["isce-framework/s1-reader","opera-adt/s1-reader"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/isce-framework/s1-reader","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isce-framework%2Fs1-reader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isce-framework%2Fs1-reader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isce-framework%2Fs1-reader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isce-framework%2Fs1-reader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isce-framework","download_url":"https://codeload.github.com/isce-framework/s1-reader/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isce-framework%2Fs1-reader/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30380935,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["geospatial-processing","insar","remote-sensing","sentinel-1","synthetic-aperture-radar"],"created_at":"2025-12-14T13:37:20.396Z","updated_at":"2026-03-11T12:16:35.422Z","avatar_url":"https://github.com/isce-framework.png","language":"Python","readme":"# s1-reader\n\nA package to read Sentinel-1 data into the ISCE3-compatible burst class.\n\n## Features\n\nCreate ISCE3-compatible Sentinel1 burst class given:\n\n- S1 SAFE\n- subswath index\n- polarization\n- path to orbit directory\n\nCreates a Burst ID based on [ESA's published burst ID maps](https://sentinel.esa.int/web/sentinel/-/publication-of-brust-id-maps-for-copernicus-sentinel-1/1.1).\n\n🚨 This toolbox is still in **pre-alpha** stage and undergoing **rapid development**. 🚨\n\n## Install\n\n`s1reader` is available to install via `conda-forge`:\n\n```bash\nconda install -c conda-forge s1reader\n```\n\n### Installing for development\n\n1. Download source code:\n\n```bash\ngit clone https://github.com/opera-adt/s1-reader.git\ncd s1-reader\n```\n\n2. Install dependencies:\n\n```bash\nconda env create --file environment.yaml\n```\n\n3. Install `s1reader` via pip:\n\n```bash\n# run \"pip install -e\" to install in development mode\npython -m pip install -e .\n```\n\n## Usage\n\nThe following sample code demonstrates how to process a single burst from a S1 SAFE zip:\n\n```python\nimport s1reader\n\nzip_path = \"S1A_IW_SLC__1SDV_20190909T134419_20190909T134446_028945_03483B_B9E1.zip\"\nswath_num = 2\npol = \"VV\"\n\n# read orbits\norbit_dir = '/home/user/data/sentinel1_orbits'\norbit_path = s1reader.get_orbit_file_from_dir(zip_path, orbit_dir, auto_download=True)\n\n# returns the list of the bursts\nbursts = s1reader.load_bursts(zip_path, orbit_path, swath_num, pol)\nburst_ids = [x.burst_id for x in bursts]\n```\n\n## License\n\n**Copyright (c) 2021** California Institute of Technology (“Caltech”). U.S. Government sponsorship acknowledged.\n\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\n* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.\n* Neither the name of Caltech nor its operating division, the Jet Propulsion Laboratory, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS\nIS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\nCONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\nEXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\nPROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;\nOR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\nWHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR\nOTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF\nADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisce-framework%2Fs1-reader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisce-framework%2Fs1-reader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisce-framework%2Fs1-reader/lists"}