संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
मैप प्रोजेक्शन की मदद से, पृथ्वी की सतह पर पिक्सल ग्रिड तय करता है. अगर प्रोजेक्शन में स्टैंडर्ड कोड है, तो crsCode सेट हो जाएगा (खाली नहीं होगा). अगर प्रोजेक्शन स्टैंडर्ड नहीं है, तो crsWkt सेट हो जाएगा. अगर प्रोजेक्शन के बाद का ट्रांसफ़ॉर्मेशन ऐफ़ाइन है, तो affineTransform सेट हो जाएगा.
JSON के काेड में दिखाना
{"dimensions": {object (GridDimensions)},"affineTransform": {object (AffineTransform)},// Union field crs can be only one of the following:"crsCode": string,"crsWkt": string// End of list of possible types for union field crs.}
यूनियन फ़ील्ड crs. पिक्सल ग्रिड का कोऑर्डिनेट रेफ़रंस सिस्टम, जहां तक हो सके स्टैंडर्ड कोड के तौर पर और अन्य मामलों में WKT फ़ॉर्मैट में दिया जाता है. crs इनमें से कोई एक हो सकता है:
crsCode
string
स्टैंडर्ड कोऑर्डिनेट रेफ़रंस सिस्टम कोड (उदाहरण के लिए, "EPSG:4326").
crsWkt
string
WKT फ़ॉर्मैट ("Well-Known Text") में कोऑर्डिनेट रेफ़रंस सिस्टम.
[[["समझने में आसान है","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-06 (UTC) को अपडेट किया गया."],[[["Defines a pixel grid on Earth's surface using a map projection, potentially with a standard code (`crsCode`) or a custom projection (`crsWkt`)."],["Includes the dimensions of the pixel grid (`dimensions`) and an affine transform (`affineTransform`) if applicable."],["The coordinate reference system (CRS) can be specified either as a standard code or in Well-Known Text (WKT) format."]]],["The content describes a pixel grid on Earth's surface using a map projection. The `crsCode` field defines standard projections, while `crsWkt` handles non-standard ones. `affineTransform` specifies affine transformations. Key fields include `dimensions` for grid size and the union field `crs`, which can be either `crsCode` or `crsWkt`. The JSON format and the different field are shown to illustrate the representation of the data.\n"]]