HD radio Station Information Service (SIS) data.
Convenience init to SISData
- (nonnull instancetype)
initWithStationShortName:(nullable NSString *)stationShortName
stationIDNumber:(nullable SDLStationIDNumber *)id
stationLongName:(nullable NSString *)stationLongName
stationLocation:(nullable SDLGPSData *)stationLocation
stationMessage:(nullable NSString *)stationMessage;
init(stationShortName: String?, stationIDNumber id: SDLStationIDNumber?, stationLongName: String?, stationLocation: SDLGPSData?, stationMessage: String?)
Identifies the 4-alpha-character station call sign
A SDLStationIDNumber
Identifies the station call sign or other identifying
Provides the 3-dimensional geographic station location
May be used to convey textual information of general interest
An SDLSISData object
@abstract Identifies the 4-alpha-character station call sign plus an optional (-FM) extension
Optional, String, minLength: 4characters maxlength: 7characters
@property (nonatomic, strong, nullable) NSString *stationShortName;
var stationShortName: String? { get set }
@abstract Used for network Application. Consists of Country Code and FCC Facility ID.
Optional, SDLStationIDNumber type
@property (nonatomic, strong, nullable) SDLStationIDNumber *stationIDNumber;
var stationIDNumber: SDLStationIDNumber? { get set }
@abstract Identifies the station call sign or other identifying information in the long format.
Optional, String, minLength: 0characters maxlength: 56characters
@property (nonatomic, strong, nullable) NSString *stationLongName;
var stationLongName: String? { get set }
@abstract Provides the 3-dimensional geographic station location
Optional, SDLGPSData type
@property (nonatomic, strong, nullable) SDLGPSData *stationLocation;
var stationLocation: SDLGPSData? { get set }
@abstract May be used to convey textual information of general interest to the consumer such as weather forecasts or public service announcements.
Optional, String, minLength: 0characters maxlength: 56characters
@property (nonatomic, strong, nullable) NSString *stationMessage;
var stationMessage: String? { get set }