Wind direction indicator

I'm writing a "wind direction" addition to my application and looking at the Position.Info.bearing. It says "The true north referenced heading in radians". Does that mean that 0 is north and  "heading 359" is -pi/180 and "heading 1" is pi/180? The simulator is outputting something in the range [-2, 2] so I'm having trouble guessing valid values what to expect. Apparently is not the "natural" radians in the range[0, 2*pi] starting from "east", going counterclockwise?

The Weather.currentConditions.windBearing is apparently in "degrees clockwise"-format so I'm trying to combine the rider heading and wind bearing to indicate where the wind is coming from...