attributeName="transform" dur="2s" repeatCount="indefinite" type="rotate" values="0 12 12;360 12 12"/> `; document.querySelector('.flatpickr-calendar').append(calendarLoading); } else { this.calendar.set('enable', allowed); this.calendar.redraw(); } // }) } }, collectFilters() { let alliance = [] if (this.staralliance) alliance.push('SA') if (this.skyteam) alliance.push('ST') if (this.oneworld) alliance.push('OW') const carrierString = Object.keys(this.carrier) .map(key => `${this.carrier[key]}`) .join(',') const countryString = Object.keys(this.selectedCountries) .map(key => `${this.selectedCountries[key]}`) .join(',') const daysString = Object.keys(this.days) .map(key => `${key}`) .join(',') const classesString = Object.keys(this.classes) .map(key => `${key}`) .join(',') const aircraftsString = Object.keys(this.selectedaircrafts) .map(key => `${key}`) .join(',') let data = {} if (!!this.durationFrom) data.durationFrom = this.durationFrom if (!!this.durationTo) data.durationTo = this.durationTo if (!!this.priceFrom) data.priceFrom = this.priceFrom if (!!this.priceTo) data.priceTo = this.priceTo if (!!this.departureFrom) data.timeFrom = this.timeToMinutes(this.departureFrom) if (!!this.departureTo) data.timeTo = this.timeToMinutes(this.departureTo) if (!!this.arrivalFrom) data.arrivalFrom = this.timeToMinutes(this.arrivalFrom) if (!!this.arrivalTo) data.arrivalTo = this.timeToMinutes(this.arrivalTo) if (!!this.lowcost) data.lowcost = 1 if (!!this.businessOnly) data.business_only = 1 if (!!this.from) data.from = this.from if (!!carrierString) data.airlines = carrierString if (!!daysString) data.days = daysString if (!!classesString) data.classes = classesString if (!!countryString) data.countries = countryString if (!!this.distanceFrom) data.distanceFrom = this.distanceFrom if (!!this.distanceTo) data.distanceTo = this.distanceTo // Aircrafts if (!!aircraftsString) data.aircrafts = this.selectedaircrafts data.entityType = this.entityType data.take = this.schedulesOffset; data.selectedDate = this.selectedDate ?? null data.dateMethod = 'month'; data.sorting = this.sortingType console.log(this.sortingDirection) data.sortingDirection = this.sortingDirection if(!this.selectedMonth) { const todayStr = (new Date()).toISOString().slice(0,10); const { dateFrom, dateTo } = this.computeGridRangeForMonth(null, todayStr); data.dateFrom = dateFrom; data.dateTo = dateTo; } else { const todayStr = (new Date()).toISOString().slice(0,10); const { dateFrom, dateTo } = this.computeGridRangeForMonth(this.selectedMonth, todayStr); data.dateFrom = dateFrom; data.dateTo = dateTo; } return data }, showMoreSchedules() { this.schedulesOffset += 50; this.updateFilter(); }, updateFilter(sortAfter = true) { if (!this.isInit) return false const data = this.collectFilters(); let queryString = Object.keys(data).map(key => key + '=' + data[key]).join('&'); this.isLoading = true if (queryString === 'from=' + this.from) this.showAll = true else this.showAll = false if (this.airportRequest) { this.airportRequest.cancel('canceled by new request') } // создаём новый источник отмены this.airportRequest = axios.CancelToken.source() axios.get('/api/airport/' + this.from + '?' + queryString + '&rand=' + Math.random(), { cancelToken: this.airportRequest.token }).then((res) => { this.isLoading = false if (res.data.response) { console.log('updated filter'); this.destinations = Object.values(res.data.response.routes) if(this.entityType === 'departures' || this.entityType === 'arrivals') { this.schedules = res.data.response.schedule.result this.schedulesCount = res.data.response.schedule.total this.updateDatepicker(res, 'updateFilter'); this.date = res.data.response.schedule.firstdate } this.airlines = res.data.response.filters.airlines.result this.countries = res.data.response.filters.countries.result this.airlines.sort((a, b) => (Object.values(this.carrier).includes(a.carrier)) ? -1 : 1) this.countries.sort((a, b) => (Object.values(this.selectedCountries).includes(a.country_code)) ? -1 : 1) this.airlinesToShow = this.airlines.slice(0, this.airlinesToShowCount) this.countriesToShow = this.countries.slice(0, this.countriesToShowCount) this.destCount = Object.values(this.destinations).length window.history.pushState({}, "", this.from + '?' + queryString + '&state=1') this.filters = res.data.response.filters if (parseInt(this.durationFrom) > 0 || parseInt(this.durationTo) > 0) { timeslider.noUiSlider.updateOptions({ range: { min: res.data.response.filters.duration.min_duration, max: res.data.response.filters.duration.max_duration }, start: [this.durationFrom, this.durationTo] }) mobtimeslider.noUiSlider.updateOptions({ range: { min: res.data.response.filters.duration.min_duration, max: res.data.response.filters.duration.max_duration }, start: [this.durationFrom, this.durationTo] }) } if (parseInt(this.distanceFrom) > 0 || parseInt(this.distanceTo) > 0) { mobdistance.noUiSlider.updateOptions({ range: { min: res.data.response.filters.distance.min_distance, max: res.data.response.filters.distance.max_distance }, start: [this.distanceFrom, this.distanceTo] }) } if (parseInt(this.departureFrom) > 0 || parseInt(this.departureTo) > 0) { departure.noUiSlider.updateOptions({ range: { min: res.data.response.filters.timeofday.min_time, max: res.data.response.filters.timeofday.max_time }, start: [this.timeToMinutes(this.departureFrom), this.timeToMinutes(this.departureTo)] }) mobdeparture.noUiSlider.updateOptions({ range: { min: res.data.response.filters.timeofday.min_time, max: res.data.response.filters.timeofday.max_time }, start: [this.timeToMinutes(this.departureFrom), this.timeToMinutes(this.departureTo)] }) } if (parseInt(this.arrivalFrom) > 0 || parseInt(this.arrivalTo) > 0) { mobarrival.noUiSlider.updateOptions({ range: { min: res.data.response.filters.arrival.min_time, max: res.data.response.filters.arrival.max_time }, start: [this.timeToMinutes(this.arrivalFrom), this.timeToMinutes(this.arrivalTo)] }) mobarrival.noUiSlider.updateOptions({ range: { min: res.data.response.filters.arrival.min_time, max: res.data.response.filters.arrival.max_time }, start: [this.timeToMinutes(this.arrivalFrom), this.timeToMinutes(this.arrivalTo)] }) } if (parseInt(this.priceFrom) > 0 || parseInt(this.priceTo) > 0) { mobpriceslider.noUiSlider.updateOptions({ range: { min: 0, max: 420 }, start: [this.priceFrom, this.priceTo] }) } // Aircrafts let ac = res.data.response.filters.aircrafts.result; let acs = []; for (let i = 0; i < ac.length; i++) { acs.push(ac[i].filterValue); } this.activeaircrafts = acs; this.aircraftsToShow = acs; if(sortAfter) this.changeSorting(this.sortingType) // console.log(Object.keys(this.carrier).length) if (Object.keys(this.carrier).length == 0 && this.lowcost) this.destinations = [] } }).catch((error) => { if (axios.isCancel(error)) { console.log('Request canceled', error.message); } else { console.error('Error fetching data:', error); } }); } } }).mount('#vue-app')
Copyright 2018- - Airtickets.Click
Direct flight tickets from Orland to Stord - schedules - airtickets.click

Direct flight tickets from Orland to Stord

All flight schedules from Orland Airport, Norway to Stord Airport, Norway. This route is operated by 0 airlines and the flight time is 1 hour and 15 minutes.

This route has been set as inactive in our database since we could not find any airlines with direct flights.
OLA Orland Airport
Norway
Orland, Norway
SRP Stord Airport
Norway
Stord, Norway
CHANGE DIRECTION
Flight time
1h 15m
Flight distance
mi, km
Flights from Orland to Stord route map
VIEW LARGER MAP
Norway
Norway
Orland
aircraft image
Norway
Norway
Stord
Distance
miles · ( km)
Flight time
1 hour and 15 minutes
SEARCH FLIGHTS WITH STOPS INSTEAD
OLA SRP
Select dates
Check prices
Flight time
1h 15m
Route added
September 2022
Flights ended
December 2022 (Last seen)

NO
Arriving at Stord Airport (SRP)

Stord Airport (SRP) is a smaller airport in Norway. The one and only destination from here is Oslo (OSL) with DAT where you can fly 6 days a week.

Show all flights from SRP

Best prices on rental cars in Stord
Compare prices and book now with free cancellation.
Hotel deals in Stord with free cancellation

NO
Departing from Orland Airport (OLA)

Orland Airport (OLA) is a smaller airport in Norway. You can fly to 2 destinations with 1 airline in scheduled passenger traffic.

Show all flights from OLA

Airlines that fly direct from Orland to Stord in the past

  • Danish Air
    Last flight was scheduled 2022-12-20
ROUTE EXPLORING

Orland Airport - all destinations

With airtickets.click’s brilliant search features you can explore all non-stop flights from a specific airport. Simply select your preferred airport to get an overview of every single non-stop flight offered. Click on one of the routes to get information about which airline’s operate the route, when the next scheduled flight is or to filter your search even more.

EXPLORE ALL DESTINATIONS

 

Orland flight map

Select your flight details

Round trip
1 adult
Economy

You may have missed to select a date. Please check the calendar. If you dont know your date, use on the button "I dont know my dates"

I HAVE NO DATES
CHECK PRICES
VIEW IN
MAP EXPLORER
Flights from Orland to Stord route map
Non-stop flights from OLA to SRP
miles ( km) · 1 hour and 15 minutes
CHECK PRICES

About Airtickets.Click?

Airtickets.Click is a powerful website for finding airline routes and flight schedules worldwide. It lets you explore destination options through non-stop flights from a specific airport, making it easy to plan business meetings or weekend getaways based on your schedule and your nearest airport.

Part of its appeal is that it makes trips easier to plan by showing the departure times of every non-stop flight in a single list.

- MSN.COM

I always wondered where you could fly direct from a particular airport (Burbank, I’m looking at you), and those answers used to be hard to find. Not anymore.

- Rich on tech

Popular booking sites often exclude low-cost carriers or miss opportunities to combine transoceanic flights with regional airlines for lower fares. A broader search tool solves this… (Hint: search by destination airport at airtickets.click)

- The New York Times

Many budget airlines block their flight data from appearing on popular third-party platforms. To access all local dep