Wind
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Rappresenta un insieme di proprietà del vento.
Campi |
direction |
object (WindDirection )
La direzione del vento, l'angolo da cui proviene.
|
speed |
object (WindSpeed )
La velocità del vento.
|
gust |
object (WindSpeed )
La raffica di vento (aumento improvviso della velocità del vento).
|
WindDirection
Rappresenta la direzione da cui proviene il vento.
Campi |
cardinal |
enum (CardinalDirection )
Il codice che rappresenta la direzione cardinale da cui soffia il vento.
|
degrees |
integer
La direzione del vento in gradi (valori da 0 a 360).
|
CardinalDirection
Rappresenta una direzione cardinale (incluse le direzioni ordinali).
Enum |
CARDINAL_DIRECTION_UNSPECIFIED |
La direzione cardinale non è specificata. |
NORTH |
La direzione cardinale nord. |
NORTH_NORTHEAST |
La direzione intercardinale secondaria nord-nordest. |
NORTHEAST |
La direzione intercardinale nord-est. |
EAST_NORTHEAST |
La direzione intercardinale secondaria est-nord-est. |
EAST |
La direzione cardinale est. |
EAST_SOUTHEAST |
La direzione intercardinale secondaria est-sud-est. |
SOUTHEAST |
La direzione intercardinale sud-est. |
SOUTH_SOUTHEAST |
La direzione intercardinale secondaria sud-sudest. |
SOUTH |
La direzione cardinale sud. |
SOUTH_SOUTHWEST |
La direzione intercardinale secondaria sud-sud-ovest. |
SOUTHWEST |
La direzione intercardinale sud-ovest. |
WEST_SOUTHWEST |
La direzione intercardinale secondaria ovest-sudovest. |
WEST |
La direzione cardinale ovest. |
WEST_NORTHWEST |
La direzione intercardinale secondaria ovest-nord-ovest. |
NORTHWEST |
La direzione intercardinale nord-ovest. |
NORTH_NORTHWEST |
La direzione intercardinale secondaria nord-nord-ovest. |
WindSpeed
Rappresenta la velocità del vento.
Rappresentazione JSON |
{
"unit": enum (SpeedUnit ),
"value": number
} |
Campi |
unit |
enum (SpeedUnit )
Il codice che rappresenta l'unità utilizzata per misurare la velocità del vento.
|
value |
number
Il valore della velocità del vento.
|
SpeedUnit
Rappresenta l'unità utilizzata per misurare la velocità.
Enum |
SPEED_UNIT_UNSPECIFIED |
L'unità di misura della velocità non è specificata. |
KILOMETERS_PER_HOUR |
La velocità viene misurata in chilometri all'ora. |
MILES_PER_HOUR |
La velocità viene misurata in miglia all'ora. |
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-08-29 UTC.
[null,null,["Ultimo aggiornamento 2025-08-29 UTC."],[],[],null,["# Wind\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [WindDirection](#WindDirection)\n - [JSON representation](#WindDirection.SCHEMA_REPRESENTATION)\n- [CardinalDirection](#CardinalDirection)\n- [WindSpeed](#WindSpeed)\n - [JSON representation](#WindSpeed.SCHEMA_REPRESENTATION)\n- [SpeedUnit](#SpeedUnit)\n\nRepresents a set of wind properties.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"direction\": { object (/maps/documentation/weather/reference/rest/v1/Wind#WindDirection) }, \"speed\": { object (/maps/documentation/weather/reference/rest/v1/Wind#WindSpeed) }, \"gust\": { object (/maps/documentation/weather/reference/rest/v1/Wind#WindSpeed) } } ``` |\n\n| Fields ||\n|-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `direction` | `object (`[WindDirection](/maps/documentation/weather/reference/rest/v1/Wind#WindDirection)`)` The direction of the wind, the angle it is coming from. |\n| `speed` | `object (`[WindSpeed](/maps/documentation/weather/reference/rest/v1/Wind#WindSpeed)`)` The speed of the wind. |\n| `gust` | `object (`[WindSpeed](/maps/documentation/weather/reference/rest/v1/Wind#WindSpeed)`)` The wind gust (sudden increase in the wind speed). |\n\nWindDirection\n-------------\n\nRepresents the direction from which the wind originates.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"cardinal\": enum (/maps/documentation/weather/reference/rest/v1/Wind#CardinalDirection), \"degrees\": integer } ``` |\n\n| Fields ||\n|------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `cardinal` | `enum (`[CardinalDirection](/maps/documentation/weather/reference/rest/v1/Wind#CardinalDirection)`)` The code that represents the cardinal direction from which the wind is blowing. |\n| `degrees` | `integer` The direction of the wind in degrees (values from 0 to 360). |\n\nCardinalDirection\n-----------------\n\nRepresents a cardinal direction (including ordinal directions).\n\n| Enums ||\n|----------------------------------|--------------------------------------------------------|\n| `CARDINAL_DIRECTION_UNSPECIFIED` | The cardinal direction is unspecified. |\n| `NORTH` | The north cardinal direction. |\n| `NORTH_NORTHEAST` | The north-northeast secondary intercardinal direction. |\n| `NORTHEAST` | The northeast intercardinal direction. |\n| `EAST_NORTHEAST` | The east-northeast secondary intercardinal direction. |\n| `EAST` | The east cardinal direction. |\n| `EAST_SOUTHEAST` | The east-southeast secondary intercardinal direction. |\n| `SOUTHEAST` | The southeast intercardinal direction. |\n| `SOUTH_SOUTHEAST` | The south-southeast secondary intercardinal direction. |\n| `SOUTH` | The south cardinal direction. |\n| `SOUTH_SOUTHWEST` | The south-southwest secondary intercardinal direction. |\n| `SOUTHWEST` | The southwest intercardinal direction. |\n| `WEST_SOUTHWEST` | The west-southwest secondary intercardinal direction. |\n| `WEST` | The west cardinal direction. |\n| `WEST_NORTHWEST` | The west-northwest secondary intercardinal direction. |\n| `NORTHWEST` | The northwest intercardinal direction. |\n| `NORTH_NORTHWEST` | The north-northwest secondary intercardinal direction. |\n\nWindSpeed\n---------\n\nRepresents the speed of the wind.\n\n| JSON representation |\n|----------------------------------------------------------------------------------------------------------|\n| ``` { \"unit\": enum (/maps/documentation/weather/reference/rest/v1/Wind#SpeedUnit), \"value\": number } ``` |\n\n| Fields ||\n|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `unit` | `enum (`[SpeedUnit](/maps/documentation/weather/reference/rest/v1/Wind#SpeedUnit)`)` The code that represents the unit used to measure the wind speed. |\n| `value` | `number` The value of the wind speed. |\n\nSpeedUnit\n---------\n\nRepresents the unit used to measure speed.\n\n| Enums ||\n|--------------------------|-----------------------------------------------|\n| `SPEED_UNIT_UNSPECIFIED` | The speed unit is unspecified. |\n| `KILOMETERS_PER_HOUR` | The speed is measured in kilometers per hour. |\n| `MILES_PER_HOUR` | The speed is measured in miles per hour. |"]]