-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue 137: added
Transform.CurrentRawRecord()
for caller of omn…
- Loading branch information
Showing
19 changed files
with
3,606 additions
and
3,314 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
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
84 changes: 48 additions & 36 deletions
84
extensions/omniv21/samples/csv/.snapshots/Test1_Weather_Data_CSV
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 |
---|---|---|
@@ -1,44 +1,56 @@ | ||
[ | ||
{ | ||
"date": "2019-01-31T12:34:56-08:00", | ||
"high_temperature_fahrenheit": 50.9, | ||
"latitude": 37.7749, | ||
"longitude": 122.4194, | ||
"low_temperature_fahrenheit": 30.2, | ||
"note": "note 1", | ||
"uv_index": [ | ||
"12", | ||
"4", | ||
"6" | ||
], | ||
"wind": "North 20.5 mph" | ||
"RawRecord": "{\"DATE\":\"2019/01/31T12:34:56-0800\",\"HIGH_TEMP_C\":\"10.5\",\"LAT\":\"37.7749\",\"LONG\":\"122.4194\",\"LOW_TEMP_F\":\"30.2\",\"NOTE\":\"note 1\",\"UV_INDEX\":\"12/4/6\",\"WIND_DIR\":\"N\",\"WIND_SPEED_KMH\":\"33\"}", | ||
"RawRecordHash": "24a341e6-bdac-3319-ac76-7354d42a7402", | ||
"TransformedRecord": { | ||
"date": "2019-01-31T12:34:56-08:00", | ||
"high_temperature_fahrenheit": 50.9, | ||
"latitude": 37.7749, | ||
"longitude": 122.4194, | ||
"low_temperature_fahrenheit": 30.2, | ||
"note": "note 1", | ||
"uv_index": [ | ||
"12", | ||
"4", | ||
"6" | ||
], | ||
"wind": "North 20.5 mph" | ||
} | ||
}, | ||
{ | ||
"date": "2020-07-31T01:23:45-05:00", | ||
"high_temperature_fahrenheit": 102.2, | ||
"latitude": 32.7767, | ||
"longitude": 96.797, | ||
"low_temperature_fahrenheit": 95, | ||
"note": "' note with bad quotes", | ||
"uv_index": [ | ||
"9", | ||
"5", | ||
"6" | ||
], | ||
"wind": "South East 4.97 mph" | ||
"RawRecord": "{\"DATE\":\"2020/07/31T01:23:45-0500\",\"HIGH_TEMP_C\":\"39\",\"LAT\":\"32.7767\",\"LONG\":\"96.7970\",\"LOW_TEMP_F\":\"95\",\"NOTE\":\"' note with bad quotes\",\"UV_INDEX\":\"9/5/6\",\"WIND_DIR\":\"SE\",\"WIND_SPEED_KMH\":\"8\"}", | ||
"RawRecordHash": "dba160be-3cfe-3efc-a891-f76461c37c08", | ||
"TransformedRecord": { | ||
"date": "2020-07-31T01:23:45-05:00", | ||
"high_temperature_fahrenheit": 102.2, | ||
"latitude": 32.7767, | ||
"longitude": 96.797, | ||
"low_temperature_fahrenheit": 95, | ||
"note": "' note with bad quotes", | ||
"uv_index": [ | ||
"9", | ||
"5", | ||
"6" | ||
], | ||
"wind": "South East 4.97 mph" | ||
} | ||
}, | ||
{ | ||
"date": "2030-11-22T20:18:00-05:00", | ||
"high_temperature_fahrenheit": 59.9, | ||
"latitude": 39.0997, | ||
"longitude": 94.5786, | ||
"low_temperature_fahrenheit": 17, | ||
"note": "note 3", | ||
"uv_index": [ | ||
"10", | ||
"3", | ||
"4" | ||
], | ||
"wind": "Tornado 111.84 mph" | ||
"RawRecord": "{\"DATE\":\"2030/11/22T20:18:00-0500\",\"HIGH_TEMP_C\":\"15.5\",\"LAT\":\"39.0997\",\"LONG\":\"94.5786\",\"LOW_TEMP_F\":\"17\",\"NOTE\":\"note 3\",\"UV_INDEX\":\"10/3/4\",\"WIND_DIR\":\"X\",\"WIND_SPEED_KMH\":\"180\"}", | ||
"RawRecordHash": "fcdd707d-1ed4-3641-aca3-b0df568b1084", | ||
"TransformedRecord": { | ||
"date": "2030-11-22T20:18:00-05:00", | ||
"high_temperature_fahrenheit": 59.9, | ||
"latitude": 39.0997, | ||
"longitude": 94.5786, | ||
"low_temperature_fahrenheit": 17, | ||
"note": "note 3", | ||
"uv_index": [ | ||
"10", | ||
"3", | ||
"4" | ||
], | ||
"wind": "Tornado 111.84 mph" | ||
} | ||
} | ||
] |
Oops, something went wrong.