Change table ints to floats

This commit is contained in:
blackcoffeexbt 2023-10-25 11:38:02 +01:00 committed by GitHub
parent a28d9b83a9
commit f398bc939c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
107.md
View File

@ -128,7 +128,7 @@ Below is a non exhaustive list of data types that may be used in the content of
| temperature | float | celsius | 20.9 | Measures the ambient temperature | | temperature | float | celsius | 20.9 | Measures the ambient temperature |
| pressure | float | pascals | 1013 | Measures the atmospheric pressure | | pressure | float | pascals | 1013 | Measures the atmospheric pressure |
| location | array | decimal degrees | [51.5053, -0.08737] | Specifies coordinates in latitude and longitude | | location | array | decimal degrees | [51.5053, -0.08737] | Specifies coordinates in latitude and longitude |
| light | integer | lux | 500 | Measures the intensity of light | | light | float | lux | 500 | Measures the intensity of light |
| humidity | float | percentage | 45.5 | Measures the moisture level in the air | | humidity | float | percentage | 45.5 | Measures the moisture level in the air |
| rain | boolean | millimeters | true | Detects if it's raining | | rain | boolean | millimeters | true | Detects if it's raining |
| moisture | float | percentage | 32.2 | Measures the moisture content in materials | | moisture | float | percentage | 32.2 | Measures the moisture content in materials |
@ -136,6 +136,6 @@ Below is a non exhaustive list of data types that may be used in the content of
| gas_concentration | float | ppm | 400 | Measures the concentration of a specific gas in the air | | gas_concentration | float | ppm | 400 | Measures the concentration of a specific gas in the air |
| uv_index | float | index | 5.5 | Measures the strength of sunburn-producing ultraviolet radiation | | uv_index | float | index | 5.5 | Measures the strength of sunburn-producing ultraviolet radiation |
| wind_speed | float | m/s | 10.2 | Measures the speed of wind | | wind_speed | float | m/s | 10.2 | Measures the speed of wind |
| wind_direction | int | degrees | 30 | Indicates the direction from which the wind is coming | | wind_direction | float | degrees | 30 | Indicates the direction from which the wind is coming |
| sound_intensity | float | decibels | 65.5 | Measures the loudness or amplitude of sound | | sound_intensity | float | decibels | 65.5 | Measures the loudness or amplitude of sound |