Skip to main content
Leaf integrates with Planet to deliver PlanetScope imagery at 3-meter resolution with near-daily revisit times. Leaf handles the subscription process internally, fetching both back-fill and forward-fill images based on the dates you specify.
PlanetScope imagery is billed by area.
When you create a satellite field with providers: ["planet"], Leaf first checks whether Planet is enabled for your API owner. If Planet is not enabled, field creation fails before the subscription is created.

Supported item and asset types

Leaf supports the PSScene item type with these asset types:

ortho_analytic_8b_sr

Atmospherically corrected surface reflectance. This is the default and the most commonly used asset type. Leaf produces 13 images per pass.
BandName
1Coastal Blue
2Blue
3Green I
4Green
5Yellow
6Red
7Red Edge
8Near-infrared

ortho_analytic_8b

Radiometrically calibrated analytic image stored as 16-bit scaled radiance. Same 8 bands as ortho_analytic_8b_sr. Leaf produces 13 images per pass.

ortho_visual

Color-corrected visual image with 3 bands (Red, Blue, Green). Leaf produces 2 images per pass.

ortho_udm2

Usable data mask (Cloud 2.0). Contains 8 bands:
BandDescription
1Clear map
2Snow map
3Shadow map
4Light haze map
5Heavy haze map
6Cloud map
7Confidence map
8Unusable pixels

ortho_analytic_8b_xml

Radiometrically calibrated analytic image metadata.

Requesting multiple asset types

You can request more than one asset type per satellite field. Specify them in the assetTypes array when creating the field:
{
  "externalId": "my-field-001",
  "providers": ["planet"],
  "assetTypes": ["ortho_analytic_8b_sr", "ortho_udm2"],
  "geometry": {
    "type": "MultiPolygon",
    "coordinates": [...]
  }
}
If you omit assetTypes, Leaf defaults to ortho_analytic_8b_sr.

Checking the subscription

GET /services/satellite/api/fields/{id}/subscription Returns the active subscription details for a Planet-enabled field, including planetAssetTypes, planetItemTypes, and startDate.

Geometry requirements

Planet has stricter geometry requirements than Sentinel-2:
  • The geometry must be valid (no self-intersections).
  • Maximum vertices: 1,500.
  • Minimum inner ring area: 1.0 m².
Field creation fails if these requirements are not met.

What to do next

Last modified on March 24, 2026