csviverdeia/prithvi-eo-2-300m-tl
Prithvi-EO 2.0 300M-TL - foundation model multitemporal Earth Observation (IBM+NASA), 6-band HLS, com temporal/location embeddings
Run csviverdeia/prithvi-eo-2-300m-tl with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| image |
string
|
Imagem multissensorial (GeoTIFF 6 bandas HLS preferencial: B/G/R/NIR/SWIR1/SWIR2). RGB também aceito (auto-pad pra 6 bandas).
|
|
| image_size |
integer
|
224
Min: 64 Max: 1024 |
Resolução de entrada (múltiplo de patch size = 16). Use 224 ou 512.
|
| latitude |
number
|
0
Min: -90 Max: 90 |
(Opcional, TL feature) Latitude do centro da imagem (-90 a 90). Use 0 se não souber.
|
| longitude |
number
|
0
Min: -180 Max: 180 |
(Opcional, TL feature) Longitude do centro (-180 a 180). Use 0 se não souber.
|
| year |
integer
|
2024
Min: 1980 Max: 2100 |
(Opcional, TL feature) Ano de aquisição da imagem (ex: 2024).
|
| day_of_year |
integer
|
180
Min: 1 Max: 366 |
(Opcional, TL feature) Dia do ano (1-365).
|
| return_format |
None
|
summary
|
'summary' (estatísticas + preview) ou 'full' (embedding completo).
|
{
"type": "object",
"title": "Input",
"required": [
"image"
],
"properties": {
"year": {
"type": "integer",
"title": "Year",
"default": 2024,
"maximum": 2100,
"minimum": 1980,
"x-order": 4,
"description": "(Opcional, TL feature) Ano de aquisi\u00e7\u00e3o da imagem (ex: 2024)."
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 0,
"description": "Imagem multissensorial (GeoTIFF 6 bandas HLS preferencial: B/G/R/NIR/SWIR1/SWIR2). RGB tamb\u00e9m aceito (auto-pad pra 6 bandas)."
},
"latitude": {
"type": "number",
"title": "Latitude",
"default": 0,
"maximum": 90,
"minimum": -90,
"x-order": 2,
"description": "(Opcional, TL feature) Latitude do centro da imagem (-90 a 90). Use 0 se n\u00e3o souber."
},
"longitude": {
"type": "number",
"title": "Longitude",
"default": 0,
"maximum": 180,
"minimum": -180,
"x-order": 3,
"description": "(Opcional, TL feature) Longitude do centro (-180 a 180). Use 0 se n\u00e3o souber."
},
"image_size": {
"type": "integer",
"title": "Image Size",
"default": 224,
"maximum": 1024,
"minimum": 64,
"x-order": 1,
"description": "Resolu\u00e7\u00e3o de entrada (m\u00faltiplo de patch size = 16). Use 224 ou 512."
},
"day_of_year": {
"type": "integer",
"title": "Day Of Year",
"default": 180,
"maximum": 366,
"minimum": 1,
"x-order": 5,
"description": "(Opcional, TL feature) Dia do ano (1-365)."
},
"return_format": {
"enum": [
"summary",
"full"
],
"type": "string",
"title": "return_format",
"description": "'summary' (estat\u00edsticas + preview) ou 'full' (embedding completo).",
"default": "summary",
"x-order": 6
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "string",
"title": "Output"
}