extract-raster-value
Retrieve raster values at specified coordinates using a PostGIS database. Input a table name, latitude, and longitude to extract spatial data for analysis or mapping.
Instructions
Belirli koordinattaki raster değerini çıkar
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | Enlem | |
longitude | Yes | Boylam | |
raster_column | No | Raster kolonu (varsayılan: rast) | |
table_name | Yes | Raster tablosu |
Input Schema (JSON Schema)
{
"properties": {
"latitude": {
"description": "Enlem",
"type": "number"
},
"longitude": {
"description": "Boylam",
"type": "number"
},
"raster_column": {
"description": "Raster kolonu (varsayılan: rast)",
"type": "string"
},
"table_name": {
"description": "Raster tablosu",
"type": "string"
}
},
"required": [
"table_name",
"longitude",
"latitude"
],
"type": "object"
}