This Airbyte Connector uses the HTTP API provided by the Iowa DOT in Python. With this connector, data is easily pulled from Iowa DOT and loaded into the ViaWarn Postgres database, and are available in the ViaWarn app.
The connector is built on top of the Airbyte open-source platform, which provides a standardized way of integrating data sources and destinations. It is designed to be simple and easy to use. The required configuration is show in the the sections below.
The pulled resources from the IA 511 API are the following:
After creating the Airbyte connector template, modify the next files to retrieve data from Iowa DOT .
documentationUrl: https://data.iowadot.gov/search?q=511&type=feature%20service
connectionSpecification:
$schema: http://json-schema.org/draft-07/schema#
title: VIAWARN US IA DOT - Spec
type: object
The config file holds an empty directory because this API is FREE and does not require any other parameter.
config.json:
{}
{
"streams":
[
{
"stream": {
"name": [STREAM_NAME],
"json_schema": {},
"supported_sync_modes": ["full_refresh"]
},
"sync_mode": "full_refresh", "destination_sync_mode": "overwrite"
}
]
}
Location: source-viawarn-us-ia-dot/source.py
Pagination is not provided by this API.
return None
return a None
It is a placeholder to store the request.response object and constructs the appropriate mapping object for each parsed element by each Stream class.
yields an empty dictionary.
String
Unique field required in the stream associate to each output record.
String
subdomain and paramters to pass into the url
return a string
Definition of how a response is parsed.
Set a definition to: primary key and ewkt fields.
return an iterable containing each record in the response.
Set up a test to verify the connection between the connector and the API. This test should return two variables: the first one is a boolean that indicates the status of the connection, while the second one shows a log message if the connection fails.
return True, None