In [17]:
import geopandas as gpd
import pandas as pd
from shapely.geometry import Point
In [18]:
stations = pd.read_csv('../data/processed/stations.csv')
In [19]:
geometry = gpd.GeoSeries([Point(xy) for xy in zip(stations.Longitude, stations.Latitude)])
geometry = geometry.buffer(.0005)
geometry = geometry.boundary
In [21]:
dfBound = gpd.GeoDataFrame(geometry=geometry)
dfBound.crs = {'init' :'epsg:4326'}
dfBound.to_file('../data/map/station-radius')