Infographic: Your Arrival at Quy Nhon Airport
https://cdn.tailwindcss.com
https://cdn.jsdelivr.net/npm/chart.js
body {
font-family: ‘Inter’, sans-serif;
background-color: #F2F2F2;
color: #333333;
}
.chart-container {
position: relative;
width: 100%;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
Your Smooth Arrival in Quy Nhon
An infographic guide to navigating Phu Cat Airport (UIH) with ease and how to start your vacation without the wait.
Distance from Phu Cat Airport to Quy Nhon City Center
~35km
Average Travel Time: 40-60 minutes
IATA Code: UIH
ICAO Code: VVPC
International Terminal: T2
Domestic Terminal: T1
Pre-Arrival Checklist
🛂
Valid Passport
At least 6 months validity with 2 blank pages.
📄
Visa or E-Visa
Have your printed E-Visa or Visa Approval Letter ready.
💵
Cash (USD/VND)
Crucial for VOA stamping fees. No ATMs in the visa area!
🏨
Trip Information
Keep flight and accommodation details accessible.
Navigating the Airport: Two Paths
E-Visa / Visa-Free Visitors
1
Proceed to Immigration Checkpoint
2
Collect Luggage at Baggage Claim
3
Pass Through Customs Check
→
Exit & Begin Your Adventure!
Visa on Arrival (VOA) Holders
1
Go to “Landing Visa” Counter FIRST
2
Proceed to Immigration Checkpoint
3
Collect Luggage at Baggage Claim
4
Pass Through Customs Check
→
Exit & Begin Your Adventure!
The Reality of Arrival: The Queue
Long lines at immigration are a common frustration. Our Expedited Service lets you bypass this wait entirely.
Solution: Expedited Entry Service
⏱️
Save Time
Bypass all queues and be through immigration in minutes.
😌
Eliminate Stress
No confusion or anxiety. We guide you every step of the way.
✅
Problem Solved
Forgot cash or photos for VOA? Our team handles it for you.
Book with Confidence
🗓️
Since 2008
15+ years of trusted experience in Vietnam immigration.
🛡️
100% Guarantee
We offer a full refund if our service isn’t delivered as promised.
💳
PayPal Protection
Secure payments with PayPal’s robust Buyer Protection policy.
⭐
Customer Reviews
Excellent ratings on independent platforms like Sitejabber .
Getting to the City Center
Compare your transportation options from the airport.
Ready for a VIP Arrival?
Book our Expedited Entry Service and make your first moments in Vietnam memorable for the right reasons.
Book Fast-Track Service Now
© 2024 Vietnamimmigration.org. All data is for illustrative purposes.
// Chart.js Label Wrapping and Tooltip Configuration
const wrapLabel = (label) => {
const words = label.split(‘ ‘);
const lines = [];
let currentLine = ”;
words.forEach(word => {
if ((currentLine + word).length > 16) {
lines.push(currentLine.trim());
currentLine = ”;
}
currentLine += word + ‘ ‘;
});
lines.push(currentLine.trim());
return lines;
};
const multiLineTooltipTitle = {
title: function(tooltipItems) {
const item = tooltipItems[0];
let label = item.chart.data.labels[item.dataIndex];
if (Array.isArray(label)) {
return label.join(‘ ‘);
}
return label;
}
};
// Wait Times Chart
const waitTimesCtx = document.getElementById(‘waitTimesChart’);
if (waitTimesCtx) {
new Chart(waitTimesCtx, {
type: ‘bar’,
data: {
labels: [‘Standard Arrival’, wrapLabel(‘With Expedited Service’)],
datasets: [{
label: ‘Estimated Wait Time (minutes)’,
data: [45, 5],
backgroundColor: [
‘#87C4DD’,
‘#0074B7’
],
borderColor: [
‘#0074B7’,
‘#00426A’
],
borderWidth: 2,
borderRadius: 5,
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
indexAxis: ‘y’,
scales: {
x: {
beginAtZero: true,
title: {
display: true,
text: ‘Minutes’
}
}
},
plugins: {
legend: {
display: false
},
tooltip: {
callbacks: multiLineTooltipTitle
}
}
}
});
}
// Transport Costs Chart
const transportCtx = document.getElementById(‘transportChart’);
if (transportCtx) {
new Chart(transportCtx, {
type: ‘bar’,
data: {
labels: [‘Shuttle Bus’, ‘Taxi’, wrapLabel(‘Pre-booked Private Car’)],
datasets: [{
label: ‘Estimated Cost (VND)’,
data: [50000, 290000, 350000],
backgroundColor: [
‘#87C4DD’,
‘#0074B7’,
‘#00426A’
],
borderWidth: 0,
borderRadius: 5
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
ticks: {
callback: function(value) {
if (value >= 1000) {
return (value / 1000) + ‘k VND’;
}
return value + ‘ VND’;
}
}
}
},
plugins: {
legend: {
display: false
},
tooltip: {
callbacks: {
…multiLineTooltipTitle,
label: function(context) {
let label = context.dataset.label || ”;
if (label) {
label += ‘: ‘;
}
if (context.parsed.y !== null) {
label += new Intl.NumberFormat(‘vi-VN’, { style: ‘currency’, currency: ‘VND’ }).format(context.parsed.y);
}
return label;
}
}
}
}
}
});
}