import geotable
t = geotable.load('line.geojson')
t.draw()
from shapely.geometry import GeometryCollection
gc = GeometryCollection(t.geometries)
gc.bounds
t[:3]
t['geometry_object'][3]
from shapely.geometry import box
b = box(-79.656855, 36.18200, -79.50, 36.31)
gc.intersection(b)