Beta > Layers Endpoints

About

You can now get layers (tassel count, stand count, NVDI, and RGB) through the Sentera integration. Please make sure to follow the Sentera integratation steps before getting layers.

All HTTP methods should be prepended by this service's endpoint:

https://api.withleaf.io/services/beta/api

See below the REST resources and their endpoints available in this service.

DescriptionEndpoints
Get all the layers for a Leaf UserGET /users/{leafUserId}/layers
Upload a layer to Climate FieldViewPOST /users/{leafUserId}/layers/climateFieldView

Layers (BETA)

Get all the layers for a Leaf User

 GET /users/{leafUserId}/layers

Gets a paged list of layers that belong for a Leaf User.

Parameter (to filter by)Values
typeTASSEL_COUNT, STAND_COUNT, NVDI, and RGB

You can also pass some parameters used exclusively for paging through results. They are:

  • page, an integer specifying the page being fetched (default is 0)
  • size, an integer specifying the size of the page (max is 100)
the default value for page size is 20

If the parameters page and size are not set, the endpoint will return 20 results.

Request examples

curl -X GET \
-H 'Authorization: Bearer YOUR_TOKEN' \
'https://api.withleaf.io/services/beta/api/users/{leafUserId}/layers'

Response

[
{
"id": "96a098e0-f1d0-47e8-968d-9d55d54da114",
"leafUserId": "055c4d61-b1e2-4fa9-873c-23433a11c271",
"apiOwnerUsername": "fabyan",
"type": "RGB",
"origin": "PROVIDER_POOLED",
"provider": "Sentera",
"providerLayerId": "vnoyi6a_FI_edovSouthernM_CV_prod_82f9b3d6_211018_151052",
"providerFieldId": "ycof8zg_AS_edovSouthernM_CV_prod_a025df2d_211015_200456",
"name": "QuickTile RGB",
"size": 159135298,
"md5": "7ff746c6f5f06fc25b46420328402bed",
"contentS3": "URL",
"downloadContentS3": "URL",
"createdTime": "2022-02-16T21:40:20.257Z",
"leafFieldIds": [
"f43ca7cc-c73a-43b9-8685-070b03876475",
"edcf7b8b-913e-4e53-a0b5-91aa16699dfc"
]
},
{
"id": "4d9b0139-f528-43ab-8bc9-a31043fa87d2",
"leafUserId": "055c4d61-b1e2-4fa9-873c-23433a11c271",
"apiOwnerUsername": "fabyan",
"type": "RGB",
"origin": "PROVIDER_POOLED",
"provider": "Sentera",
"providerLayerId": "<UUID defined by the provider>",
"providerFieldId": "<UUID defined by the provider>",
"name": "QuickTile RGB",
"size": 121910506,
"md5": "759d1f68962e30ea78f40025c8b64972",
"contentS3": "URL",
"downloadContentS3": "URL",
"createdTime": "2022-02-16T21:40:35.341Z",
"leafFieldIds": [
"f43ca7cc-c73a-43b9-8685-070b03876475",
"edcf7b8b-913e-4e53-a0b5-91aa16699dfc"
]
},
....
]

Upload a layer to Climate FieldView

 POST /users/{leafUserId}/layers/climateFieldView

Send a layer file to Climate FieldView.

ParameterValues
uploadTypeRGB

Currently, only true color image (RGB) files are supported and must meet the following criteria required by Climate:

  • The image needs to be a multi band GeoTIFF with 24-bit composite values (must contain 3 bands in the order Red, Green, Blue)
  • The Coordinate Reference System (CRS) must be UTM with WGS84 datum
  • The following metadata (GDAL_METADATA tag) entries are required to be embedded in the GeoTIFF:
    • acquisitionStartDate - ISO8601 date
    • acquisitionEndDate - ISO8601 date
    • isCalibrated - boolean

Although Climate FieldView supports files up to 500MB, at this time, we only accept files up to 5MB.

Request examples

curl -X POST \
-H 'Authorization: Bearer YOUR_TOKEN' \
-F 'file=rgb.tif' \
'https://api.withleaf.io/services/beta/api/users/{leafUserId}/layers/climateFieldView?' \
'uploadType=RGB'

Response

{
"id": "86fb8bea-1670-48ea-a85d-fbdf6feefb35",
"name": "LayerName"
}
info

Uploaded layers are not stored on Leaf side and are only available for use directly in Climate FieldView