ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
সেন্টিনেল-1 অ্যালগরিদম
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
সেন্টিনেল-1 হল একটি মহাকাশ মিশন যা ইউরোপীয় ইউনিয়ন দ্বারা অর্থায়ন করে এবং কোপার্নিকাস প্রোগ্রামের মধ্যে ইউরোপীয় মহাকাশ সংস্থা (ESA) দ্বারা পরিচালিত হয়। সেন্টিনেল-1 বিভিন্ন মেরুকরণ এবং রেজোলিউশনে সি-ব্যান্ড সিন্থেটিক অ্যাপারচার রাডার (এসএআর) চিত্র সংগ্রহ করে। যেহেতু রাডার ডেটার ক্যালিব্রেটেড, অর্থোরেক্টিফায়েড ইমেজরি পাওয়ার জন্য বেশ কিছু বিশেষ অ্যালগরিদমের প্রয়োজন হয়, তাই এই নথিটি আর্থ ইঞ্জিনে সেন্টিনেল-1 ডেটার প্রাক-প্রসেসিং বর্ণনা করে।
সেন্টিনেল-1 ডেটা ঊর্ধ্বগামী এবং অবরোহী উভয় কক্ষপথের সময় বিভিন্ন যন্ত্র কনফিগারেশন, রেজোলিউশন, ব্যান্ড সংমিশ্রণ সহ সংগ্রহ করা হয়। এই বৈচিত্র্যের কারণে, প্রক্রিয়াকরণ শুরু করার আগে সাধারণত ডেটা ফিল্টার করে একটি সমজাতীয় উপসেটে নামিয়ে নেওয়া প্রয়োজন। এই প্রক্রিয়াটি নীচে মেটাডেটা এবং ফিল্টারিং বিভাগে বর্ণিত হয়েছে।
সেন্টিনেল-1 ডেটার একটি সমজাতীয় উপসেট তৈরি করতে, এটি সাধারণত মেটাডেটা বৈশিষ্ট্য ব্যবহার করে সংগ্রহ ফিল্টার করতে হবে। ফিল্টারিংয়ের জন্য ব্যবহৃত সাধারণ মেটাডেটা ক্ষেত্রগুলির মধ্যে এই বৈশিষ্ট্যগুলি অন্তর্ভুক্ত রয়েছে:
-
transmitterReceiverPolarisation
: ['VV'], ['HH'], ['VV', 'VH'], বা ['HH', 'HV'] -
instrumentMode
: 'IW' (ইন্টারফেরোমেট্রিক ওয়াইড সোয়াথ), 'EW' (অতিরিক্ত ওয়াইড সোয়াথ) বা 'SM' (স্ট্রিপ ম্যাপ)। বিস্তারিত জানার জন্য এই রেফারেন্স দেখুন. -
orbitProperties_pass
: 'ASCENDING' বা 'DESCENDING' -
resolution_meters
: 10, 25 বা 40 -
resolution
: 'M' (মাঝারি) বা 'H' (উচ্চ)। বিস্তারিত জানার জন্য এই রেফারেন্স দেখুন.
নিম্নোক্ত কোডটি সেন্টিনেল-1 সংগ্রহকে transmitterReceiverPolarisation
, instrumentMode
, এবং orbitProperties_pass
বৈশিষ্ট্য দ্বারা ফিল্টার করে, তারপরে এই বৈশিষ্ট্যগুলি কীভাবে ডেটাকে প্রভাবিত করে তা দেখানোর জন্য মানচিত্রে প্রদর্শিত বিভিন্ন পর্যবেক্ষণ সংমিশ্রণের জন্য কম্পোজিট গণনা করে।
কোড এডিটর (জাভাস্ক্রিপ্ট)
// 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
পাইথন সেটআপ
পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap
ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap
Colab (পাইথন)
# 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 প্রিপ্রসেসিং
আর্থ ইঞ্জিন 'COPERNICUS/S1_GRD'
সেন্টিনেল-1 ImageCollection
লেভেল-1 গ্রাউন্ড রেঞ্জ ডিটেক্টেড (জিআরডি) দৃশ্য রয়েছে যা ডেসিবেলে (ডিবি) ব্যাকস্ক্যাটার সহগ (σ°) এ প্রক্রিয়া করা হয়। ব্যাকস্ক্যাটার সহগ প্রতি ইউনিট গ্রাউন্ড এলাকায় লক্ষ্য ব্যাকস্ক্যাটারিং এলাকা (রাডার ক্রস-সেকশন) প্রতিনিধিত্ব করে। কারণ এটি মাত্রার বিভিন্ন ক্রম অনুসারে পরিবর্তিত হতে পারে, এটি 10*log 10 σ° হিসাবে dB তে রূপান্তরিত হয়। এটি পরিমাপ করে যে বিকিরণকৃত ভূখণ্ড ঘটনা মাইক্রোওয়েভ বিকিরণকে SAR সেন্সর dB < 0) থেকে বা SAR সেন্সর dB > 0 এর দিকে অগ্রাধিকারমূলকভাবে ছড়িয়ে দেয় কিনা। এই বিক্ষিপ্ত আচরণ ভূখণ্ডের শারীরিক বৈশিষ্ট্যের উপর নির্ভর করে, প্রাথমিকভাবে ভূখণ্ডের উপাদানগুলির জ্যামিতি এবং তাদের ইলেক্ট্রোম্যাগনেটিক বৈশিষ্ট্যের উপর।
আর্থ ইঞ্জিন প্রতিটি পিক্সেলে ব্যাকস্ক্যাটার সহগ বের করতে নিম্নলিখিত প্রিপ্রসেসিং ধাপগুলি ব্যবহার করে (যেমন সেন্টিনেল-1 টুলবক্স দ্বারা প্রয়োগ করা হয়েছে)
- অরবিট ফাইল প্রয়োগ করুন
- একটি পুনঃস্থাপিত অরবিট ফাইলের সাথে কক্ষপথের মেটাডেটা আপডেট করে (অথবা একটি সুনির্দিষ্ট অরবিট ফাইল যদি পুনঃস্থাপিত না থাকে)।
- GRD সীমানা শব্দ অপসারণ
- দৃশ্যের প্রান্তে কম তীব্রতার শব্দ এবং অবৈধ ডেটা সরিয়ে দেয়। (12 জানুয়ারী, 2018 অনুযায়ী)
- তাপীয় শব্দ অপসারণ
- মাল্টি-সোয়াথ অধিগ্রহণ মোডে দৃশ্যের জন্য সাব-সোয়াথগুলির মধ্যে বিচ্ছিন্নতা কমাতে সাহায্য করার জন্য সাব-সোয়াথগুলিতে সংযোজনীয় শব্দ সরিয়ে দেয়। (এই অপারেশনটি জুলাই 2015 এর আগে উত্পাদিত চিত্রগুলিতে প্রয়োগ করা যাবে না)
- রেডিওমেট্রিক ক্রমাঙ্কন মান প্রয়োগ
- GRD মেটাডেটাতে সেন্সর ক্রমাঙ্কন পরামিতি ব্যবহার করে ব্যাকস্ক্যাটারের তীব্রতা গণনা করে।
- ভূখণ্ড সংশোধন (অর্থোরেক্টিফিকেশন)
- উচ্চ অক্ষাংশের জন্য SRTM 30 মিটার DEM বা ASTER DEM ব্যবহার করে স্থল পরিসরের জ্যামিতি থেকে ডেটা রূপান্তরিত করে, যা ভূখণ্ডকে বিবেচনায় নেয় না (60° এর চেয়ে বেশি বা -60° এর কম)।
ডেটাসেট নোট
- পাহাড়ের ঢালে শিল্পকর্মের কারণে রেডিওমেট্রিক ভূখণ্ড সমতলকরণ প্রয়োগ করা হচ্ছে না।
- ইউনিটবিহীন ব্যাকস্ক্যাটার সহগ উপরে বর্ণিত হিসাবে dB তে রূপান্তরিত হয়।
- সেন্টিনেল-1 এসএলসি ডেটা বর্তমানে ইনজেস্ট করা যাবে না, কারণ আর্থ ইঞ্জিন জটিল মানের ছবিগুলিকে সমর্থন করে না কারণ পিরামিডিংয়ের সময় ফেজ তথ্য না হারিয়ে তাদের গড় করতে অক্ষমতার কারণে।
- GRD SM সম্পদগুলি গ্রহণ করা হয় না কারণ S1 টুলবক্সে বর্ডার নয়েজ রিমুভাল অপারেশনে
computeNoiseScalingFactor()
ফাংশন SM মোড সমর্থন করে না৷
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
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."]]