Example #1
0
 public Task <Eew> GetEewInfo(DateTime time)
 => GetJsonObject <Eew>(WebApiUrlGenerator.Generate(WebApiUrlType.EewJson, time));
Example #2
0
 public Task <byte[]> GetEstShindoImageData(DateTime time)
 => GetBytes(WebApiUrlGenerator.Generate(WebApiUrlType.EstShindo, time));
Example #3
0
 public Task <byte[]> GetPSWaveImageData(DateTime time)
 => GetBytes(WebApiUrlGenerator.Generate(WebApiUrlType.PSWave, time));
Example #4
0
 public Task <byte[]> GetRealtimeImageData(DateTime time, RealTimeDataType dataType, bool isBehore = false)
 => GetBytes(WebApiUrlGenerator.Generate(WebApiUrlType.RealTimeImg, time, dataType, isBehore));