Hi
I’m getting some errors which I would like to understand and resolve, in the LULC batch notebook from EOlearn examples.
The cell with:
Check if batch is working: should print
OK
health_check = requests.get(f’{url_base}/status’, headers=headers)
print(health_check.reason)
prints “Not found”`
later in the notebook the function
get_tiles(batch_id)
The line:
response_count = len(response[‘member’])
produces the error
KeyError: ‘member’
response only has the keys ‘data’ and ‘links’
Thanks