in publishing, plot the lake, instead of printing the coords
it's good to jump back to previous topics and a printed lake looks much nicer then a series of coords
lakes = oa_feat.collection('lakes')
lakes_query = oa_feat.collection_items('lakes')
lake = lakes_query['features'][0]
print(lake.get('properties').get('name'))
from shapely.geometry import shape
polygon = shape(lake.get('geometry'))
polygon
in publishing, plot the lake, instead of printing the coords
it's good to jump back to previous topics and a printed lake looks much nicer then a series of coords