Search Earthshine (Fast)
Type a word or phrase. Press Enter for full-site search, or use live results below.
Tip: Try short keywords first (for example: PSF, albedo, flatfields, ISS).
var timer = null;
function esc(s) { return String(s || '') .replace(/&/g, '&') .replace(//g, '>') .replace(/"/g, '"') .replace(/'/g, '''); }
function topicList(title, items, basePath) { if (!items || !items.length) return ''; var out = '
' + title + ': '; for (var i = 0; i < items.length; i++) { var item = items[i]; var sep = i < items.length - 1 ? ', ' : ''; var href = item.link || (basePath + item.id); out += '' + esc(item.name) + '' + sep; } out += '
'; return out; }
function runLiveSearch(q) { var query = (q || '').trim(); if (query.length < 2) { statusBox.innerHTML = 'Live results appear after 2+ characters.'; resultsBox.innerHTML = ''; return; } statusBox.innerHTML = 'Searching...'; resultsBox.innerHTML = ''; var searchUrl = '/wp-json/wp/v2/search?search=' + encodeURIComponent(query) + '&per_page=12'; var catUrl = '/wp-json/wp/v2/categories?search=' + encodeURIComponent(query) + '&per_page=8'; var tagUrl = '/wp-json/wp/v2/tags?search=' + encodeURIComponent(query) + '&per_page=8'; Promise.all([ fetch(searchUrl).then(function (r) { return r.ok ? r.json() : []; }).catch(function () { return []; }), fetch(catUrl).then(function (r) { return r.ok ? r.json() : []; }).catch(function () { return []; }), fetch(tagUrl).then(function (r) { return r.ok ? r.json() : []; }).catch(function () { return []; }) ]).then(function (all) { var rows = all[0] || []; var cats = all[1] || []; var tags = all[2] || []; var html = ''; html += topicList('Matching categories', cats, '/category/category'); html += topicList('Matching tags', tags, '/tag/'); if (!rows.length) { statusBox.innerHTML = 'No live matches yet. Press Search for full results.'; resultsBox.innerHTML = html; return; } statusBox.innerHTML = 'Found ' + rows.length + ' live result(s).'; html += '
- ';
for (var i = 0; i < rows.length; i++) {
var r = rows[i];
html += '
- ' + esc(r.title) + ' (' + esc(r.subtype || r.type || 'item') + ')
'; } html += '
'; resultsBox.innerHTML = html; }).catch(function () { statusBox.innerHTML = 'Live search unavailable right now. Press Search above.'; resultsBox.innerHTML = ''; }); }
input.addEventListener('input', function () { clearTimeout(timer); timer = setTimeout(function () { runLiveSearch(input.value); }, 350); }); })();
Start Here
This page helps new visitors quickly find the most useful parts of the Earthshine site.
1) New to Earthshine? Read these first
- What next, for Earthshine observations? – overview and motivation.
- ISS experiment – why space-based images matter.
- Bachelor’s Thesis based on the Andreas Mogensen Moon images – latest student project result.
2) Key topic pages
- From flux to Albedo – turning measurements into albedo estimates.
- Post-Obs scattered-light removal – core image-cleaning work.
- Exploring the PSF – blur/scatter behavior and modeling.
- Data reduction issues – practical challenges and fixes.
- Showcase images and animations – visual examples.
3) Important documents
4) Quick timeline
- 2008: early hardware and error-budget notes.
- 2011-2014: intensive method development, calibration, and model-testing posts.
- 2015: selected showcase analyses and public-facing examples.
- 2021: strategic update on future observations, including space-based direction.
- 2023-2024: ISS-related work and student research updates.
5) Full archive
If you want everything in date order, go to the homepage archive view.
6) Topic index (words and phrases)
Use the Index of Frequent Words and Phrases to jump quickly into recurring technical themes.