-
-
Notifications
You must be signed in to change notification settings - Fork 181
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Contact Details
Provide Dataset Link
https://gee-community-catalog.org/projects/obm
Describe the bug
The tiles for Western African countries, using the TileIDs from the OBM grid tile explorer, are missing.
This is eg. the case for Tile IDs 14017, 14024, 14025, covering Mauritania and Mali.
Going further West, the next Tile IDs work again (122200, 122210, ...)
Simple reproducible example:
// Load the tile grid to explore coverage and metadata
var grid = ee.FeatureCollection('projects/sat-io/open-datasets/OPEN-BUILDING-MAPS/open_buildings_grid');
print(grid.first())
// Example: Load a specific tile
var tile = 122200 // This one works.
var tile = 14017 // Fails
var buildings = ee.FeatureCollection('projects/sat-io/open-datasets/OPEN-BUILDING-MAPS/tiles/building_'+tile);
Map.centerObject(buildings)
// Filter buildings with known occupancy types
var buildings_with_occupancy = buildings.filter(ee.Filter.neq('occupancy', 'UNK'));
print('Buildings with occupancy:', buildings_with_occupancy.size());
// Filter buildings with height information
var buildings_with_height = buildings.filter(
ee.Filter.and(
ee.Filter.neq('height', ''),
ee.Filter.neq('height', null)
)
);
print('Buildings with height:', buildings_with_height.size());
Relevant additional information
No response
Code of Conduct
- I agree to follow this project's Code of Conduct
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working