XY Plots without Time as X

XY Plots without Time as X

@Graeme Rae

I have a bucket with 3 variables. Temperature, Conductivity and Depth, all recorded at the same time (or close enough). I need to be able to plot X-Axis: Temperature, Y-Axis: Depth, with 0 at the top and increasing down) Here’s an example of something similar:

ctd_profile

My data is inserted with a ‘serie’ tag that ties the data together (

2021-11-09 14:52:02: Raw payload: {"variable":"depth","unit":"m","serie":31,"value":"16.232009272342100"}
2021-11-09 14:52:02: Bucket [87c6]: 1 Data Added
------
2021-11-09 14:52:02: [POST] HTTP Request: From: 24.25.220.71 [python-requests/2.22.0] - Content-Type: application/json - Token Ending: 9c326
2021-11-09 14:52:02: Raw payload: {"variable":"water_temperature","unit":"C","serie":31,"value":"9.0998270311496300"}
2021-11-09 14:52:02: Bucket [87c6]: 1 Data Added

But I am unable to plot the data as I wish. I tried following along here which seems to be similar solution, but I have a feeling the interface has changed significantly since this was written about 2 years ago.

Any suggestions or pointers welcome!