Tools for working with UTrans data
This is a Python CLI tool for processing county-submitted data prior to ingestion into UTrans. See its README for installation, usage, and release instructions.
This is an ArcGIS Pro Add-in for working with UTrans data. See its README for installation, usage, and release instructions.
The following diagram shows the flow of data from the county into UTrans.
flowchart TD
subgraph CLI
direction TB
updateFeatureClass@{ shape: lean-r , label: "Update Feature Class (County Data)"} --> get-recent-edits
baseFeatureClass@{ shape: lean-r , label: "Base Feature Class (Previously Obtained Data)"} --> get-recent-edits
get-recent-edits --> RoadCenterline_Recents@{ shape: lean-r}
RoadCenterline_Recents --> etl
countyBoundaries@{ shape: lean-r, label: "County Boundaries" } --> etl
etl --> etlOutput@{ shape: lean-r , label: "county_etl_YYYYMMDD"}
end