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
#d = json.loads(urllib.urlopen(url).read())
#data = pd.DataFrame(d.items())
#data
#opening it locally
d = json.load(open('1.0_week.geojson'))
data = pd.DataFrame(d.items())
data
---------------------------------------------------------------------------
IOError Traceback (most recent call last)
<ipython-input-2-6c51623ddb65> in <module>()
4
5 #opening it locally
----> 6 d = json.load(open('1.0_week.geojson'))
7 data = pd.DataFrame(d.items())
8 data
IOError: [Errno 2] No such file or directory: '1.0_week.geojson'
The text was updated successfully, but these errors were encountered:
Error with code in 2nd cell:
The text was updated successfully, but these errors were encountered: