Ankündigung: Alle nicht kommerziellen Projekte, die vor dem 
15. April 2025 für die Nutzung von Earth Engine registriert wurden, müssen 
die Berechtigung zur nicht kommerziellen Nutzung bestätigen, um den Zugriff aufrechtzuerhalten. Wenn Sie Ihren Status nicht bis zum 26. September 2025 bestätigen, wird Ihr Zugriff möglicherweise eingeschränkt.
  
        
 
       
     
  
  
  
    
  
  
  
    
      ee.Geometry.BBox.projection
    
    
      
    
    
      
      Mit Sammlungen den Überblick behalten
    
    
      
      Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
    
  
  
Gibt die Projektion der Geometrie zurück.
| Nutzung | Ausgabe | 
|---|
| BBox.projection() | Projektion | 
| Argument | Typ | Details | 
|---|
| So gehts: geometry | Geometrie |  | 
  
  
  Beispiele
  
    
  
  
    
    
  
  
  
  
    
    
    
      Code-Editor (JavaScript)
    
    
  // Define a BBox object.
var bBox = ee.Geometry.BBox(-122.09, 37.42, -122.08, 37.43);
// Apply the projection method to the BBox object.
var bBoxProjection = bBox.projection();
// Print the result to the console.
print('bBox.projection(...) =', bBoxProjection);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(bBox,
             {'color': 'black'},
             'Geometry [black]: bBox');
  
    
  
  
    
  
  
  
  
    
  
    
  Python einrichten
  Informationen zur Python API und zur Verwendung von geemap für die interaktive Entwicklung finden Sie auf der Seite 
    Python-Umgebung.
  import ee
import geemap.core as geemap
  
    
    
      Colab (Python)
    
    
  # Define a BBox object.
bbox = ee.Geometry.BBox(-122.09, 37.42, -122.08, 37.43)
# Apply the projection method to the BBox object.
bbox_projection = bbox.projection()
# Print the result.
display('bbox.projection(...) =', bbox_projection)
# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(bbox, {'color': 'black'}, 'Geometry [black]: bbox')
m
  
  
  
  
  
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
  Zuletzt aktualisiert: 2025-07-26 (UTC).
  
  
  
    
      [null,null,["Zuletzt aktualisiert: 2025-07-26 (UTC)."],[],["The `projection()` method is applied to a `Geometry` object, specifically a `BBox` in the examples, to retrieve its projection.  A `BBox` is defined using coordinates, and the method returns the projection.  The examples demonstrate this in both JavaScript and Python, showcasing how to define a `BBox`, apply the method, print the resulting projection, and display the geometry on a map.\n"]]