depthAccuracy property

String get depthAccuracy

深さの精度地

Implementation

String get depthAccuracy {
  switch (depth) {
    case 0:
      return '不明';
    case 1:
      return 'P波/S波レベル越え、IPF法(1点)、または「仮定震源要素」の場合';
    case 2:
      return 'IPF法(2点)';
    case 3:
      return 'IPF法(3点/4点)';
    case 4:
      return 'IPF法(5点以上)';
    case 5:
      return '防災科研システム(4点以下、または精度情報なし)';
    case 6:
      return '防災科研システム(5点以上)(Hi-netデータ)';
    case 7:
      return 'EPOS(海域[観測網外])';
    case 8:
      return 'EPOS(内陸[観測網内])';
    default:
      throw Exception('深さの精度が不正な値です');
  }
}