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

koop-socrata

v1.0.4

Published

Socrata provider for Koop

Downloads

36

Readme

koop-socrata

Socrata Provider for Koop

npm version build status

This provider makes it possible to access Socrata's JSON API as either GeoJSON or an Esri FeatureService. This is particularly useful for making maps and doing analysis on the web.

Install

To use this provider you first need a working installation of Koop. Then from within the koop directory you'll need to run the following:

npm install koop-socrata --save

Usage

koop-socrata needs to be registered as a provider in your Koop app in order to work.

var socrata = require('koop-socrata')
koop.register(socrata)

If you are using Postgres you will need to then create a database and enable Postgis

createdb koop
psql -d "koop" -c "create extension postgis;"

Once that's done you can restart your server and the Socrata routes will be available.

If you're using the koop-sample-app template, you can start the server like this:

node server.js

Registering Socrata Hosts

Once this provider's been installed you need to register a particular instance of Socrata with your Koop instance. To do this you make POST request to the /socrata endpoint like so:

curl --data "host=https://data.nola.gov&id=nola" localhost:1337/socrata

for Windows users, download cURL from http://curl.haxx.se/download.html or use a tool of your choice to generate the POST request

What you'll need for that request to work is an ID and the URL of the Socrata instance. The ID is what you'll use to reference datasets that come from Socrata in Koop.

To make sure this works you can visit: http://localhost:1337/socrata and you should see all of the registered hosts.

Add your app key

Socrata allows 1,000 requests per rolling hour period if you have an app key. If not, there is no guarantee of the number of queries you can make. It is strongly recommended to include an app token if you plan to run Koop-Socrata in production. See:

http://dev.socrata.com/docs/app-tokens.html

  1. Go to dev.socrata.com/register to create an app key
  2. Edit the default.json in your koop-app config to add
{
  "socrata": {
    "token": "your-app-token"
  }
}

Accessing Socrata Data

To access a dataset hosted in Socrata you'll need a "Resource ID" from Socrata. Datasets in Socrata can be accessed as raw JSON like this:

And then the ID fwm6-d78i can be referenced in Koop like so:

http://koop.dc.esri.com/socrata/nola/fwm6-d78i

If your Socrata data has more than one location column, you can specify the desired location column in the http request like this:

https://path_to_koop/socrata/socrataProvider/dataSetID!spatialColumn

Handling Large Datasets

Koop-Socrata will page through large datasets to gather all the rows. The default is set to 10,000 rows per request, but the Socrata API handles up to 50,000 requests very well. For production deployments it is recommended to set the Koop Configuration for the Socrata page limit to 50,000.

{
	"socrata": {
		"pageLimit": 50000
	}
}

Clearing Koop's cache for individual resources

If you find yourself in a situation where Koop isn't returning data for a particular resource and you'd like to make sure it makes a fresh request, you can blow out the cobwebs by making the following request in the browser.

http://[koop]/socrata/[provider]/[resourceID]/drop
>>> true

Examples

Here are a few examples of data hosted in Socrata and accessed via Koop.

  • GeoJSON: http://koop.dc.esri.com/socrata/nola/fwm6-d78i
  • FeatureService: http://koop.dc.esri.com/socrata/nola/fwm6-d78i/FeatureServer/0
  • All publicly registered Socrata instances: http://koop.dc.esri.com/socrata

Contributing

Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.

License

Apache 2.0