Skip to content

Commit

Permalink
Add astopy units to earthquake avro schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Fireye04 committed Aug 7, 2024
1 parent 7d1f4f6 commit 8ea0b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sasquatchbackpack/schemas/usgs/earthquake.avsc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"namespace": "$namespace", "name": "$topic_name", "type": "record", "description": "Collection of earthquakes near the summit", "fields": [{"name": "timestamp", "type": "long"}, {"name": "id", "type": "string", "description": "unique earthquake id"}, {"name": "latitude", "type": "float", "units": "Degrees"}, {"name": "longitude", "type": "float", "units": "Degrees"}, {"name": "depth", "type": "float", "units": "Km"}, {"name": "magnitude", "type": "float", "units": "Richter Magnitudes"}]}
{"namespace": "$namespace", "name": "$topic_name", "type": "record", "description": "Collection of earthquakes near the summit", "fields": [{"name": "timestamp", "type": "long"}, {"name": "id", "type": "string", "description": "unique earthquake id"}, {"name": "latitude", "type": "float", "units": "degree"}, {"name": "longitude", "type": "float", "units": "degree"}, {"name": "depth", "type": "float", "units": "km"}, {"name": "magnitude", "type": "float", "units": "u.richter_magnitudes"}]}

0 comments on commit 8ea0b35

Please sign in to comment.