FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How to Scrape Satellite Data: Sentinel Hub and NASA Earthdata
How-ToTools

How to Scrape Satellite Data: Sentinel Hub and NASA Earthdata

via Dev.to Tutorialagenthustler4h ago

Satellite imagery and Earth observation data are freely available from NASA and ESA. These datasets power everything from climate research to precision agriculture. Let's build Python tools to access and process this data. Available Satellite Data Sources Sentinel Hub (ESA): Sentinel-1 (radar), Sentinel-2 (optical), Sentinel-3 (ocean/land) NASA Earthdata : Landsat, MODIS, VIIRS, GPM (precipitation) NOAA : Weather satellites, ocean data Planet (commercial): Daily global imagery Setting Up pip install requests rasterio numpy matplotlib sentinelhub Accessing NASA Earthdata NASA's CMR (Common Metadata Repository) API lets you search their entire catalog: import requests import json def search_earthdata ( keyword , start_date , end_date , bbox = None ): """ Search NASA Earthdata for datasets. """ url = " https://cmr.earthdata.nasa.gov/search/granules.json " params = { " keyword " : keyword , " temporal[] " : f " { start_date } , { end_date } " , " page_size " : 50 , " sort_key " : " -start_

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
2 views

Related Articles

You can now transfer your chats and personal information from other chatbots directly into Gemini
How-To

You can now transfer your chats and personal information from other chatbots directly into Gemini

TechCrunch • 8h ago

How-To

How to Earn Money in 2026:

Medium Programming • 9h ago

How to Start Coding as a Beginner in 2026
How-To

How to Start Coding as a Beginner in 2026

Medium Programming • 10h ago

Building an MCP Server for Your Own Tools
How-To

Building an MCP Server for Your Own Tools

Medium Programming • 12h ago

[MM’s] Boot Notes — The Day Zero Blueprint — Test Smarter on Day One
How-To

[MM’s] Boot Notes — The Day Zero Blueprint — Test Smarter on Day One

Medium Programming • 13h ago

Discover More Articles