brla-gov/cdc-places-data-by-zip-code-522a-c6dn
Icon for Socrata external plugin

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 cdc_places_data_by_zip_code table in this repository, by referencing it like:

"brla-gov/cdc-places-data-by-zip-code-522a-c6dn:latest"."cdc_places_data_by_zip_code"

or in a full query, like:

SELECT
    ":id", -- Socrata column ID
    "geolocation", -- Latitude, Longitude of the ZIP Code Tabulation Area centroid (Format: Point(Longitude Latitude))
    "teethlost_crudeprev", -- Model-based estimate for crude prevalence of all teeth lost among adults aged >=65 years, 2019
    "stroke_crudeprev", -- Model-based estimate for crude prevalence of stroke among adults aged >=18 years, 2019
    "sleep_crudeprev", -- Model-based estimate for crude prevalence of sleeping less than 7 hours among adults aged >=18 years, 2019
    "obesity_crudeprev", -- Model-based estimate for crude prevalence of obesity among adults aged >=18 years, 2019
    "mhlth_crudeprev", -- Model-based estimate for crude prevalence of mental health not good for >=14 days among adults aged >=18 years, 2019
    "mammouse_crudeprev", -- Model-based estimate for crude prevalence of mammography use among women aged 50–74 years, 2019
    "kidney_crudeprev", -- Model-based estimate for crude prevalence of chronic kidney disease among adults aged >=18 years, 2019
    "highchol_crudeprev", -- Model-based estimate for crude prevalence of high cholesterol among adults aged >=18 years who have been screened in the past 5 years, 2019
    "general_health", -- Model-based estimate for crude prevalence of fair or poor health among adults aged >=18 years, 2019
    "diabetes_crudeprev", -- Model-based estimate for crude prevalence of diagnosed diabetes among adults aged >=18 years, 2019
    "depression", -- Model-based estimate for crude prevalence of depression among adults aged >=18 years, 2019
    "dental_crudeprev", -- Model-based estimate for crude prevalence of visits to dentist or dental clinic among adults aged >=18 years, 2019
    "csmoking_crudeprev", -- Model-based estimate for crude prevalence of current smoking among adults aged >=18 years, 2019
    "corew_crudeprev", -- Model-based estimate for crude prevalence of older adult women aged >=65 years who are up to date on a core set of clinical preventive services: Flu shot past year, PPV shot ever, Colorectal cancer screening, and Mammogram past 2 years, 2019
    "copd_crudeprev", -- Model-based estimate for crude prevalence of chronic obstructive pulmonary disease among adults aged >=18 years, 2019
    "checkup_crudeprev", -- Model-based estimate for crude prevalence of visits to doctor for routine checkup within the past year among adults aged >=18 years, 2019
    "chd_crudeprev", -- Model-based estimate for crude prevalence of coronary heart disease among adults aged >=18 years, 2019
    "casthma_crudeprev", -- Model-based estimate for crude prevalence of current asthma among adults aged >=18 years, 2019
    "cancer_crudeprev", -- Model-based estimate for crude prevalence of cancer (excluding skin cancer) among adults aged >=18 years, 2019
    "bpmed_crudeprev", -- Model-based estimate for crude prevalence of taking medicine for high blood pressure control among adults aged >=18 years with high blood pressure, 2019
    "bphigh_crudeprev", -- Model-based estimate for crude prevalence of high blood pressure among adults aged >=18 years, 2019
    "arthritis_crudeprev", -- Model-based estimate for crude prevalence of arthritis among adults aged >=18 years, 2019
    "totalpopulation", -- Total population of Census 2010
    "zcta5", -- ZIP Code Tabulation Area (ZCTA)
    "lpa_crudeprev", -- Model-based estimate for crude prevalence of no leisure-time physical activity among adults aged >=18 years, 2019
    "corem_crudeprev", -- Model-based estimate for crude prevalence of older adult men aged >=65 years who are up to date on a core set of clinical preventive services: Flu shot past year, PPV shot ever, Colorectal cancer screening, 2019
    "colon_screen_crudeprev", -- Model-based estimate for crude prevalence of fecal occult blood test, sigmoidoscopy, or colonoscopy among adults aged 50–75 years, 2019
    "cervical_crudeprev", -- Model-based estimate for crude prevalence of cervical cancer screening among adult women aged 21–65 years, 2019
    "binge_crudeprev", -- Model-based estimate for crude prevalence of binge drinking among adults aged >=18 years, 2019
    "phlth_crudeprev", -- Model-based estimate for crude prevalence of physical health not good for >=14 days among adults aged >=18 years, 2019
    "cholscreen_crudeprev", -- Model-based estimate for crude prevalence of cholesterol screening among adults aged >=18 years, 2019
    "access2_crudeprev", -- Model-based estimate for crude prevalence of current lack of health insurance among adults aged 18-64 years, 2019
    ":@computed_region_uvg4_nwq8", -- This column was automatically created in order to record in what polygon from the dataset 'Neighborhoods_from_qfmj_2fwi' (uvg4-nwq8) the point in column 'geolocation' is located.  This enables the creation of region maps (choropleths) in the visualization canvas and data lens.
    ":@computed_region_jrqt_zu77", -- This column was automatically created in order to record in what polygon from the dataset 'ZIP Codes_from_tqy7_429i' (jrqt-zu77) the point in column 'geolocation' is located.  This enables the creation of region maps (choropleths) in the visualization canvas and data lens.
    ":@computed_region_ntzg_c2w3" -- This column was automatically created in order to record in what polygon from the dataset 'Council Districts_2021_from_d8sa-f3ec' (ntzg-c2w3) the point in column 'geolocation' is located.  This enables the creation of region maps (choropleths) in the visualization canvas and data lens.
FROM
    "brla-gov/cdc-places-data-by-zip-code-522a-c6dn:latest"."cdc_places_data_by_zip_code"
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 brla-gov/cdc-places-data-by-zip-code-522a-c6dn with SQL in under 60 seconds.

This repository is an "external" repository. That means it's hosted elsewhere, in this case at data.brla.gov. When you querybrla-gov/cdc-places-data-by-zip-code-522a-c6dn:latest on the DDN, we "mount" the repository using the socrata mount handler. The mount handler proxies your SQL query to the upstream data source, translating it from SQL to the relevant language (in this case SoQL).

We also cache query responses on the DDN, but we run the DDN on multiple nodes so a CACHE_HIT is only guaranteed for subsequent queries that land on the same node.

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 (like this repository), 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, where the author has pushed Splitgraph Images to the repository, you can "clone" and/or "checkout" the data using sgr cloneand sgr checkout.

Mounting Data

This repository is an external repository. It's not hosted by Splitgraph. It is hosted by data.brla.gov, and Splitgraph indexes it. This means it is not an actual Splitgraph image, so you cannot use sgr clone to get the data. Instead, you can use the socrata adapter with the sgr mount command. Then, if you want, you can import the data and turn it into a Splitgraph image that others can clone.

First, install Splitgraph if you haven't already.

Mount the table with sgr mount

sgr mount socrata \
  "brla-gov/cdc-places-data-by-zip-code-522a-c6dn" \
  --handler-options '{
    "domain": "data.brla.gov",
    "tables": {
        "cdc_places_data_by_zip_code": "522a-c6dn"
    }
}'

That's it! Now you can query the data in the mounted table like any other Postgres table.

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, brla-gov/cdc-places-data-by-zip-code-522a-c6dn is just another Postgres schema.