Hello Gal Verlic,
What you are going to need is an entity (persistent or non persistent, in your case I think persistent) that summarizes the availability of the stations., so maybe you can call it it AvailabilitySummary or GeneralInformation.
After you create this entity with at least one attribute of type integer that represents the available stations, you can do several things to update this attribute most common options are the following two:
Option 1.
You can make an event handler on the entity that calculates the availability of stations everytime you commit a station object, you do this after the status of a station changes.
Option 2.
Instead of a event handler you just create a microflow that you use as a submicroflow and you use this sub microflow after the status of a station changes.
Hope this helps,
Good luck!