You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2026. It is now read-only.
For the notebook provided, I am currently getting the following error quite frequently and cannot easily make get requests:
ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
I get this when running the cell:
# Query service capability URL
from xml.etree import ElementTree as ET
capability_url = f'https://n5eil02u.ecs.nsidc.org/egi/capabilities/{short_name}.{latest_version}.xml'
print(capability_url)
# Create session to store cookie and pass credentials to capabilities url
session = requests.session()
s = session.get(capability_url)
response = session.get(s.url,auth=(uid,pswd))
root = ET.fromstring(response.content)
Is this a maintenance issues? Or working remotely away from a NASA facility?
Hope you are all taking good care during these trying and scary times.
For the notebook provided, I am currently getting the following error quite frequently and cannot easily make get requests:
I get this when running the cell:
Is this a maintenance issues? Or working remotely away from a NASA facility?
Hope you are all taking good care during these trying and scary times.