Building Applications #258
-
Hi, Best, Adrian |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If you are interested in land use/land cover, or agriculture mapping, consider using |
Beta Was this translation helpful? Give feedback.
-
I wouldn't say we have an officially recommended way. Because the Planetary Computer is built on open standards like STAC, you're free to use whatever software stack you. That said, I would highlight our If you're building "data" applications / dashboards, I know that Shiny is popular in the R world. In the Python world there's Panel, Streamlit, Voila, Shiny, and probably others. I'm less familiar with the Javascript world, but our Data Catalog and Explorer could be considered applications building on the Planetary Computer's STAC API and data. https://github.com/microsoft/PlanetaryComputerDataCatalog/ contains the source for those. |
Beta Was this translation helpful? Give feedback.
I wouldn't say we have an officially recommended way. Because the Planetary Computer is built on open standards like STAC, you're free to use whatever software stack you.
That said, I would highlight our
data
API. Many applications will want to display one or more STAC items on a map. You can use the data API to do that, without having to deploy your own compute to read from Blob Storage (or do that client side in Javascript).If you're building "data" applications / dashboards, I know that Shiny is popular in the R world. In the Python world there's Panel, Streamlit, Voila, Shiny, and probably others.
I'm less familiar with the Javascript world, but our Data Catalog and Explorer could be…