npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pelias-transit

v3.0.0

Published

Import Stops, Intersections, P&Rs, TCs, TVMs and other landmark data related to transit, etc...

Downloads

14

Readme

This repository is part of the Pelias project. Pelias is an open-source, open-data geocoder originally sponsored by Mapzen. Our official user documentation is here.

Note: this repository is currently in the process of being migrated from the OpenTransitTools organization in to the Pelias org During this time some of the documentation and workflows may be changed in order to bring it more in common with other repositories under the pelias org.

pelias.transit.loader

Load transit landmarks, stops and street intersections into the Pelias geocoder.

Setup empty ES index via pelias/schema project

cd /srv/pelias_loader/projects/schema
curl -XDELETE 'localhost:9200/pelias?pretty'
node scripts/create_index.js
cd -

to run:

npm install
npm start
http://localhost:9200/_cat/indices?v
curl -XGET http://localhost:9200/pelias/_search?pretty=true&q=*:*
curl -XGET http://localhost:3100/v1/search?text=2
curl -XGET http://localhost:9200/pelias/_search?pretty=true&q=name.default:*SMART%20Stop*
note: you might need to set an env var to find pelias.json (if you keep getting 'transit' not in your schema errors, try the following):

export PELIAS_CONFIG=${PWD#/cygdrive/c}/pelias.json

-or-

$Env:PELIAS_CONFIG="$(pwd)\pelias.json"

to delete transit data from the index:

  1. TBD ... each version of Elastic Search has a different way to bulk delete
  2. TBD ... so waiting on Pelias to officially use ElasticSearch v5.x
  3. curl -XGET 'http://localhost:9200/pelias/_search?q=source:transit&pretty'
  4. might need delete api plugin: https://github.com/pelias/dockerfiles/blob/master/elasticsearch/2.4/Dockerfile

Docker instructions

######INITIAL CHECKOUT

  1. git clone https://github.com/OpenTransitTools/pelias.transit.loader.git
  2. cd pelias.transit.loader
  3. git update-index --no-assume-unchanged pelias.json
  4. git update-index --assume-unchanged pelias.json

######DOWNLOAD DATA

  1. export DATA_DIR=/data
  2. rm -rf $DATA_DIR/transit/*
  3. docker rmi -f pelias_transit
  4. mkdir -p $DATA_DIR/transit
  5. docker build --tag pelias_transit .
  6. docker images
  7. docker run -i -v $DATA_DIR:/data -t pelias_transit npm run download
  8. ls /data/transit
  9. note ... more Pelias / Transit Docker fun available from OTT Pelias Dockerfiles