├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── gtfs2shp.go └── shape ├── aggrshape.go └── shapewriter.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/go.sum -------------------------------------------------------------------------------- /gtfs2shp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/gtfs2shp.go -------------------------------------------------------------------------------- /shape/aggrshape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/shape/aggrshape.go -------------------------------------------------------------------------------- /shape/shapewriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickbr/gtfs2shp/HEAD/shape/shapewriter.go --------------------------------------------------------------------------------