Earth Engine ขอแนะนำ
ระดับโควต้าที่ไม่ใช่เชิงพาณิชย์ เพื่อปกป้องทรัพยากรการประมวลผลที่ใช้ร่วมกันและรับประกันประสิทธิภาพที่เชื่อถือได้สำหรับทุกคน โปรเจ็กต์ที่ไม่ใช่เชิงพาณิชย์ทั้งหมดจะต้องเลือกระดับโควต้าภายในวันที่
27 เมษายน 2026 หรือจะใช้ระดับชุมชนโดยค่าเริ่มต้นก็ได้ โควต้าระดับจะมีผลกับโปรเจ็กต์ทั้งหมด (ไม่ว่าวันที่เลือกระดับจะเป็นวันใด) ในวันที่
27 เมษายน 2026 ดูข้อมูลเพิ่มเติม
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
ส่งความคิดเห็น
ee.Number.toInt8
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
แปลงค่าอินพุตเป็นจำนวนเต็มแบบมีเครื่องหมาย 8 บิต
การใช้งาน การคืนสินค้า Number. toInt8 ()ตัวเลข
อาร์กิวเมนต์ ประเภท รายละเอียด ดังนี้ input ตัวเลข ค่าอินพุต
ตัวอย่าง
โปรแกรมแก้ไขโค้ด (JavaScript)
// Cast a number to signed 8-bit integer: [-128, 127].
var number = ee . Number ( 100 );
print ( 'Number:' , number );
var int8Number = number . toInt8 ();
print ( 'Number cast to int8:' , int8Number );
/**
* Casting numbers to int8 that are outside of its range and precision can
* modify the resulting value, note the behavior of the following scenarios.
*/
// A floating point number cast to int8 loses decimal precision.
var float = ee . Number ( 1.7 );
print ( 'Floating point value:' , float );
var floatToInt8 = float . toInt8 ();
print ( 'Floating point value cast to int8:' , floatToInt8 );
// A number greater than int8 range max cast to int8 becomes int8 range max.
var INT8_MAX = 127 ;
var outOfRangeHi = ee . Number ( INT8_MAX + 12345 );
print ( 'Greater than int8 max:' , outOfRangeHi );
var outOfRangeHiToInt8 = outOfRangeHi . toInt8 ();
print ( 'Greater than int8 max cast to int8 becomes int8 max:' , outOfRangeHiToInt8 );
// A number greater than int8 range min cast to int8 becomes int8 range min.
var INT8_MIN = - 128 ;
var outOfRangeLo = ee . Number ( INT8_MIN - 12345 );
print ( 'Less than int8 min:' , outOfRangeLo );
var outOfRangeLoToInt8 = outOfRangeLo . toInt8 ();
print ( 'Less than int8 min cast to int8 becomes int8 min:' , outOfRangeLoToInt8 );
การตั้งค่า Python
ดูข้อมูลเกี่ยวกับ Python API และการใช้ geemap เพื่อการพัฒนาแบบอินเทอร์แอกทีฟได้ที่หน้า
สภาพแวดล้อม Python
import ee
import geemap.core as geemap
Colab (Python)
# Cast a number to signed 8-bit integer: [-128, 127].
number = ee . Number ( 100 )
display ( 'Number:' , number )
int8_number = number . toInt8 ()
display ( 'Number cast to int8:' , int8_number )
"""Casting numbers to int8 that are outside of its range and precision can
modify the resulting value, note the behavior of the following scenarios.
"""
# A floating point number cast to int8 loses decimal precision.
float_number = ee . Number ( 1.7 )
display ( 'Floating point value:' , float_number )
float_to_int8 = float_number . toInt8 ()
display ( 'Floating point value cast to int8:' , float_to_int8 )
# A number greater than int8 range max cast to int8 becomes int8 range max.
INT8_MAX = 127
out_of_range_hi = ee . Number ( INT8_MAX + 12345 )
display ( 'Greater than int8 max:' , out_of_range_hi )
out_of_range_hi_to_int8 = out_of_range_hi . toInt8 ()
display ( 'Greater than int8 max cast to int8 becomes int8 max:' ,
out_of_range_hi_to_int8 )
# A number greater than int8 range min cast to int8 becomes int8 range min.
INT8_MIN = - 128
out_of_range_lo = ee . Number ( INT8_MIN - 12345 )
display ( 'Less than int8 min:' , out_of_range_lo )
out_of_range_lo_to_int8 = out_of_range_lo . toInt8 ()
display ( 'Less than int8 min cast to int8 becomes int8 min:' ,
out_of_range_lo_to_int8 )
ส่งความคิดเห็น
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-10-30 UTC
หากต้องการบอกให้เราทราบเพิ่มเติม
[[["เข้าใจง่าย","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-10-30 UTC"],[],["The `toInt8()` method casts a numerical input to a signed 8-bit integer, with a range of -128 to 127. Floating-point numbers lose their decimal precision during this cast. Numbers exceeding the maximum range (127) are converted to 127, and those below the minimum (-128) become -128. The function takes a Number as input and returns a Number that is an 8 bit signed integer.\n"]]