gis-tools-ts - v0.6.0
    Preparing search index...

    Type Alias GBFSReader

    General Bikeshare Feed Specification (GBFS) Reader

    The versions of GBFS reader classes this data could be (1, 2, or 3) Implements the FeatureIterator interface.

    import { buildGBFSReader } from 'gis-tools-ts';

    const reader = await buildGBFSReader('https://gbfs.urbansharing.com/gbfs/gbfs.json');
    // read the features
    for await (const feature of reader) {
    // do something with the feature
    }