I've got the following code:
data = Import["~/data.csv", {"Data", All, {1, 2, 3, 7}}];
dt = Table[{
Quantity[
UnixTime[FromDateString[data[[i, 1]] <> " " <> data[[i, 2]]]],
"Seconds"],
Quantity[data[[i, 3]], "Hertz"],
data[[i, 4]]
}, {i, Length[data]}
];
ListDensityPlot[dt, ImageSize -> Large]
...which produces the following chart:

Here's the problem: I would like to format the Y axis to not use scientific notation, and the X axis to use a date/time string based on the value (I had to use UnixTime
on this data set to convert the date/time to an integer because keeping it as a Date object would result in a blank graph).
(In case you're wondering, this is processing the output of rtl_power
showing possible available signals between 24 MHz and 1.7 GHz on a Software-Defined Radio.)