├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── filter ├── TR_Conditional.json ├── any-destination.json ├── destination-ref.json ├── destination-street.json ├── destination.json ├── exit-noref.json ├── exit-numbers.json ├── exit-to.json ├── highway_primary.json └── turn_lanes.json ├── index.js ├── map.js ├── package.json └── util ├── cleanArguments.js └── help.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/README.md -------------------------------------------------------------------------------- /filter/TR_Conditional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/TR_Conditional.json -------------------------------------------------------------------------------- /filter/any-destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/any-destination.json -------------------------------------------------------------------------------- /filter/destination-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/destination-ref.json -------------------------------------------------------------------------------- /filter/destination-street.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/destination-street.json -------------------------------------------------------------------------------- /filter/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/destination.json -------------------------------------------------------------------------------- /filter/exit-noref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/exit-noref.json -------------------------------------------------------------------------------- /filter/exit-numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/exit-numbers.json -------------------------------------------------------------------------------- /filter/exit-to.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/exit-to.json -------------------------------------------------------------------------------- /filter/highway_primary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/highway_primary.json -------------------------------------------------------------------------------- /filter/turn_lanes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/filter/turn_lanes.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/index.js -------------------------------------------------------------------------------- /map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/map.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/package.json -------------------------------------------------------------------------------- /util/cleanArguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/util/cleanArguments.js -------------------------------------------------------------------------------- /util/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/osm-tag-stats/HEAD/util/help.js --------------------------------------------------------------------------------