Skip to content

11904212/java-stac-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java STAC client

A Java client for interacting with STAC-APIs. The client allows to fetch various STAC objects and maps them to POJOs.

StacClient client = new StacClientImpl(new URL("https://someserver/api/stac/v1/"));
Catalog catalog = client.getCatalog();

Furthermore, searching for items is supported.

QueryParameter parameter = new QueryParameter();
parameter.addCollection("sentinel-2-l2a");
parameter.setDatetime("2022-02-13/2022-04-15");

ItemCollection result = client.search(parameter);

Using Java STAC client

Maven dependency

  • Declare the dependency
<dependency>
  <groupId>io.github.11904212</groupId>
  <artifactId>java-stac-client</artifactId>
  <version>1.0.0-alpha.0.7</version>
</dependency>

Remote Dependencies

About

A Java client for interacting with STAC-APIs.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages