Error with code in 2nd cell:
#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'
Error with code in 2nd cell: