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

Update README.md (s/standardName/standard_name) #73

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions datastore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,14 +249,14 @@ $ grpcurl -d '{"attrs": ["standard_name"]}' -plaintext -proto protobuf/datastore
{
"combos": [
{
"standardName": "air_pressure_at_sea_level"
"standard_name": "air_pressure_at_sea_level"
}
]
},
{
"combos": [
{
"standardName": "air_temperature"
"standard_name": "air_temperature"
}
]
},
Expand All @@ -273,15 +273,15 @@ $ grpcurl -d '{"attrs": ["platform", "standard_name"]}' -plaintext -proto protob
"combos": [
{
"platform": "06201",
"standardName": "air_pressure_at_sea_level"
"standard_name": "air_pressure_at_sea_level"
}
]
},
{
"combos": [
{
"platform": "06201",
"standardName": "air_temperature"
"standard_name": "air_temperature"
}
]
},
Expand All @@ -299,14 +299,14 @@ $ grpcurl -d '{"attrs": ["standard_name"], "include_instances": true}' -plaintex
{
"title": "Air Pressure at Sea Level 1 Min Average",
"platform": "06208",
"standardName": "air_pressure_at_sea_level",
"standard_name": "air_pressure_at_sea_level",
"unit": "hPa",
"instrument": "pp"
},
{
"title": "Air Pressure at Sea Level 1 Min Average",
"platform": "06348",
"standardName": "air_pressure_at_sea_level",
"standard_name": "air_pressure_at_sea_level",
"unit": "hPa",
"instrument": "pp"
},
Expand All @@ -324,14 +324,14 @@ $ grpcurl -d '{"attrs": ["platform", "standard_name"], "include_instances": true
{
"title": "Air Temperature Minimum last 12 Hours",
"platform": "06201",
"standardName": "air_temperature",
"standard_name": "air_temperature",
"unit": "degrees Celsius",
"instrument": "Tn12"
},
{
"title": "Air Temperature Minimum last 14 Hours",
"platform": "06201",
"standardName": "air_temperature",
"standard_name": "air_temperature",
"unit": "degrees Celsius",
"instrument": "Tn14"
},
Expand Down