Skip to main content
Solved

Server-side NDVI compositing and multi-AOI ordering for multi-city analyses

  • February 22, 2026
  • 2 replies
  • 361 views

Yuki Kiyomoto
Forum|alt.badge.img+1

Hi Planet Community,

I’m using Planet (via the Python API) to visualize NDVI across multiple cities and exploring how to link it with healthcare data.

My current workflow is:

  1. For a single AOI, I submit an order to download NDVI (after bandmath) + UDM2.

  2. I compute the composite image locally (e.g., median composite after masking with UDM2).

  3. Then I visualize the median NDVI.

Questions:

  1. Is there a way to do step (2) on Planet’s side (server-side), and download only one composite image (instead of downloading all scenes and compositing locally)?

  2. Is there any way to specify multiple AOIs and download results in a single order (one order for multiple AOIs)?

Thank you so much!

Best answer by elyhienrich

Hi ​@Yuki Kiyomoto 

It is recommended that you use data collections and the Processing API for your workflow.

Here are some resources to help get you started:


Planet University course: Introduction to Configurations and the Request Builder

Planet Documentation: Processing APIs

2 replies

elyhienrich
Community Manager 🌎
Forum|alt.badge.img+17
  • Community Manager 🌎
  • Answer
  • February 27, 2026

Hi ​@Yuki Kiyomoto 

It is recommended that you use data collections and the Processing API for your workflow.

Here are some resources to help get you started:


Planet University course: Introduction to Configurations and the Request Builder

Planet Documentation: Processing APIs


Yuki Kiyomoto
Forum|alt.badge.img+1
  • Author
  • ‎‎ 🌱
  • March 2, 2026

Hi, ​@elyhienrich 

Thank you so much for your replying!
I’ll switch to using Data Collections and the Processing API for the workflow, and I’ll review the Planet University course and the Processing API docs you shared.