convert_speed
適用対象: ✅Microsoft Fabric✅Azure データ エクスプローラー✅Azure Monitor✅Microsoft Sentinel
速度の値を 1 つの単位から別の単位に変換します。
構文
convert_speed(
value,
from,
to)
構文規則について詳しく知る。
パラメーター
件名 | タイプ | Required | Description |
---|---|---|---|
value | real |
✔️ | 変換する値。 |
from | string |
✔️ | 換算される単位。 使用可能な値については、「 変換単位」を参照してください。 |
to | string |
✔️ | 換算する単位。 使用可能な値については、「 変換単位」を参照してください。 |
変換単位
- CentimeterPerHour
- CentimeterPerMinute
- CentimeterPerSecond
- DecimeterPerMinute
- DecimeterPerSecond
- FootPerHour
- フィート毎分
- フィート毎秒
- InchPerHour
- InchPerMinute
- InchPerSecond
- KmPerHour
- KmPerMinute
- KmPerSecond
- 結び目
- MeterPerHour
- MeterPerMinute
- MeterPerSecond
- MicrometerPerMinute
- MicrometerPerSecond
- MilePerHour
- MmPerHour
- MmPerMinute
- MmPerSecond
- NanometerPerMinute
- NanometerPerSecond
- UsSurveyFootPerHour
- UsSurveyFootPerMinute
- UsSurveyFootPerSecond
- YardPerHour
- YardPerMinute
- YardPerSecond
返品
ある速度単位から別の速度単位に変換された入力値を返します。 無効な単位は null
を返します。
例
print result = convert_speed(1.2, 'MeterPerSecond', 'CentimeterPerHour')
出力
結果 |
---|
432000 |