Sentinel-1 के एल्गोरिदम
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Sentinel-1 एक ऐसा अंतरिक्ष मिशन है जिसे यूरोपीय संघ से फ़ंड मिलता है. साथ ही, इसे कॉपरनिकस प्रोग्राम के तहत, यूरोपियन स्पेस एजेंसी (ईएसए) मैनेज करती है. सेंटिनल-1, अलग-अलग पोलराइज़ेशन और रिज़ॉल्यूशन में सी-बैंड सिंथेटिक एपर्चर रडार (एसएआर) इमेज इकट्ठा करता है. रडार डेटा से कैलिब्रेट की गई और ऑर्थोरेकटफ़ाइड इमेज पाने के लिए, कई खास एल्गोरिदम की ज़रूरत होती है. इसलिए, इस दस्तावेज़ में Earth Engine में Sentinel-1 डेटा की प्री-प्रोसेसिंग के बारे में बताया गया है.
Sentinel-1 का डेटा, कई अलग-अलग इंस्ट्रूमेंट कॉन्फ़िगरेशन, रिज़ॉल्यूशन, और बैंड कॉम्बिनेशन के साथ इकट्ठा किया जाता है. ऐसा, ऑर्बिट के ऊपर और नीचे जाने के दौरान किया जाता है. इस वजह से, डेटा को प्रोसेस करने से पहले, आम तौर पर उसे एक जैसे सबसेट में फ़िल्टर करना ज़रूरी होता है. इस प्रोसेस के बारे में यहां बताया गया है. इसके लिए,
मेटाडेटा और फ़िल्टर करना सेक्शन पर जाएं.
Sentinel-1 डेटा का एक जैसा सबसेट बनाने के लिए, आम तौर पर मेटाडेटा प्रॉपर्टी का इस्तेमाल करके कलेक्शन को फ़िल्टर करना ज़रूरी होगा. फ़िल्टर करने के लिए इस्तेमाल किए जाने वाले आम मेटाडेटा फ़ील्ड में ये प्रॉपर्टी शामिल हैं:
transmitterReceiverPolarisation
: ['VV'], ['HH'], ['VV', 'VH'] या
['HH', 'HV']
instrumentMode
: 'IW' (इंटरफ़ेरोमेट्रिक वाइड स्वैथ), 'EW'
(एक्सट्रा वाइड स्वैथ) या 'SM' (स्ट्रिप मैप). ज़्यादा जानकारी के लिए,
यह रेफ़रंस देखें.
orbitProperties_pass
: 'ASCENDING' या 'DESCENDING'
resolution_meters
: 10, 25 या 40
resolution
: 'M' (मीडियम) या 'H' (ज़्यादा). ज़्यादा जानकारी के लिए,
यह रेफ़रंस देखें.
यहां दिया गया कोड, transmitterReceiverPolarisation
, instrumentMode
, और
orbitProperties_pass
प्रॉपर्टी के हिसाब से, Sentinel-1 कलेक्शन को फ़िल्टर करता है. इसके बाद, कई ऑब्ज़र्वेशन कॉम्बिनेशन के लिए कंपोजिट का हिसाब लगाता है. ये कॉम्बिनेशन, मैप में दिखाए जाते हैं, ताकि यह दिखाया जा सके कि इन विशेषताओं का डेटा पर क्या असर पड़ता है.
कोड एडिटर (JavaScript)
// Load the Sentinel-1 ImageCollection, filter to Jun-Sep 2020 observations.
var sentinel1 = ee.ImageCollection('COPERNICUS/S1_GRD')
.filterDate('2020-06-01', '2020-10-01');
// Filter the Sentinel-1 collection by metadata properties.
var vvVhIw = sentinel1
// Filter to get images with VV and VH dual polarization.
.filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VV'))
.filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VH'))
// Filter to get images collected in interferometric wide swath mode.
.filter(ee.Filter.eq('instrumentMode', 'IW'));
// Separate ascending and descending orbit images into distinct collections.
var vvVhIwAsc = vvVhIw.filter(
ee.Filter.eq('orbitProperties_pass', 'ASCENDING'));
var vvVhIwDesc = vvVhIw.filter(
ee.Filter.eq('orbitProperties_pass', 'DESCENDING'));
// Calculate temporal means for various observations to use for visualization.
// Mean VH ascending.
var vhIwAscMean = vvVhIwAsc.select('VH').mean();
// Mean VH descending.
var vhIwDescMean = vvVhIwDesc.select('VH').mean();
// Mean VV for combined ascending and descending image collections.
var vvIwAscDescMean = vvVhIwAsc.merge(vvVhIwDesc).select('VV').mean();
// Mean VH for combined ascending and descending image collections.
var vhIwAscDescMean = vvVhIwAsc.merge(vvVhIwDesc).select('VH').mean();
// Display the temporal means for various observations, compare them.
Map.addLayer(vvIwAscDescMean, {min: -12, max: -4}, 'vvIwAscDescMean');
Map.addLayer(vhIwAscDescMean, {min: -18, max: -10}, 'vhIwAscDescMean');
Map.addLayer(vhIwAscMean, {min: -18, max: -10}, 'vhIwAscMean');
Map.addLayer(vhIwDescMean, {min: -18, max: -10}, 'vhIwDescMean');
Map.setCenter(-73.8719, 4.512, 9); // Bogota, Colombia
Python सेटअप
Python API के बारे में जानकारी पाने और इंटरैक्टिव डेवलपमेंट के लिए geemap
का इस्तेमाल करने के लिए,
Python एनवायरमेंट पेज देखें.
import ee
import geemap.core as geemap
Colab (Python)
# Load the Sentinel-1 ImageCollection, filter to Jun-Sep 2020 observations.
sentinel_1 = ee.ImageCollection('COPERNICUS/S1_GRD').filterDate(
'2020-06-01', '2020-10-01'
)
# Filter the Sentinel-1 collection by metadata properties.
vv_vh_iw = (
sentinel_1.filter(
# Filter to get images with VV and VH dual polarization.
ee.Filter.listContains('transmitterReceiverPolarisation', 'VV')
)
.filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VH'))
.filter(
# Filter to get images collected in interferometric wide swath mode.
ee.Filter.eq('instrumentMode', 'IW')
)
)
# Separate ascending and descending orbit images into distinct collections.
vv_vh_iw_asc = vv_vh_iw.filter(
ee.Filter.eq('orbitProperties_pass', 'ASCENDING')
)
vv_vh_iw_desc = vv_vh_iw.filter(
ee.Filter.eq('orbitProperties_pass', 'DESCENDING')
)
# Calculate temporal means for various observations to use for visualization.
# Mean VH ascending.
vh_iw_asc_mean = vv_vh_iw_asc.select('VH').mean()
# Mean VH descending.
vh_iw_desc_mean = vv_vh_iw_desc.select('VH').mean()
# Mean VV for combined ascending and descending image collections.
vv_iw_asc_desc_mean = vv_vh_iw_asc.merge(vv_vh_iw_desc).select('VV').mean()
# Mean VH for combined ascending and descending image collections.
vh_iw_asc_desc_mean = vv_vh_iw_asc.merge(vv_vh_iw_desc).select('VH').mean()
# Display the temporal means for various observations, compare them.
m = geemap.Map()
m.add_layer(vv_iw_asc_desc_mean, {'min': -12, 'max': -4}, 'vv_iw_asc_desc_mean')
m.add_layer(
vh_iw_asc_desc_mean, {'min': -18, 'max': -10}, 'vh_iw_asc_desc_mean'
)
m.add_layer(vh_iw_asc_mean, {'min': -18, 'max': -10}, 'vh_iw_asc_mean')
m.add_layer(vh_iw_desc_mean, {'min': -18, 'max': -10}, 'vh_iw_desc_mean')
m.set_center(-73.8719, 4.512, 9) # Bogota, Colombia
m
सेंटिनल-1 प्रीप्रोसेसिंग
Earth Engine 'COPERNICUS/S1_GRD'
Sentinel-1
ImageCollection
में मौजूद इमेज में, लेवल-1 ग्राउंड रेंज डिटेक्ट (GRD) वाले सीन होते हैं. इन्हें डेसिबल (dB) में बैकस्कैटर कोएफ़िशिएंट (σ°) के तौर पर प्रोसेस किया जाता है. बैकस्कैटर कोएफ़िशिएंट, ज़मीन के हर यूनिट एरिया के लिए, टारगेट बैकस्कैटरिंग एरिया (रडार क्रॉस-सेक्शन) को दिखाता है. यह कई ऑर्डर के हिसाब से अलग-अलग हो सकता है. इसलिए, इसे 10*log10σ° के तौर पर dB में बदला जाता है. इससे यह पता चलता है कि रेडिएटेड टेरेन, इन्सिडेंट माइक्रोवेव रेडिएशन को SAR सेंसर से दूर (dB < 0) या SAR सेंसर की ओर (dB > 0) स्कैटर करता है या नहीं. यह स्कैटरिंग व्यवहार, इलाके की भौतिक विशेषताओं पर निर्भर करता है. मुख्य रूप से, इलाके के एलिमेंट की ज्यामिति और उनकी इलेक्ट्रोमैग्नेटिक विशेषताओं पर.
Earth Engine, हर पिक्सल में बैकस्कैटर कोएफ़िशिएंट का पता लगाने के लिए, प्रीप्रोसेसिंग के इन चरणों का इस्तेमाल करता है. ये चरण, Sentinel-1 टूलबॉक्स के ज़रिए लागू किए जाते हैं:
- ऑर्बिट फ़ाइल लागू करना
- ऑर्बिट मेटाडेटा को, वापस लाई गई
ऑर्बिट फ़ाइल के साथ अपडेट करता है. अगर वापस लाई गई ऑर्बिट फ़ाइल उपलब्ध नहीं है, तो सटीक ऑर्बिट फ़ाइल के साथ अपडेट करता है.
- GRD बॉर्डर से ग़ैर-ज़रूरी आवाज़ें हटाना
- यह सुविधा, सीन के किनारों पर मौजूद कम इंटेंसिटी वाले शोर और अमान्य डेटा को हटाती है.
(12 जनवरी, 2018 तक)
- थर्मल नॉइज़ रिमूवल
- यह सब-स्वाथ में अतिरिक्त शोर को हटाता है, ताकि मल्टी-स्वाथ ऐक्वज़िशन मोड में, स्क्रीन के अलग-अलग हिस्सों के बीच के अंतर को कम किया जा सके.
(यह कार्रवाई, जुलाई 2015 से पहले ली गई इमेज पर लागू नहीं की जा सकती)
- रेडियोमेट्रिक कैलिब्रेशन वैल्यू का इस्तेमाल करना
- जीआरडी मेटाडेटा में सेंसर कैलिब्रेशन पैरामीटर का इस्तेमाल करके, बैकस्कैटर इंटेंसिटी का हिसाब लगाता है.
- इलाके में हुए बदलावों को ठीक करना (ऑर्थोरेटिकफ़िकेशन)
- यह फ़ंक्शन, ग्राउंड रेंज ज्यामिति से डेटा को σ° में बदलता है. ग्राउंड रेंज ज्यामिति में, इलाके की जानकारी शामिल नहीं होती. यह फ़ंक्शन, ज़्यादा अक्षांश (60° से ज़्यादा या -60° से कम) के लिए, SRTM 30 मीटर डीईएम या ASTER डीईएम का इस्तेमाल करता है.
डेटासेट के बारे में नोट
- पहाड़ की ढलानों पर आर्टफ़ैक्ट की वजह से, रेडियोमेट्रिक टेरेन फ़्लैटनिंग लागू नहीं की जा रही है.
- यूनिट के बिना बैकस्कैटर कोएफ़िशिएंट को ऊपर बताए गए तरीके से dB में बदला जाता है.
- फ़िलहाल, Sentinel-1 SLC डेटा को डाला नहीं जा सकता, क्योंकि Earth Engine, मुश्किल वैल्यू वाली इमेज के साथ काम नहीं करता. ऐसा इसलिए है, क्योंकि पिरामिड बनाने के दौरान, फ़ेज़ की जानकारी को बनाए रखते हुए उनका औसत नहीं निकाला जा सकता.
- जीआरडी एसएम ऐसेट को डाला नहीं जाता, क्योंकि
S1 टूलबॉक्स में बॉर्डर के शोर को हटाने के ऑपरेशन में मौजूद
computeNoiseScalingFactor()
फ़ंक्शन, एसएम मोड के साथ काम नहीं करता.
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eSentinel-1, part of the Copernicus Programme, provides C-band SAR data for various applications.\u003c/p\u003e\n"],["\u003cp\u003ePre-processing of Sentinel-1 data in Earth Engine involves filtering by metadata and applying specific algorithms.\u003c/p\u003e\n"],["\u003cp\u003eMetadata filtering is crucial for creating a homogeneous subset of data based on polarization, instrument mode, and orbit properties.\u003c/p\u003e\n"],["\u003cp\u003eEarth Engine automatically applies preprocessing steps including orbit file application, noise removal, radiometric calibration, and terrain correction to Sentinel-1 GRD data.\u003c/p\u003e\n"],["\u003cp\u003eThe data represents backscatter coefficient (σ°) in decibels (dB) and undergoes several processing steps to derive this value.\u003c/p\u003e\n"]]],["Sentinel-1 data, collected by the European Space Agency, is pre-processed in Earth Engine to obtain calibrated imagery. Key actions include filtering the heterogeneous data using metadata properties like `transmitterReceiverPolarisation`, `instrumentMode`, `orbitProperties_pass`, `resolution_meters`, and `resolution`. This is demonstrated in code examples using JavaScript and Python, calculating temporal means for visualization. Preprocessing steps involve applying orbit files, removing noise, radiometric calibration, and terrain correction to derive the backscatter coefficient in decibels (dB).\n"],null,["# Sentinel-1 Algorithms\n\n[Sentinel-1](https://earth.esa.int/web/sentinel/missions/sentinel-1) is a\nspace mission funded by the European Union and carried out by the European Space Agency\n(ESA) within the Copernicus Programme. Sentinel-1 collects C-band synthetic aperture\nradar (SAR) imagery at a variety of polarizations and resolutions. Since radar data\nrequires several specialized algorithms to obtain calibrated, orthorectified imagery,\nthis document describes pre-processing of Sentinel-1 data in Earth Engine.\n\nSentinel-1 data is collected with several different instrument configurations,\nresolutions, band combinations during both ascending and descending orbits. Because\nof this heterogeneity, it's usually necessary to filter the data down to a\nhomogeneous subset before starting processing. This process is outlined below in the\n[Metadata and Filtering](/earth-engine/guides/sentinel1#metadata-and-filtering) section.\n\nMetadata and Filtering\n----------------------\n\nTo create a homogeneous subset of Sentinel-1 data, it will usually be necessary to\nfilter the collection using metadata properties. The common metadata fields used for\nfiltering include these properties:\n\n1. `transmitterReceiverPolarisation`: \\['VV'\\], \\['HH'\\], \\['VV', 'VH'\\], or \\['HH', 'HV'\\]\n2. `instrumentMode`: 'IW' (Interferometric Wide Swath), 'EW' (Extra Wide Swath) or 'SM' (Strip Map). See [this\n reference](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-1-sar/acquisition-modes) for details.\n3. `orbitProperties_pass`: 'ASCENDING' or 'DESCENDING'\n4. `resolution_meters`: 10, 25 or 40\n5. `resolution`: 'M' (medium) or 'H' (high). See [this\n reference](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-1-sar/resolutions/level-1-ground-range-detected) for details.\n\nThe following code filters the Sentinel-1 collection by\n`transmitterReceiverPolarisation`, `instrumentMode`, and\n`orbitProperties_pass` properties, then calculates composites for several\nobservation combinations that are displayed in the map to demonstrate how these\ncharacteristics affect the data.\n\n### Code Editor (JavaScript)\n\n```javascript\n// Load the Sentinel-1 ImageCollection, filter to Jun-Sep 2020 observations.\nvar sentinel1 = ee.ImageCollection('COPERNICUS/S1_GRD')\n .filterDate('2020-06-01', '2020-10-01');\n\n// Filter the Sentinel-1 collection by metadata properties.\nvar vvVhIw = sentinel1\n // Filter to get images with VV and VH dual polarization.\n .filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VV'))\n .filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VH'))\n // Filter to get images collected in interferometric wide swath mode.\n .filter(ee.Filter.eq('instrumentMode', 'IW'));\n\n// Separate ascending and descending orbit images into distinct collections.\nvar vvVhIwAsc = vvVhIw.filter(\n ee.Filter.eq('orbitProperties_pass', 'ASCENDING'));\nvar vvVhIwDesc = vvVhIw.filter(\n ee.Filter.eq('orbitProperties_pass', 'DESCENDING'));\n\n// Calculate temporal means for various observations to use for visualization.\n// Mean VH ascending.\nvar vhIwAscMean = vvVhIwAsc.select('VH').mean();\n// Mean VH descending.\nvar vhIwDescMean = vvVhIwDesc.select('VH').mean();\n// Mean VV for combined ascending and descending image collections.\nvar vvIwAscDescMean = vvVhIwAsc.merge(vvVhIwDesc).select('VV').mean();\n// Mean VH for combined ascending and descending image collections.\nvar vhIwAscDescMean = vvVhIwAsc.merge(vvVhIwDesc).select('VH').mean();\n\n// Display the temporal means for various observations, compare them.\nMap.addLayer(vvIwAscDescMean, {min: -12, max: -4}, 'vvIwAscDescMean');\nMap.addLayer(vhIwAscDescMean, {min: -18, max: -10}, 'vhIwAscDescMean');\nMap.addLayer(vhIwAscMean, {min: -18, max: -10}, 'vhIwAscMean');\nMap.addLayer(vhIwDescMean, {min: -18, max: -10}, 'vhIwDescMean');\nMap.setCenter(-73.8719, 4.512, 9); // Bogota, Colombia\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\n# Load the Sentinel-1 ImageCollection, filter to Jun-Sep 2020 observations.\nsentinel_1 = ee.ImageCollection('COPERNICUS/S1_GRD').filterDate(\n '2020-06-01', '2020-10-01'\n)\n\n# Filter the Sentinel-1 collection by metadata properties.\nvv_vh_iw = (\n sentinel_1.filter(\n # Filter to get images with VV and VH dual polarization.\n ee.Filter.listContains('transmitterReceiverPolarisation', 'VV')\n )\n .filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VH'))\n .filter(\n # Filter to get images collected in interferometric wide swath mode.\n ee.Filter.eq('instrumentMode', 'IW')\n )\n)\n\n# Separate ascending and descending orbit images into distinct collections.\nvv_vh_iw_asc = vv_vh_iw.filter(\n ee.Filter.eq('orbitProperties_pass', 'ASCENDING')\n)\nvv_vh_iw_desc = vv_vh_iw.filter(\n ee.Filter.eq('orbitProperties_pass', 'DESCENDING')\n)\n\n# Calculate temporal means for various observations to use for visualization.\n# Mean VH ascending.\nvh_iw_asc_mean = vv_vh_iw_asc.select('VH').mean()\n# Mean VH descending.\nvh_iw_desc_mean = vv_vh_iw_desc.select('VH').mean()\n# Mean VV for combined ascending and descending image collections.\nvv_iw_asc_desc_mean = vv_vh_iw_asc.merge(vv_vh_iw_desc).select('VV').mean()\n# Mean VH for combined ascending and descending image collections.\nvh_iw_asc_desc_mean = vv_vh_iw_asc.merge(vv_vh_iw_desc).select('VH').mean()\n\n# Display the temporal means for various observations, compare them.\nm = geemap.Map()\nm.add_layer(vv_iw_asc_desc_mean, {'min': -12, 'max': -4}, 'vv_iw_asc_desc_mean')\nm.add_layer(\n vh_iw_asc_desc_mean, {'min': -18, 'max': -10}, 'vh_iw_asc_desc_mean'\n)\nm.add_layer(vh_iw_asc_mean, {'min': -18, 'max': -10}, 'vh_iw_asc_mean')\nm.add_layer(vh_iw_desc_mean, {'min': -18, 'max': -10}, 'vh_iw_desc_mean')\nm.set_center(-73.8719, 4.512, 9) # Bogota, Colombia\nm\n```\n\nSentinel-1 Preprocessing\n------------------------\n\nImagery in the Earth Engine `'COPERNICUS/S1_GRD'` Sentinel-1\n`ImageCollection` is consists of Level-1 Ground Range Detected\n(GRD) scenes processed to backscatter coefficient (σ°) in\ndecibels (dB). The backscatter coefficient represents\ntarget backscattering area (radar cross-section) per unit ground area. Because it can\nvary by several orders of magnitude, it is converted to dB as\n10\\*log~10~σ°. It measures whether the radiated terrain scatters\nthe incident microwave radiation preferentially away from the SAR sensor\ndB \\\u003c 0) or towards the SAR sensor dB \\\u003e 0). This scattering behavior depends on the\nphysical characteristics of the terrain, primarily the geometry of the terrain elements\nand their electromagnetic characteristics.\n\nEarth Engine uses the following preprocessing steps (as implemented by the\n[Sentinel-1 Toolbox](https://sentinel.esa.int/web/sentinel/toolboxes/sentinel-1))\nto derive the backscatter coefficient in each pixel:\n\n1. **Apply orbit file**\n - Updates orbit metadata with a restituted [orbit file](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-1-sar/pod/products-requirements) (or a precise orbit file if the restituted one is not available).\n2. **GRD border noise removal**\n - Removes low intensity noise and invalid data on scene edges. (As of January 12, 2018)\n3. **Thermal noise removal**\n - Removes additive noise in sub-swaths to help reduce discontinuities between sub-swaths for scenes in multi-swath acquisition modes. (This operation cannot be applied to images produced before July 2015)\n4. **Application of radiometric calibration values**\n - Computes backscatter intensity using sensor calibration parameters in the GRD metadata.\n5. **Terrain correction** (orthorectification)\n - Converts data from ground range geometry, which does not take terrain into account, to σ° using the [SRTM 30 meter DEM](/earth-engine/datasets/catalog/USGS_SRTMGL1_003) or the [ASTER DEM](https://asterweb.jpl.nasa.gov/gdem.asp) for high latitudes (greater than 60° or less than -60°).\n\nDataset Notes\n-------------\n\n- Radiometric Terrain Flattening is not being applied due to artifacts on mountain slopes.\n- The unitless backscatter coefficient is converted to dB as described above.\n- Sentinel-1 SLC data cannot currently be ingested, as Earth Engine does not support images with complex values due to inability to average them during pyramiding without losing phase information.\n- GRD SM assets are not ingested because the `computeNoiseScalingFactor()` function in the [border noise removal operation in the S1 toolbox](https://github.com/senbox-org/s1tbx/blob/master/s1tbx-op-calibration/src/main/java/org/esa/s1tbx/calibration/gpf/RemoveGRDBorderNoiseOp.java) does not support the SM mode."]]