Skip to content

Instantly share code, notes, and snippets.

View miklcct's full-sized avatar

Michael Tsang miklcct

View GitHub Profile
@miklcct
miklcct / splitGtfs.php
Created January 6, 2025 17:15 — forked from Bertware/splitGtfs.php
Split GTFS files into one file per transport operator
#!/usr/bin/env php
<?php
const GTFS_PATH = '/tmp/gtfs/';
const TARGET_DIR = './splitGtfs/';
@mkdir(GTFS_PATH);
@mkdir(TARGET_DIR);
$zip = new ZipArchive;