Skip to content
eSIMAddict

How much data do I need?

Most travellers overbuy. This estimates what a trip actually consumes, using the per-hour figures below — change any of them if your habits differ.

5 MB/hour

90 MB/hour

60 MB/hour

80 MB/hour

900 MB/hour

400 MB/hour

Estimated total

Figures are typical rather than exact; video in particular varies by more than tenfold with resolution. Add roughly 20% headroom, and prefer a plan that supports top-up over buying the next size up.

(function(){
var form = document.getElementById(‘eh-calc');
if (!form) { return; }
var out = document.getElementById(‘eh-calc-out');
var advice = document.getElementById(‘eh-calc-advice');
function recalc(){
var days = parseFloat(document.getElementById(‘eh-days').value) || 0;
var perDay = 0;
form.querySelectorAll(‘input[data-mb]').forEach(function(input){
perDay += (parseFloat(input.value) || 0) * parseFloat(input.getAttribute(‘data-mb'));
});
var totalGb = (perDay * days) / 1024;
out.textContent = totalGb.toFixed(1) + ‘ GB';
var suggest = Math.max(1, Math.ceil(totalGb * 1.2));
advice.textContent = days > 0
? ‘Buy about ‘ + suggest + ‘ GB to leave headroom.'
: ”;
}
form.addEventListener(‘input', recalc);
recalc();
})();