Using the database from TradeDangerous with the following SQL gives 159 stations (see spoiler)
select System.name, Station.name, Station.ls_from_star, Station.max_pad_size
from Station, System
where System.system_id = Station.system_id
and Station.ls_from_star > 0
and...