this.getStation = function(station_id) {
        var deferred = $q.defer();

        var Station = $resource('/api/station/:id', {id: station_id});
        Station.get(function(station){