|
966 | 966 | "temporal_extent": { |
967 | 967 | "from_parameter": "temporal_extent" |
968 | 968 | }, |
969 | | - "url": "https://s3.waw3-1.cloudferro.com/swift/v1/agera/stac/collection.json" |
| 969 | + "url": "https://stac.openeo.vito.be/collections/agera5_monthly" |
970 | 970 | }, |
971 | 971 | "process_id": "load_stac" |
972 | 972 | }, |
|
1737 | 1737 | "parameters": [ |
1738 | 1738 | { |
1739 | 1739 | "name": "spatial_extent", |
1740 | | - "description": "Spatial extent specified as a bounding box with 'west', 'south', 'east' and 'north' fields.", |
1741 | | - "schema": { |
1742 | | - "type": "object", |
1743 | | - "subtype": "bounding-box", |
1744 | | - "required": [ |
1745 | | - "west", |
1746 | | - "south", |
1747 | | - "east", |
1748 | | - "north" |
1749 | | - ], |
1750 | | - "properties": { |
1751 | | - "west": { |
1752 | | - "type": "number", |
1753 | | - "description": "West (lower left corner, coordinate axis 1)." |
1754 | | - }, |
1755 | | - "south": { |
1756 | | - "type": "number", |
1757 | | - "description": "South (lower left corner, coordinate axis 2)." |
1758 | | - }, |
1759 | | - "east": { |
1760 | | - "type": "number", |
1761 | | - "description": "East (upper right corner, coordinate axis 1)." |
1762 | | - }, |
1763 | | - "north": { |
1764 | | - "type": "number", |
1765 | | - "description": "North (upper right corner, coordinate axis 2)." |
1766 | | - }, |
1767 | | - "crs": { |
1768 | | - "description": "Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system.", |
1769 | | - "anyOf": [ |
1770 | | - { |
1771 | | - "type": "integer", |
1772 | | - "subtype": "epsg-code", |
1773 | | - "title": "EPSG Code", |
1774 | | - "minimum": 1000 |
1775 | | - }, |
1776 | | - { |
1777 | | - "type": "string", |
1778 | | - "subtype": "wkt2-definition", |
1779 | | - "title": "WKT2 definition" |
1780 | | - } |
1781 | | - ], |
1782 | | - "default": 4326 |
| 1740 | + "description": "Limits the data to process to the specified bounding box or polygons.\n\nFor raster data, the process loads the pixel into the data cube if the point\nat the pixel center intersects with the bounding box or any of the polygons\n(as defined in the Simple Features standard by the OGC).\n\nFor vector data, the process loads the geometry into the data cube if the geometry\nis fully within the bounding box or any of the polygons (as defined in the\nSimple Features standard by the OGC). Empty geometries may only be in the\ndata cube if no spatial extent has been provided.\n\nEmpty geometries are ignored.\n\nSet this parameter to null to set no limit for the spatial extent.", |
| 1741 | + "schema": [ |
| 1742 | + { |
| 1743 | + "title": "Bounding Box", |
| 1744 | + "type": "object", |
| 1745 | + "subtype": "bounding-box", |
| 1746 | + "required": [ |
| 1747 | + "west", |
| 1748 | + "south", |
| 1749 | + "east", |
| 1750 | + "north" |
| 1751 | + ], |
| 1752 | + "properties": { |
| 1753 | + "west": { |
| 1754 | + "description": "West (lower left corner, coordinate axis 1).", |
| 1755 | + "type": "number" |
| 1756 | + }, |
| 1757 | + "south": { |
| 1758 | + "description": "South (lower left corner, coordinate axis 2).", |
| 1759 | + "type": "number" |
| 1760 | + }, |
| 1761 | + "east": { |
| 1762 | + "description": "East (upper right corner, coordinate axis 1).", |
| 1763 | + "type": "number" |
| 1764 | + }, |
| 1765 | + "north": { |
| 1766 | + "description": "North (upper right corner, coordinate axis 2).", |
| 1767 | + "type": "number" |
| 1768 | + }, |
| 1769 | + "base": { |
| 1770 | + "description": "Base (optional, lower left corner, coordinate axis 3).", |
| 1771 | + "type": [ |
| 1772 | + "number", |
| 1773 | + "null" |
| 1774 | + ], |
| 1775 | + "default": null |
| 1776 | + }, |
| 1777 | + "height": { |
| 1778 | + "description": "Height (optional, upper right corner, coordinate axis 3).", |
| 1779 | + "type": [ |
| 1780 | + "number", |
| 1781 | + "null" |
| 1782 | + ], |
| 1783 | + "default": null |
| 1784 | + }, |
| 1785 | + "crs": { |
| 1786 | + "description": "Coordinate reference system of the extent, specified as as [EPSG code](http://www.epsg-registry.org/) or [WKT2 CRS string](http://docs.opengeospatial.org/is/18-010r7/18-010r7.html). Defaults to `4326` (EPSG code 4326) unless the client explicitly requests a different coordinate reference system.", |
| 1787 | + "anyOf": [ |
| 1788 | + { |
| 1789 | + "title": "EPSG Code", |
| 1790 | + "type": "integer", |
| 1791 | + "subtype": "epsg-code", |
| 1792 | + "minimum": 1000, |
| 1793 | + "examples": [ |
| 1794 | + 3857 |
| 1795 | + ] |
| 1796 | + }, |
| 1797 | + { |
| 1798 | + "title": "WKT2", |
| 1799 | + "type": "string", |
| 1800 | + "subtype": "wkt2-definition" |
| 1801 | + } |
| 1802 | + ], |
| 1803 | + "default": 4326 |
| 1804 | + } |
1783 | 1805 | } |
| 1806 | + }, |
| 1807 | + { |
| 1808 | + "title": "Vector data cube", |
| 1809 | + "description": "Limits the data cube to the bounding box of the given geometries in the vector data cube. For raster data, all pixels inside the bounding box that do not intersect with any of the polygons will be set to no data (`null`). Empty geometries are ignored.", |
| 1810 | + "type": "object", |
| 1811 | + "subtype": "datacube", |
| 1812 | + "dimensions": [ |
| 1813 | + { |
| 1814 | + "type": "geometry" |
| 1815 | + } |
| 1816 | + ] |
| 1817 | + }, |
| 1818 | + { |
| 1819 | + "title": "No filter", |
| 1820 | + "description": "Don't filter spatially. All data is included in the data cube.", |
| 1821 | + "type": "null" |
1784 | 1822 | } |
1785 | | - } |
| 1823 | + ] |
1786 | 1824 | }, |
1787 | 1825 | { |
1788 | 1826 | "name": "temporal_extent", |
|
0 commit comments