
- ডেটাসেটের প্রাপ্যতা
- 2025-03-01T00:00:00Z–2026-03-01T00:00:00Z
- ডেটাসেট প্রযোজক
- কোপারনিকাস
- ক্যাডেন্স
- ১ মাস
- ট্যাগ
বর্ণনা
গ্লোবাল ওশান কালার (কোপারনিকাস-গ্লোবকালার) ডেটাসেটটি হলো ACRI-ST দ্বারা বিকশিত একটি জৈব-ভূ-রাসায়নিক (BGC) পণ্য। এটি SeaWiFS, MODIS, এবং OLCI-এর মতো একাধিক স্যাটেলাইট উৎস থেকে সংগৃহীত। এটি সমুদ্রবিজ্ঞানের বিভিন্ন চলকের একটি বিস্তৃত পরিসর প্রদান করে, যার মধ্যে রয়েছে: ক্লোরোফিল (CHL), ফাইটোপ্ল্যাঙ্কটনের কার্যকরী প্রকার ও আকার (PFT), প্রাথমিক উৎপাদন (PP), ভাসমান পদার্থ (SPM), সেকি স্বচ্ছতার গভীরতা (ZSD), ব্যাপ্ত ক্ষয় (KD490), কণাভিত্তিক পশ্চাৎ বিক্ষেপণ (BBP), শোষণ সহগ (CDM), প্রতিফলন (RRS) এবং আরও অনেক কিছু।
This dataset provides a global estimate of marine primary production. It uses multi-sensor satellite data to measure the rate of carbon fixation by phytoplankton, which is a key indicator of ocean health. The primary production values are expressed in units of mg/m^2/day, making it a valuable tool for monitoring global carbon cycles and marine ecosystem dynamics.
নথিপত্র:
NOTE: The provider may remove Copernicus Marine data (especially Near Real-Time, NRT, observations) from their repository after some time, possibly aggregating that data into different (eg, monthly) products. However, the corresponding assets remain available in the Earth Engine collection.
ব্যান্ড
ব্যান্ড
পিক্সেল সাইজ: ৪০০০ মিটার (সকল ব্যান্ড)
| নাম | ইউনিট | পিক্সেল আকার | বর্ণনা |
|---|---|---|---|
PP | মিলিগ্রাম/দিন/মি^২ | ৪০০০ মিটার | প্রাথমিক উৎপাদন |
PP_uncertainty | % | ৪০০০ মিটার | প্রাথমিক উৎপাদন - অনিশ্চয়তা যা শতাংশের শতভাগে পরিমাপ করা হয় (যেমন, ৫০০০ মানে ৫০%)। |
flags | ৪০০০ মিটার | স্থল জলের মুখোশের অংশ।
|
ব্যবহারের শর্তাবলী
ব্যবহারের শর্তাবলী
This dataset is released for use under Service Level Agreement (SLA), using the acronym "CMEMS" or the shortened name "Copernicus Marine Service" both denote the EU Copernicus Marine Environment Monitoring Service. Highlights and key features of the licence are provided in this document License
উদ্ধৃতি
Copernicus Global Ocean Colour: Global Ocean Satellite Observations, ACRI-ST company (Sophia Antipolis, France) is providing Bio-Geo-Chemical (BGC) products based on the Copernicus-GlobColour processor. doi:10.48670/moi-00279
আর্থ ইঞ্জিন দিয়ে অন্বেষণ করুন
কোড এডিটর (জাভাস্ক্রিপ্ট)
var dataset = ee.ImageCollection('COPERNICUS/MARINE/OC_GLO_BGC/PRIMARY_PRODUCTION_MULTI_4KM') .filter(ee.Filter.date('2025-03-01', '2025-06-01')); var PP = dataset.select('PP'); var PPVis = { min: 57.26, max: 1031.191, palette: ['D7F9D0', '91CA85', '5AB05D', '129450', '0F7347', '195437', '122414'], }; Map.setCenter(71, 52, 2); Map.addLayer(PP, PPVis, 'Primary Production');