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

soda-node

v0.4.3

Published

Socrata SODA client for Node

Downloads

5

Readme

soda-node

Socrata SODA client for Node

Installation

npm install soda-node --save

If your project is using TypeScript, you'll probably also want:

npm install @types/geojson --save-dev

Basic Usage

  1. Create models for your dataset(s), decorated with a @SodaDataset that provides the dataset id:
import { MultiPolygon } from "geojson";
import { FloatingTimestamp, Location } from "soda-node";
import { SodaDataset } from "soda-node";

// https://data.edmonton.ca/Urban-Planning-Economy/Development-Permits/2ccn-pwtu
@SodaDataset("2ccn-pwtu")
export class DevelopmentPermit {
  city_file_number!: string;
  permit_type!: string;
  permit_class?: string;
  permit_date!: FloatingTimestamp;
  status?: string;
  description_of_development?: string;
  address?: string;
  legal_description?: string;
  neighbourhood_id!: number;
  neighbourhood!: string;
  zoning!: string;
  location?: Location;
}

// https://data.edmonton.ca/Geospatial-Boundaries/Building-Footprint/6n9r-ddf8
@SodaDataset("6n9r-ddf8")
export class BuildingFootprint {
  _170033_id!: number;
  the_geom!: MultiPolygon;
  area?: number;
}
  1. Extend SodaContext with your own service context. Provide the URL to the Socrata service of your choice via the @SodaHost decorator, and create your SodaResource objects with the dataset models:
import { SodaContext, SodaHost, SodaResource } from "soda-node";

@SodaHost("https://data.edmonton.ca/")
export class EdmontonContext extends SodaContext {
  public readonly developmentPermits = new SodaResource(DevelopmentPermit, this);
  public readonly buildingFootprints = new SodaResource(BuildingFootprint, this);
}
  1. Instantiate your Context and query against it using fluent querying:
import { FloatingTimestamp, Location } from "soda-node";

const context = new EdmontonContext();

context.developmentPermits
  .where(p => p.permit_type)
    .equals("Major Development Permit")
  .and(p => p.permit_date)
    .greaterThan(new FloatingTimestamp("04/23/2020 GMT"))
  .and(p => p.zoning)
    .not().equals("RF1")
  .orderBy(p => p.neighbourhood)
  .limit(10)
  .observable()
  .subscribe(permits => console.info(permits));

Location type queries:

context.developmentPermits
  .location(p => p.location)
    .withinCircle(new Location(53.540959, -113.493819), 2000);

context.developmentPermits
  .location(p => p.location)
    .withinBox(
      new Location(46.883198, -96.798216),
      new Location(46.873169, -96.785139)
    );

Geometry type queries:

import { MultiPolygon, Point } from "geojson";
import { GeoJSONUtils } from "soda-node";

context.buildingFootprints
  .geometry(p => p.the_geom)
    .intersects(GeoJSONUtils.point(-71.099290, -31.518292));

context.buildingFootprints
  .geometry(p => p.the_geom)
    .intersects(GeoJSONUtils.polygon(
      [-113.599831726514, 53.458273089013],
      [-113.600049996812, 53.45827360864],
      [-113.600052949158, 53.457932503403],
      [-113.599845224387, 53.457931995732],
      [-113.599834691275, 53.457931970341],
      [-113.599831726514, 53.458273089013]
    ));

context.developmentPermits
  .geometry(p => p.location)
    .withinPolygon(GeoJSONUtils.multipolygon(
      [
        [-113.599831726514, 53.458273089013],
        [-113.600049996812, 53.45827360864],
        [-113.600052949158, 53.457932503403],
        [-113.599845224387, 53.457931995732],
        [-113.599834691275, 53.457931970341],
        [-113.599831726514, 53.458273089013]
      ]
    ));

Query builders

You can also use query builders for more control (including OR queries):

import { SoqlQueryBuilder } from "soda-node";

const builder = new SoqlQueryBuilder();
  .filter(
    new WhereFilter(
      new Column("permit_type"),
      Comparitor.Equals,
      new WhereValue("Major Development Permit"),
    ),
    new WhereOperator(Operator.And),
    new WhereGroup(
      new WhereFilter(
        new Column("permit_value"),
        Comparitor.GreaterThan,
        new WhereValue(2000000),
      ),
      new WhereOperator(Operator.Or),
      new WhereGroup(
        new WhereFilter(
          new Column("permit_class"),
          Comparitor.Equals,
          new WhereValue("Class B"),
        )
      )
    )
  )
  .offset(20)
  .limit(20)
  .orderBy(new Column("neighbourhood"));

context.developmentPermits
  .get(builder)
  .subscribe(permits => console.info(permits));

Notes

  • This is a work in progress, watch this repository for updates
  • Heavily inspired by Entity Framework
  • See soda-angular for an Angular-specific implementation

Roadmap

  • Filter grouping
  • Case-insensitive text matching
  • Select-based functions

Additional Reading

License

See LICENSE.