Thông báo: Tất cả dự án phi thương mại đã đăng ký sử dụng Earth Engine trước 
ngày 15 tháng 4 năm 2025 phải 
xác minh điều kiện sử dụng phi thương mại để duy trì quyền truy cập. Nếu bạn chưa xác minh trước ngày 26 tháng 9 năm 2025, quyền truy cập của bạn có thể bị tạm ngưng.
  
        
 
       
     
  
  
  
    
  
  
  
    
      ee.FeatureCollection.get
    
    
      
    
    
      
      Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
    
    
      
      Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
    
  
  
Trích xuất một thuộc tính từ một đối tượng.
| Cách sử dụng | Giá trị trả về | 
|---|
| FeatureCollection.get(property) |  | 
| Đối số | Loại | Thông tin chi tiết | 
|---|
| this: object | Phần tử | Tính năng để trích xuất thuộc tính. | 
| property | Chuỗi | Thuộc tính cần trích xuất. | 
  
  
  Ví dụ
  
    
  
  
    
    
  
  
  
  
    
    
    
      Trình soạn thảo mã (JavaScript)
    
    
  // A global power plant FeatureCollection.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants');
// View a list of FeatureCollection property names.
print(fc.propertyNames());
// Get the value of a listed property.
print('Global power plant data provider as ee.ComputedObject',
      fc.get('provider'));
// The returned value is an ee.ComputedObject which has no methods available for
// further processing; cast to the relevant Earth Engine object class for use.
print('Global power plant data provider as ee.String',
      ee.String(fc.get('provider')));
  
    
  
  
    
  
  
  
  
    
  
    
  Thiết lập Python
  Hãy xem trang 
    Môi trường Python để biết thông tin về API Python và cách sử dụng geemap cho quá trình phát triển tương tác.
  import ee
import geemap.core as geemap
  
    
    
      Colab (Python)
    
    
  # A global power plant FeatureCollection.
fc = ee.FeatureCollection('WRI/GPPD/power_plants')
# View a list of FeatureCollection property names.
display(fc.propertyNames())
# Get the value of a listed property.
display('Global power plant data provider as ee.ComputedObject:',
        fc.get('provider'))
# The returned value is an ee.ComputedObject which has no methods available for
# further processing; cast to the relevant Earth Engine object class for use.
display('Global power plant data provider as ee.String:',
        ee.String(fc.get('provider')))
  
  
  
  
  
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
  Cập nhật lần gần đây nhất: 2025-10-30 UTC.
  
  
  
    
      [null,null,["Cập nhật lần gần đây nhất: 2025-10-30 UTC."],[],["The core functionality involves extracting a specific property from a FeatureCollection using the `get(property)` method. This method requires the feature itself and the property name as input. The returned value is initially an `ee.ComputedObject`, which must be cast to the appropriate Earth Engine object type (e.g., `ee.String`) for further use. Examples demonstrate accessing property names via `propertyNames()` and extracting the 'provider' property from a power plant FeatureCollection in both JavaScript and Python.\n"]]