History

Current version

3/8/2026, 10:07:08 PM

Imported from wiki

by tmascroft · 3/8/2026, 9:33:01 PM

Weather Station

## Kit (Weather Station)

:::infobox
| Property | Value |
|----------|-------|
| Stacks | 1 |
| Prefab Hash | 337505889 |
| Prefab Name | ItemKitWeatherStation |
| Slot Class | SlotClass.None |
| Sorting Class | SortingClass.Default |
| Recipe Machine | Electronics Printer |
| Recipe Cost | 8g [Iron](/wiki/iron), 3g [Gold](/wiki/gold), 5g [Copper](/wiki/copper), 3g [Steel](/wiki/steel) |
| Constructs | [Weather Station](/wiki/weather-station) |

![Kit (Weather Station)](ItemKitWeatherStation.png)
:::
## Weather Station

:::infobox
| Property | Value |
|----------|-------|
| Prefab Hash | 1997212478 |
| Prefab Name | StructureWeatherStation |
| Power Usage | 10W |
| Placed With | [Kit (Weather Station)](/wiki/kit-weather-station) |
| Placed On | Small Grid |

![Weather Station](Weather_Station.jpg)
:::

### Construction Steps

| Step | Tool | Item |
|---|---|---|
| 1 | [Welding Torch](/wiki/welding-torch) | 3 x [Plastic Sheets](/wiki/plastic-sheets) |

### Deconstruction Steps

| Step | Tool | Recovered Item |
|---|---|---|
| 1 | [Hand Drill](/wiki/hand-drill) | [Kit (Weather Station)](/wiki/kit-weather-station) |
| 2 | [Angle Grinder](/wiki/angle-grinder) | 3 x [Plastic Sheets](/wiki/plastic-sheets) |


## Description

The **Weather Station** waits for and warns about [weather](/wiki/ingame-guides-weather) events such as [Storms](/wiki/storm).

When turned on, the light on the Weather Station starts glowing green when there is no event incoming. If there is an event incoming, it lights up yellow, or red if an event is already occurring.

It will not do anything when placed indoors, but will not flash an error, instead lighting up green in all cases.

Even if not powered, the small Wind turbine on its top will be able to spin. So even without power, it can warn you. (The logic output will not work if not powered!)

## Data Network

### Mode Values

These lists the values and meanings for the "Mode" property of the Weather Station.
| Value | Meaning |
|---|---|
| 0 | No Storm |
| 1 | Storm Incoming |
| 2 | Currently in Storm |

### NextWeatherHash Values

The "NextWeatherHash" property of the Weather Station provides the hash value for the name of the next weather event as a 32 bit integer.

The names of weather events can be found in the world XML file, for example "rocketstation_Data\StreamingAssets\Worlds\Vulcan\VulcanV2.xml"

| World | WeatherEvent Id | Hash |
|---|---|---|
| Moon | SolarStorm | 678645115 |
| Mars | MarsDustStorm | 562037339 |
| Europa | EuropaSnowStorm | 318954017 |
| Vulcan | VulcanAshStorm | -851681507 |
| Vulcan | VulcanSolarStorm | 756391474 |
| Venus | VenusStorm | 1100767396 |


| Parameter | Type | Access | Description |
|---|---|---|---|
| Power | Boolean | Read | Can be read to return if the Weather Station is correctly powered or not, set via the power system, return 1 if powered and 0 if not |
| Mode | Integer | Read | The mode of the Weather Station. |
| Error | Boolean | Read | 1 if device is in error state, otherwise 0 |
| Activate | Integer | Read/Write | 1 if device is activated (usually means running), otherwise 0 |
| Lock | Boolean | Read/Write | Disable manual operation of the Weather Station. |
| On | Boolean | Read/Write | The current state of the Weather Station. |
| RequiredPower | Integer | Read | Idle operating power quantity, does not necessarily include extra demand power |
| PrefabHash | Integer | Read | The hash of the structure |
| NextWeatherEventTime | Integer | Read | Returns in seconds when the next weather event is inbound. |
| ReferenceId | Integer | Read | Unique Reference Identifier for this object |
| NameHash | Integer | Read | Provides the hash value for the name of the object as a 32 bit integer. |
| NextWeatherHash | Integer | Read | Provides the hash value for the name of the next weather event as a 32 bit integer. |