func (an *XMLAffectedNetwork) AffectedDestinations() []string {
    if len(an.affectedDestinations) == 0 {
        nodes := an.findNodes("StopPlaceRef")
        for _, routeRef := range nodes {
            an.affectedDestinations = append(an.affectedDestinations, strings.TrimSpace(routeRef.NativeNode().Content()))