-
Notifications
You must be signed in to change notification settings - Fork 453
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first version of Noise Dashboard * Added noise analysis class and merge class for noise data. Add support for avro files * improved generated avro files * update noise analysis * clean code * make csv code deprecated * implement fixedColors for MapPlot * added breakpoints and colors to GridMap * added breakpoints and colors to GridMap * Added avro file * Added avro file * realize feedback * realize feedback --------- Co-authored-by: rakow <[email protected]>
- Loading branch information
Showing
18 changed files
with
1,858 additions
and
433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"namespace": "org.matsim.application.avro", | ||
"type": "record", | ||
"name": "XYTData", | ||
"fields": [ | ||
{ | ||
"name": "crs", | ||
"type": "string", | ||
"doc": "Coordinate reference system" | ||
}, | ||
{ | ||
"name": "xCoords", | ||
"doc": "List of x coordinates", | ||
"type": { | ||
"type": "array", | ||
"items": "float" | ||
} | ||
}, | ||
{ | ||
"name": "yCoords", | ||
"doc": "List of y coordinates", | ||
"type": { | ||
"type": "array", | ||
"items": "float" | ||
} | ||
}, | ||
{ | ||
"name": "timestamps", | ||
"doc": "List of timestamps in seconds", | ||
"type": { | ||
"type": "array", | ||
"items": "int" | ||
} | ||
}, | ||
{ | ||
"name": "data", | ||
"doc": "XYT data for each dataset. The key is the name, the data is stored in one chunk of data.", | ||
"type": { | ||
"type": "map", | ||
"values": { | ||
"type": "array", | ||
"items": "float" | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.