# !pip install geemap import ee import geemap Map = geemap.Map() lat_grid = geemap.latitude_grid(step=5.0, west=-180, east=180, south=-85, north=85) Map.addLayer(lat_grid, {}, "Latitude Grid") Map df = geemap.ee_to_df(lat_grid) df lon_grid = geemap.longitude_grid(step=5.0, west=-180, east=180, south=-85, north=85) Map = geemap.Map() Map.addLayer(lon_grid, {}, "Longitude Grid") Map grid = geemap.latlon_grid( lat_step=10, lon_step=10, west=-180, east=180, south=-85, north=85 ) Map = geemap.Map() Map.addLayer(grid, {}, "Coordinate Grid") Map