Как это работает

От орбиты до экрана за три шага

Лёгкий генератор без регистрации и загрузки файлов.

Step 01

Введите имя

Любое имя, слово или короткая фраза.

Step 02

Подберите буквы

Сначала по порядку, затем случайно — без повторов.

Step 03

Соберите композицию

Плитки выстраиваются в единое изображение.

Step 04

Перегенерируйте

Не нравится? Жмите перегенерировать.

The composition algorithm

The satellite name generator stores curated NASA-style frames per letter inside the browser bundle. For every input character we keep an independent counter and pick the next sequential frame; once the supply is exhausted, frames are sampled pseudo-randomly so repeats remain visually unique. Letters are rendered to a canvas and masked into the satellite imagery, then composed into a single export-ready image.

Try the generator
// Per-letter frame picker
function pickFrames(name) {
  const counts = new Map();
  return [...name].map((ch) => {
    const key = ch.toUpperCase();
    const seen = counts.get(key) ?? 0;
    counts.set(key, seen + 1);

    return seen < FRAMES_PER_LETTER
      ? `/letters/${key}/${seen + 1}.webp`   // sequential
      : `/letters/${key}/${rand(1, 3)}.webp`; // random
  });
}