Google ক্লাউড প্ল্যাটফর্ম প্রোজেক্টের প্রোজেক্ট আইডি বা প্রোজেক্ট নম্বর যেটিকে এই অনুরোধের জন্য পরিষেবা গ্রাহক হিসাবে বিবেচনা করা উচিত। ফরম্যাট হল projects/{project-id} ।
অনুমোদনের জন্য নির্দিষ্ট সংস্থান project নিম্নলিখিত IAM অনুমতি প্রয়োজন:
earthengine.exports.create
শরীরের অনুরোধ
অনুরোধের অংশে নিম্নলিখিত কাঠামো সহ ডেটা রয়েছে:
JSON প্রতিনিধিত্ব
{"expression": {object (Expression)},"description": string,"maxPixels": string,"grid": {object (PixelGrid)},"requestId": string,"workloadTag": string,"priority": integer,// Union field export_options can be only one of the following:"fileExportOptions": {object (ImageFileExportOptions)},"assetExportOptions": {object (ImageAssetExportOptions)}// End of list of possible types for union field export_options.}
গণনা এবং রপ্তানির জন্য সর্বাধিক সংখ্যক পিক্সেল৷ এটি একটি নিরাপত্তা প্রহরী যা আপনাকে দুর্ঘটনাক্রমে আপনার ইচ্ছার চেয়ে বড় রপ্তানি শুরু করা থেকে আটকাতে পারে। ডিফল্ট মান হল 1e8 পিক্সেল, কিন্তু আপনি এই সীমা বাড়াতে বা কমাতে স্পষ্টভাবে মান সেট করতে পারেন।
expression দ্বারা গণনা করা চিত্রটি কীভাবে পুনঃপ্রকল্পিত এবং ক্লিপ করা উচিত তা বর্ণনা করে প্যারামিটার। উপস্থিত না থাকলে, সম্পূর্ণ গণনা করা চিত্রটি তার নেটিভ প্রজেকশনে ফিরিয়ে দেওয়া হয়।
requestId
string
সদৃশ অনুরোধ সনাক্ত করতে ব্যবহৃত একটি অনন্য স্ট্রিং। যদি একই ব্যবহারকারীর দ্বারা একই নন-খালি requestId সহ একাধিক অনুরোধ করা হয়, তবে সেই অনুরোধগুলির মধ্যে শুধুমাত্র একটি সফলভাবে একটি দীর্ঘ-চলমান অপারেশন শুরু করতে পারে। requestId a..z, A..Z, 0-9, বা '-' অক্ষর থাকতে পারে। requestId সর্বাধিক 60 অক্ষর দীর্ঘ হতে পারে।
workloadTag
string
এই গণনা ট্র্যাক করতে ব্যবহারকারীর সরবরাহকৃত লেবেল৷
priority
integer
ঐচ্ছিক। প্রকল্পের মধ্যে রপ্তানি কাজ অগ্রাধিকার. উচ্চ অগ্রাধিকারের কাজগুলি শীঘ্রই নির্ধারিত হয়। 0 এবং 9999 এর মধ্যে একটি পূর্ণসংখ্যা হতে হবে। সেট না থাকলে ডিফল্ট 100।
ইউনিয়ন ক্ষেত্র export_options । ফলাফলগুলি কোথায় এবং কীভাবে সংরক্ষণ করতে হবে তা বর্ণনা করে বিকল্পগুলি৷ export_options নিম্নলিখিতগুলির মধ্যে একটি হতে পারে:
{"pyramidingPolicy": enum (PyramidingPolicy),"pyramidingPolicyOverrides": {string: enum (PyramidingPolicy),...},// Union field destination can be only one of the following:"earthEngineDestination": {object (EarthEngineDestination)}// End of list of possible types for union field destination.}
ক্ষেত্র
pyramidingPolicy
enum ( PyramidingPolicy )
পিরামিডিং নীতি ডিফল্টরূপে সমস্ত ব্যান্ডে প্রয়োগ করার জন্য৷
[[["সহজে বোঝা যায়","easyToUnderstand","thumb-up"],["আমার সমস্যার সমাধান হয়েছে","solvedMyProblem","thumb-up"],["অন্যান্য","otherUp","thumb-up"]],[["এতে আমার প্রয়োজনীয় তথ্য নেই","missingTheInformationINeed","thumb-down"],["খুব জটিল / অনেক ধাপ","tooComplicatedTooManySteps","thumb-down"],["পুরনো","outOfDate","thumb-down"],["অনুবাদ সংক্রান্ত সমস্যা","translationIssue","thumb-down"],["নমুনা / কোড সংক্রান্ত সমস্যা","samplesCodeIssue","thumb-down"],["অন্যান্য","otherDown","thumb-down"]],["2025-03-07 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["Initiates a batch process to compute and export an image to various destinations."],["Defines parameters for image computation including expression, description, pixel limits, and reprojection."],["Offers options to configure the export as a file or an Earth Engine asset with customizable settings."],["Requires specific authorization scopes for access and execution."],["Utilizes an HTTP POST request to the Earth Engine API for initiating the process."]]],["This API initiates a batch process to export a computed image. It requires a `project` identifier and accepts parameters within a request body, including an `expression` to define the image, a `description`, and `maxPixels`. It supports specifying a `grid` for reprojection, a `requestId` for request deduplication, `workloadTag` for tracking, and `priority` setting. The output can be exported as a file or an Earth Engine asset, with corresponding configuration options (`fileExportOptions` or `assetExportOptions`). Authentication requires specific OAuth scopes.\n"]]