### Trigger Channels
+Only these can be used in rule triggers as shown below. Note that they have their own offset configurations that are independent from offsets configured on the start or end times of e.g. the `rise` or `set` channels.
+
- **thing** `sun`
- **group** `rise, set, noon, night, morningNight, astroDawn, nauticDawn, civilDawn, astroDusk, nauticDusk, civilDusk, eveningNight, daylight`
- **event** `START, END`
### getElevation(timeStamp)
-Retrieves the elevation (QuantityType<Angle>) of the sun at the requested instant.
+Retrieves the elevation (QuantityType\<Angle\>) of the sun at the requested instant.
Thing method applies to Sun and Moon.
- `timeStamp` (ZonedDateTime) - defaulted to now() if null.
### getAzimuth(timeStamp)
-Retrieves the azimuth (QuantityType<Angle>) of the sun at the requested instant.
+Retrieves the azimuth (QuantityType\<Angle\>) of the sun at the requested instant.
Thing method applies to Sun and Moon.
- `timeStamp` (ZonedDateTime) - defaulted to now() if null.
### getTotalRadiation(timeStamp)
-Retrieves the total radiation (QuantityType<Intensity>) of the sun at the requested instant.
+Retrieves the total radiation (QuantityType\<Intensity\>) of the sun at the requested instant.
Thing method only applies to Sun thing type.
```java