Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Send USGS Data to Kafka #7

Merged
merged 17 commits into from
Jun 26, 2024
30 changes: 30 additions & 0 deletions test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"namespace": "lsst.example",
Fireye04 marked this conversation as resolved.
Show resolved Hide resolved
"type": "record",
"name": "usgs-earthquake-data",
"description": "Collection of earthquakes near the summit",
"fields": [
{
"name": "timestamp",
"type": "long"
Fireye04 marked this conversation as resolved.
Show resolved Hide resolved
},
{
"name": "latitude",
"type": "float"
},
{
"name": "longitude",
"type": "float"
},
{
"name": "distance",
"type": "float",
"description": "Distance from the summit",
"units": "Km"
},
{
"name": "magnitude",
"type": "float"
}
]
}