1. Two diagrams that explain the proposed governance process
2. An initial version of Plant UML text that can be used to generate a UML class diagram (also attached). This was generated from Sparx Enterprise Architect and with a little more work I should be able to get it to produce other relationships and attributes as needed (i.e., right now it is only outputting simple associations with unspecified direction; I just need to add the code to address the other relationship types and then include attributes). Now that we have proven that we can produce the output, we can consider if this is a useful format vs just embedding a *.png file (e.g., I think its main benefit would be to store these files within github and to embed the graphical version of the *.puml file on the CityDataModel page - this would allow a visual image on the CityDataModel while allowing Github to provide robust version control features and allow users to easily propose suggested edits to the text files). However, the master file of the data model should be kept in a real UML tool that can be used to ensure consistency of the entire model and can be used to produce output in multiple formats as needed.
@startuml
class Vehicle
Vehicle -- VehiclePosition
Vehicle -- VehicleSpeed
Vehicle -- VehicleHeading
Vehicle -- Entity
class RoadVehicle
class PhysicalEntity
PhysicalEntity -- Position
PhysicalEntity -- GeoLocation
PhysicalEntity -- SensedValue
class Entity
class Trailer
class Precipitation
Precipitation -- Precipitation
class Wheel
class Speed
Speed -- VehicleSpeed
class Heading
Heading -- VehicleHeading
class Acceleration
class YawRate
@enduml