{"id":29425852,"url":"https://github.com/senbox-org/s2tbx","last_synced_at":"2025-07-12T10:08:28.105Z","repository":{"id":18830002,"uuid":"22045363","full_name":"senbox-org/s2tbx","owner":"senbox-org","description":"Sentinel 2 Toolbox (s2tbx)","archived":false,"fork":false,"pushed_at":"2025-01-23T20:41:51.000Z","size":1173883,"stargazers_count":97,"open_issues_count":9,"forks_count":45,"subscribers_count":44,"default_branch":"master","last_synced_at":"2025-01-23T21:28:54.279Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/senbox-org.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.html","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":"2014-07-20T22:51:51.000Z","updated_at":"2024-10-22T06:50:45.000Z","dependencies_parsed_at":"2023-02-10T22:45:16.852Z","dependency_job_id":"4cb3c945-3fb3-4b09-a67e-4dea449431b0","html_url":"https://github.com/senbox-org/s2tbx","commit_stats":null,"previous_names":[],"tags_count":70,"template":false,"template_full_name":null,"purl":"pkg:github/senbox-org/s2tbx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senbox-org%2Fs2tbx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senbox-org%2Fs2tbx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senbox-org%2Fs2tbx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senbox-org%2Fs2tbx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/senbox-org","download_url":"https://codeload.github.com/senbox-org/s2tbx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/senbox-org%2Fs2tbx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264973274,"owners_count":23691503,"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":[],"created_at":"2025-07-12T10:08:27.361Z","updated_at":"2025-07-12T10:08:28.082Z","avatar_url":"https://github.com/senbox-org.png","language":"Java","funding_links":[],"categories":["Languages other than `Python` and `R`"],"sub_categories":["Testing your code"],"readme":"[![Build Status](https://travis-ci.org/senbox-org/s2tbx.svg?branch=master)](https://travis-ci.org/senbox-org/s2tbx)\n\nSentinel-2 Toolbox (S2TBX)\n==========================\n\nA toolbox for the MSI instruments on board of ESA's Sentinel-2 satellite.\n\nThe project page of SNAP, and the sentinel toolboxes can be found at http://step.esa.int.\nThere you can find tutorials, developer guides, a user forum and other interesting things.\n\nBuilding S2TBX from the source\n------------------------------\n\nDownload and install the required build tools\n\n* Install Java 8 JDK and set JAVA_HOME accordingly. A distribution of OpenJDK is suggested.\nSeveral distributions are available, for example\n  * [Azul Zulu](https://www.azul.com/downloads/zulu-community)\n  * [AdoptOpenJDK](https://adoptopenjdk.net)\n  * [Amazon Corretto](https://aws.amazon.com/de/corretto)\n* Install Maven and set MAVEN_HOME accordingly.\n* Install git\n\nAdd $JAVA_HOME/bin, $MAVEN_HOME/bin to your PATH.\n\nClone the S2TBX source code and related repositories into a directory referred to as ${snap} from here on\n\n    cd ${snap}\n    git clone https://github.com/senbox-org/s2tbx.git\n    git clone https://github.com/senbox-org/snap-desktop.git\n    git clone https://github.com/senbox-org/snap-engine.git\n    \nBuild SNAP-Engine:\n\n    cd ${snap}/snap-engine\n    mvn clean install\n\nBuild SNAP-Desktop:\n\n    cd ${snap}/snap-desktop\n    mvn clean install\n\n    cd ${snap}/snap-desktop/snap-application\n    mvn nbm:cluster-app\n\nBuild Sentinel-2 Toolbox:\n\n    cd ${snap}/s2tbx\n    mvn clean install\n   \nIf unit tests are failing, you can use the following to skip the tests\n   \n    mvn clean\n    mvn install -Dmaven.test.skip=true\n\t\nSetting up IntelliJ IDEA\n------------------------\n\n1. Create an empty project with the ${snap} directory as project directory\n\n2. Import the pom.xml files of snap-engine, snap-desktop and s2tbx as modules. Ensure **not** to enable\nthe option *Create module groups for multi-module Maven projects*. Everything can be default values.\n\n3. Set the used SDK for the main project. A JDK 1.8 or later is needed.\n\n4. Use the following configuration to run SNAP in the IDE:\n\n    **Main class:** org.esa.snap.nbexec.Launcher\n    **VM parameters:** -Dsun.awt.nopixfmt=true -Dsun.java2d.noddraw=true -Dsun.java2d.dpiaware=false\n    All VM parameters are optional\n    **Program arguments:**\n    --userdir\n    \"${snap}/s2tbx/target/userdir\"\n    --clusters\n    \"${snap}/s2tbx/s2tbx-kit/target/netbeans_clusters/s2tbx\"\n    --patches\n    \"${snap}/snap-engine/$/target/classes;${snap}/s2tbx/$/target/classes\"\n    **Working directory:** ${snap}/snap-desktop/snap-application/target/snap/\n    **Use classpath of module:** snap-main\n\nEnjoy!\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenbox-org%2Fs2tbx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsenbox-org%2Fs2tbx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsenbox-org%2Fs2tbx/lists"}