ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.data.startProcessing
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
প্রসেসিং টাস্ক তৈরি করুন যা একটি ছবি রপ্তানি বা প্রি-রেন্ডার করে।
একটি কলব্যাক নির্দিষ্ট করা থাকলে রিটার্ন মান শূন্য।
ক্ষেত্র সহ একটি বস্তু ফেরত দেয়:
- টাস্কআইডি: জমা দেওয়া টাস্ক আইডি (হাইফেন ছাড়া)।
- নাম: প্রজেক্ট/X/operations/Y বিন্যাসে সম্পূর্ণ অপারেশন নাম
- শুরু হয়েছে: 'ঠিক আছে' হবে
- দ্রষ্টব্য: 'ALREADY_EXISTS' মান থাকতে পারে যদি একই জমা না দেওয়া আইডির সাথে একটি অভিন্ন টাস্ক ইতিমধ্যেই বিদ্যমান থাকে।
ব্যবহার | রিটার্নস | ee.data.startProcessing(taskId, params, callback ) | প্রসেসিং রেসপন্স |
যুক্তি | টাইপ | বিস্তারিত | taskId | স্ট্রিং | টাস্কের জন্য জমা না দেওয়া আইডি (newTaskId থেকে প্রাপ্ত)। সদৃশ কাজ সনাক্ত করতে ব্যবহৃত; শূন্য হতে পারে। সার্ভার একটি জমা আইডি তৈরি করবে এবং ফেরত দেবে। |
params | অবজেক্ট | প্রসেসিং টাস্ক বর্ণনা করে এমন বস্তু; শুধুমাত্র সমস্ত প্রক্রিয়াকরণের জন্য সাধারণ ক্ষেত্রগুলি এখানে নথিভুক্ত করা হয়েছে। টাইপ করুন (স্ট্রিং) হয় 'EXPORT_IMAGE', 'EXPORT_FEATURES', 'EXPORT_VIDEO' বা 'EXPORT_TILES'। json (স্ট্রিং) ছবির JSON বর্ণনা। |
callback | ফাংশন, ঐচ্ছিক | একটি ঐচ্ছিক কলব্যাক। যদি সরবরাহ না করা হয়, কলটি সিঙ্ক্রোনাসভাবে করা হয়। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eThis processing task exports or pre-renders an image and can be initiated using \u003ccode\u003eee.data.startProcessing\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe function returns an object containing task details like ID, name, status, and potential notes, or null if a callback is provided.\u003c/p\u003e\n"],["\u003cp\u003eTask parameters include a user-defined or server-generated task ID and a JSON object describing the image and export type.\u003c/p\u003e\n"],["\u003cp\u003eAn optional callback function can be included for asynchronous execution.\u003c/p\u003e\n"]]],["The `ee.data.startProcessing` function initiates a processing task to export or pre-render an image. It accepts a `taskId`, `params` object (specifying task type and JSON description), and an optional `callback`. The function returns a `ProcessingResponse` object with the submitted task ID, operation name, and start status, or `null` if a callback is provided. `taskId` is a user-defined ID, while the server generates the submitted ID, and `params` specify the task type. A note of `ALREADY_EXISTS` may be present.\n"],null,["# ee.data.startProcessing\n\n\u003cbr /\u003e\n\nCreate processing task that exports or pre-renders an image.\n\n\u003cbr /\u003e\n\nReturn value is null if a callback is specified.\n\nReturns an object with fields:\n\n- taskId: Submitted task ID (without hyphens).\n\n- name: Full operation name in the format projects/X/operations/Y\n\n- started: will be 'OK'\n\n- note: may have value 'ALREADY_EXISTS' if an identical task with the same unsubmitted ID already exists.\n\n| Usage | Returns |\n|---------------------------------------------------------|--------------------|\n| `ee.data.startProcessing(taskId, params, `*callback*`)` | ProcessingResponse |\n\n| Argument | Type | Details |\n|------------|--------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `taskId` | String | Unsubmitted ID for the task (obtained from newTaskId). Used to identify duplicated tasks; may be null. The server will create and return a submitted ID. |\n| `params` | Object | The object that describes the processing task; only fields that are common for all processing types are documented here. type (string) Either 'EXPORT_IMAGE', 'EXPORT_FEATURES', 'EXPORT_VIDEO' or 'EXPORT_TILES'. json (string) JSON description of the image. |\n| `callback` | Function, optional | An optional callback. If not supplied, the call is made synchronously. |"]]