# Source

Pre-packaged FGDB Files (English) http://open.canada.ca/data/en/dataset/7d42d280-ccca-4d7b-ba2b-2e1494cf1f4b

# Data conversion

First, convert to Shapefile.

`ogr2ogr -f "ESRI Shapefile" major_projects major_projects_inventory_en.gdb.zip`

Then convert the points to GeoJSON, including lat/lon conversion. (Note that in line with the GeoJSON standards, the coordinates will actually be in the order lon/lat.)

`ogr2ogr -f "GeoJSON" -t_srs "+proj=latlong" major_projects_points.json major_projects/Major_Projects_Inventory__point_.shp`

Finally, convert the lines, too.

`ogr2ogr -f "GeoJSON" -t_srs "+proj=latlong" major_projects_lines.json major_projects/Major_Projects_Inventory__line_.shp`