cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9
Loading...

Query the Data Delivery Network

Query the DDN

The easiest way to query any data on Splitgraph is via the "Data Delivery Network" (DDN). The DDN is a single endpoint that speaks the PostgreSQL wire protocol. Any Splitgraph user can connect to it at data.splitgraph.com:5432 and query any version of over 40,000 datasets that are hosted or proxied by Splitgraph.

For example, you can query the 311_service_requests_from_2010_to_present table in this repository, by referencing it like:

"cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9:latest"."311_service_requests_from_2010_to_present"

or in a full query, like:

SELECT
    ":id", -- Socrata column ID
    "park_borough", -- The borough of incident if it is a Parks Dept facility 
    "borough", -- Provided by the submitter and confirmed by geovalidation. 
    "status", -- Status of SR submitted  
    "intersection_street_1", -- First intersecting street based on geo validated incident location 
    "cross_street_1", -- First Cross street based on the geo validated incident location 
    "incident_zip", -- Incident location zip code, provided by geo validation. 
    "agency_name", -- Full Agency name of responding City Government Agency
    "taxi_company_borough", -- If the incident is identified as a taxi, this field will display the borough of the taxi company.  
    "facility_type", -- If available, this field describes the type of city facility associated to the SR 
    "open_data_channel_type", -- Indicates how the SR was submitted to 311.  i.e. By Phone, Online, Mobile, Other or Unknown.
    "location_state",
    ":@computed_region_7mpf_4k6g", -- This column was automatically created in order to record in what polygon from the dataset 'Police Precinct' (7mpf-4k6g) the point in column 'location' is located.  This enables the creation of region maps (choropleths) in the visualization canvas and data lens.
    ":@computed_region_sbqj_enih",
    ":@computed_region_92fq_4b7q",
    ":@computed_region_yeji_bk3q",
    ":@computed_region_f5dn_yrer",
    "location_address",
    ":@computed_region_efsh_h5xi",
    "bridge_highway_segment", -- Additional information on the section of the Bridge/Highway were the incident took place. 
    "vehicle_type", -- If the incident is a taxi, this field describes the type of TLC vehicle.  
    "bbl", -- Borough Block and Lot, provided by geovalidation. Parcel number to identify the location of location of buildings and properties in NYC.
    "location", -- Combination of the geo based lat & long of the incident location 
    "latitude", -- Geo based Lat of the incident location 
    "taxi_pick_up_location", -- If the incident is identified as a taxi, this field displays the taxi pick up location 
    "city", -- City of the incident location provided by geovalidation. 
    "due_date", -- Date when responding agency is expected to update the SR.  This is based on the Complaint Type and internal Service Level Agreements (SLAs). 
    "resolution_description", -- Describes the last action taken on the SR by the responding agency.  May describe next or future steps.  
    "community_board", -- Provided by geovalidation. 
    "bridge_highway_direction", -- If the incident is identified as a Bridge/Highway, the direction where the issue took place would be displayed here. 
    "bridge_highway_name", -- If the incident is identified as a Bridge/Highway, the name will be displayed here. 
    "agency", -- Acronym of responding City Government Agency 
    "street_name", -- Street name of incident address provided by the submitter 
    "cross_street_2", -- Second Cross Street based on the geo validated incident location 
    "complaint_type", -- This is the first level of a hierarchy identifying the topic of the incident or condition. Complaint Type may have a corresponding Descriptor (below) or may stand alone.
    "y_coordinate_state_plane", -- Geo validated,  Y coordinate of the incident location.  
    "park_facility_name", -- If the incident location is a Parks Dept facility, the Name of the facility will appear here 
    "location_city",
    "address_type", -- Type of incident location information available. 
    "location_zip",
    "landmark", -- If the incident location is identified as a Landmark the name of the landmark will display here 
    "resolution_action_updated_date", -- Date when responding agency last updated the SR. 
    "intersection_street_2", -- Second intersecting street based on geo validated incident location 
    "location_type", -- Describes the type of location used in the address information  
    "unique_key", -- Unique identifier of a Service Request (SR) in the open data set 
    "descriptor", -- This is  associated to the Complaint Type, and provides further detail on the incident or condition. Descriptor values are dependent on the Complaint Type, and are not always required in SR.  
    "road_ramp", -- If the incident location was Bridge/Highway this column differentiates if the issue was on the Road or the Ramp. 
    "x_coordinate_state_plane", -- Geo validated, X coordinate of the incident location.  
    "longitude", -- Geo based Long of the incident location 
    "created_date", -- Date SR  was created 
    "closed_date", -- Date SR was closed by responding agency 
    "incident_address" -- House number of incident address provided by submitter. 
FROM
    "cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9:latest"."311_service_requests_from_2010_to_present"
LIMIT 100;

Connecting to the DDN is easy. All you need is an existing SQL client that can connect to Postgres. As long as you have a SQL client ready, you'll be able to query cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9 with SQL in under 60 seconds.

Query Your Local Engine

Install Splitgraph Locally
bash -c "$(curl -sL https://github.com/splitgraph/splitgraph/releases/latest/download/install.sh)"
 

Read the installation docs.

Splitgraph Cloud is built around Splitgraph Core (GitHub), which includes a local Splitgraph Engine packaged as a Docker image. Splitgraph Cloud is basically a scaled-up version of that local Engine. When you query the Data Delivery Network or the REST API, we mount the relevant datasets in an Engine on our servers and execute your query on it.

It's possible to run this engine locally. You'll need a Mac, Windows or Linux system to install sgr, and a Docker installation to run the engine. You don't need to know how to actually use Docker; sgrcan manage the image, container and volume for you.

There are a few ways to ingest data into the local engine.

For external repositories, the Splitgraph Engine can "mount" upstream data sources by using sgr mount. This feature is built around Postgres Foreign Data Wrappers (FDW). You can write custom "mount handlers" for any upstream data source. For an example, we blogged about making a custom mount handler for HackerNews stories.

For hosted datasets (like this repository), where the author has pushed Splitgraph Images to the repository, you can "clone" and/or "checkout" the data using sgr cloneand sgr checkout.

Cloning Data

Because cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9:latest is a Splitgraph Image, you can clone the data from Spltgraph Cloud to your local engine, where you can query it like any other Postgres database, using any of your existing tools.

First, install Splitgraph if you haven't already.

Clone the metadata with sgr clone

This will be quick, and does not download the actual data.

sgr clone cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9

Checkout the data

Once you've cloned the data, you need to "checkout" the tag that you want. For example, to checkout the latest tag:

sgr checkout cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9:latest

This will download all the objects for the latest tag of cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9 and load them into the Splitgraph Engine. Depending on your connection speed and the size of the data, you will need to wait for the checkout to complete. Once it's complete, you will be able to query the data like you would any other Postgres database.

Alternatively, use "layered checkout" to avoid downloading all the data

The data in cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9:latest is 0 bytes. If this is too big to download all at once, or perhaps you only need to query a subset of it, you can use a layered checkout.:

sgr checkout --layered cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9:latest

This will not download all the data, but it will create a schema comprised of foreign tables, that you can query as you would any other data. Splitgraph will lazily download the required objects as you query the data. In some cases, this might be faster or more efficient than a regular checkout.

Read the layered querying documentation to learn about when and why you might want to use layered queries.

Query the data with your existing tools

Once you've loaded the data into your local Splitgraph Engine, you can query it with any of your existing tools. As far as they're concerned, cityofnewyork-us/311-service-requests-from-2010-to-present-erm2-nwe9 is just another Postgres schema.

Related Documentation:

Loading...