- What is CREODIAS?
- Computing & Cloud
- Data & Processing
- Pricing Plans
- Fight with COVID-19
- Examples of usage
- Utility of CREODIAS data
- Security Applications with Satellite Data
- Climate Monitoring with Satellite Data
- Water Analysis on CREODIAS
- CREODIAS for land and agriculture monitoring
- Solutions for atmospheric analysis
- Example of tool usage
- Processing EO Data and Serving www services
- Processing and Storing EO
- Embedding OGC WMS Services into Your website
- GPU Use Case
- Using the EO Browser
- EO Data Finder API Manual
- Use of SNAP and QGIS on a CREODIAS Virtual Machine
- Use of WMS Configurator
- DNS as a Service - user documentation
- Use of Sinergise Sentinel Hub on the CREODIAS EO Data Hub
- Load Balancer as a Service
- Jupyter Hub
- Use of CREODIAS Finder for ordering data
- ESRI ArcGIS on CREODIAS
- Use of CEMS data through CREODIAS
- Searching, processing and analysis of Sentinel-5P data on CREODIAS
- ASAR data available on CREODIAS
- Public Reporting Dashboards
- Sentinel Hub Documentation
- Legal Matters
- FAQ
- News
- Partner Services
- About Us
- Forum
Your Processing Environment
EOData Finder API
Using http API to query EO Data Finder
The limit may be exceeded, for example, going to page 101 with 2000 results in the CREODIAS Finder API. The requests over the limit will be rejected with the code 400.
We encourage you to limit your inquiries by geographic or temporal area.
The limit is 60 requests per minute, per source IP address.
The requests over the limit will be rejected with the code 429.
All queries may be executed as simple HTTP-Get calls, by typing the query in web browser address line, by using any HTTP client, e.g. curl or wget, or from inside of users’ program. The database is accessible free and anonymously (open for anonymous access for everyone, no authorization is used) It may be accessed both from the internal network (virtual machines in CreoDIas) and from outside, e.g. your home computer. Note, that the actual EO data themselves are restricted to to CreoDIas users, only the catalogue (EO Data Finder) is open.
For example, you may get the 10 most recent products from Poland using the command:
$ wget -O - "http://finder.creodias.eu/resto/api/collections/search.json?_pretty=true&q=Poland"
Or just typing the URL in the address line of your browser:
http://finder.creodias.eu/resto/api/collections/search.atom?q=Poland
General Rules
The queries may produce their results either in JSON or XML formats. To select the appropriate form, use the corresponding engine in the URL:
http://finder.creodias.eu/resto/api/collections/search.json? - for JSON
http://finder.creodias.eu/resto/api/collections/search.atom? - for XML response
The responses are by default formatted in compact form for machine interpretation. If you want the output to be formatted with space and newlines in human-readable form add _pretty=true to the query (like in the examples above).
The responses as text lists of products are not implemented directly yet. If you need just such a list, without additional info, provided by JSON, the solution is to filter out the formatted JSON response. For example, the following filtered command returns name list of 1000 most recent Sentinel-1 products from Poland.
$ wget -O - "http://finder.creodias.eu/resto/api/collections/Sentinel1/search.json?_pretty=true&maxRecords=1000&q=Poland" | grep "productIdentifier" | egrep -o '\\[^"]++' | sed 's/\\//g'
Most queries (except of “natural language” ones) are case-sensitive.
Product metadata
The metadata is available for all products in the form provided by original data publishers. For example, for Sentinel-2 products, the main metadata for each of them is available in XML form as
where the path to the product and its name are accessible from the productIdentifier field of the response, finding it (as above).
All product metadata are available free and anonymously.
Collections
The data are organized in so-called collections, corresponding to various satellites. A query may search for data in all collections, or in one particular collection only. If only one satellite is in the field of interest, the second approach is faster and more efficient, than filtering the general query. For example, to find 10 most recent Sentinel-2 products from Poland, the query should look like:
http://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?_pretty=true&q=Poland
while if the collection field is missing in the URL, the products from all the satellites are returned:
http://finder.creodias.eu/resto/api/collections/search.json?_pretty=true&q=Poland
As for today the following collections are defined and may be used:
Sentinel1
Sentinel2
Sentinel3
Sentinel5P
Landsat8
Landsat7
Landsat5
Envisat
The actual list of available collections (satellites) may be obtained as
http://finder.creodias.eu/resto/collections.xml
Note, that collection names vary a bit from satellite names, as they are used in EO Data repository. For example, the collection is named Sentinel2, while in the repository its data are located within /eodata/Sentinel-2/.... branch of the repository tree.
Output sorting and limiting
By default, maximum 10 most recently published products are returned only. You may change the limit (beware of long execution time for queries about thousands of products) using the phrase
maxRecords=nnn
If the query is very general and the number of matching products is large, the next pages of products may be retrieved
page=nnn
You may also change the order of how the products are presented, using the phrase like
sortParam=startDate
will sort the output by observation date rather than by publication date. The following orderings are implemented:
published - the date when the product got published in our repository (default)
startDate - the date when the observation was made
cloudCover - the cloudiness of the scene
each of them may be accompanied by
sortOrder=ascending or sortOrder=descending
For example the query
will return 20 least cloudy products from Poland from July 2016, while the next query would return the next 20, a little bit cloudier, such product:
The last sub phrase, selecting the next page of the results, may be also written as page=2
Proper query
The proper query is invoked as a sequence of sub phrases, separated by &. The result is a conjunction of all sub phrases. It is impossible to use an alternative in the question. The query might be specified in two ways: as natural language query or as a formal one. Mixing of both is also possible.
The example of natural language (all Sentinel-2 products from Warsaw from Summer 2016):
http://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?q=Warsaw Summer 2016
The example of formal query, giving virtually the same results:
The example of mixed query - about cloudless (cloud cover below 10%) products from Warsaw Summer 2016:
Natural language queries
Their form is q=natural language question. The question formulated in natural language is interpreted in the simplest way as conjunctive set of keywords. Only the known keywords are recognised and all other words are ignored. The keywords are not case sensitive and often may use alternative spellings, e.g. you may specify the name of the city as Gdańsk (using Polish accented letter ‘ń’) or as gdansk (with plain Latin alphabet).
The answer reflects the conjunction of all matching keywords. The possible keywords are:
- city names, in English spelling, if such exists, like Warsaw, but in local spelling, if English one is not used, like Łódź (or Lodz)
- country names, like Poland
- region names, like Tirol
- seasons, month names, days of week, years (4 digits), day of month (1 or 2 digits)
- terrain features: land, water, forest, etc. Only land/water selection is implemented globally.
The example of a query, finding Landsat-8 scenes from the town of Otwock on 28th of June 2016:
http://finder.creodias.eu/resto/api/collections/Landsat8/search.json?q=Otwock 28 June 2016
Note that empty responses may result both from lack of matching records, and from misspelt queries. Those two reasons are indistinguishable. For example, if your query about the products from Otwock on 14th of June in the same way, the result would be empty (no such products are available in our repository). But you cannot find from the answer if the empty response was caused by a lack of data from 14th of June, or maybe Otwock is a too small town to have its name recognised.
Formal queries
The queries are in form param=value or param=[minvalue,maxvalue]. Most of the parameters are common for all collections, but some are specific for some them (e.g. cloudCover applies to optical satellites, but polarisation applies to radar ones), or just single one.
Geography and time-frame
The common set of parameters are:
startDate, completionDate - the date limits of the observation. The time may also be specified, e.g. 2016-10-01T021:30:00Z Format as defined by RFC-3339
publishedAfter, publishedBefore - the date limits when the product was published in our repository
lon, lat - geographical position, expressed in military style (EPSG:4326, as decimal fraction of degrees, positive for eastern latitude and northern longitude)
radius - region of interest, defined as a circle with centre in point determined by the longitude and latitude with radius expressed in meters (it won't work with point manually selected in EOFinder)
geometry - region of interest, defined as WKT string (POINT, POLYGON, etc.)
gmlgeometry - region of interest, defined in GML standard
box - region of interest, defined as the rectangle with given (west,south,east,north) values
name - region of interest, given as name (city name, country name, etc., the same as in natural language queries)
Region of interests may also be specified by KML file, attached to HTTP/POST query, e.g.
curl -X POST http://finder.creodias.eu/resto/api/collections/Sentinel2/search.json?q=Summer 2016 –data @file/my.kml
will find all Sentinel-2 data from Summer 2016 from the area described as KML file my.kml .
Note that KML queries are restricted to simply connected areas (simple polygons).
Terrain features
Some terrain features may be checked in the query. The following are defined:
waterCover - a percentage of the scene, covered by waters, e.g. waterCover=[5,100] selects only scenes, covering at least to some degree by seas;
landCover
forestCover
desertCover
urbanCover
herbaceousCover
cultivatedCover
Only water/land distinction is well defined for all areas, but even for them, smaller inland waters are sometimes still marked as "land". Accuracy and availability of other distinction depend on a region, and generally should be treated as a clue only.
Volatile features
Some terrain-like feature masks are not permanent but describing a single scene only. The most commonly used such feature is cloudiness, or cloudCover, which is defined for most of the products coming from optical sensors. For example:
cloudCover=[0,10]
selects only those scenes, which are covered by clouds by no more than 10%.
Caution: to be meaningful, the cloudiness must be provided with each product, while in many products is missing. If the cloudiness is unknown for the scene, it is marked by a value of 0 or -1. cloudCover=0 is therefore ambiguous: it may either mean totally cloudless sky or the cloudy scene for which cloud cover had not been estimated during original data processing.
Other such volatile features are:
iceCover
snowCover
floodedCover
They are defined and supported by EO Data Finder, but the corresponding data masks are properly provided for very few products only.
Satellite features
instrument - meaningful only for satellites equipped with multiple instruments. The possible values are satellite specific.
productType - the actual types possible are specific for every satellite. For Sentinel-1 data you may select for example productType=GRD for products processed in standard mode for land observations.
sensorMode - also satellite and sensor specific. E.g. (for Sentinel-1):
productType=GRD&sensorMode=EW
orbitDirection - ascending or descending. For most heliosynchronous satellites descending orbits means the day scenes, while ascending means night ones. For many optical satellites (e.g. Sentinel-2) only day scenes are published.
resolution - expected spatial resolution of the product defined in meters.
status:
- all shows all products regardless of processing,
- 31 means that product is orderable and waiting for download to our cache,
- 32 means that product is ordered and processing is in progress,
- 34 means that product is downloaded in cache,
- 37 means that product is processed by our platform,
- 0 means that already processed product is waiting in our platform
Some additional parameters are strictly satellite-specific, e.g. polarisation, which is defined only for Sentinel-1
For every satellite (collection) its set of query-able parameters may be obtained by a query like:
http://finder.creodias.eu/resto/api/collections/Sentinel1/describe.xml
The resulting XML file provides full list of the parameters for the collection, with their very brief descriptions.
Alternative queries
It is impossible to formulate a logical alternative in a query. Such alternatives must be implemented as a sequence of queries and concatenating their results. For example, the following script returns the list of Sentinel-1 products from Summer 2016 from England and Ireland:
wget -O – "http://finder.creodias.eu/resto/api/collections/Sentinel1/search.json?_pretty=true&maxRecords=1000&q=England summer 2016" > /tmp/x wget -O – "http://finder.creodias.eu/resto/api/collections/Sentinel1/search.json?_pretty=true&maxRecords=1000&q=Ireland summer 2016" >> /tmp/x cat /tmp/x | grep "productIdentifier" | egrep -o '\\[^"]++' | sed 's/\\//g' | sort -u rm -f /tmp/x
Interactive generation of queries
If you use the interactive (browser based) EO Data Finder
every query executed by it is displayed in a “query” field in its left panel. It may be copied from there and then used by API programming. If you logged in to the EO Data Finder as a registered user, the history of recently executed queries is also available and may be used for API access. Not all the API features may be created interactively, but on the other hand, all queries, generated interactively, are also valid for API.
For beginners, it is often a good idea to take the interactively generated query, and eventually, only modify it, rather than writing own queries from scratch.
Order API Documentation
For comprehensive Order API description you can visit this page: https://finder.creodias.eu/api/doc/
and new version ofAPI:
----------
User’s Guide Ver. 2020-05-14