-
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.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 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
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" | ||
} | ||
} | ||
} | ||
] | ||
} |