This commit is contained in:
2026-03-30 15:58:21 +02:00
parent 5b31a9a9d8
commit c84018fbeb
9 changed files with 1129 additions and 48 deletions

View File

@@ -201,7 +201,7 @@ Built-in frequency database (`frontend/src/lib/satdb.js`) covers 40+ satellites
| Satellite | Type | Downlink | Uplink | | Satellite | Type | Downlink | Uplink |
|-----------|------|----------|--------| |-----------|------|----------|--------|
| ISS | FM | 437.800 MHz | 145.990 MHz | | ISS | FM | 145.800 MHz | 437.800 MHz |
| SO-50 | FM | 436.795 MHz | 145.850 MHz | | SO-50 | FM | 436.795 MHz | 145.850 MHz |
| AO-91 | FM | 145.960 MHz | 435.250 MHz | | AO-91 | FM | 145.960 MHz | 435.250 MHz |
| RS-44 | Linear | 435.640 MHz | 145.965 MHz | | RS-44 | Linear | 435.640 MHz | 145.965 MHz |

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -8,14 +8,17 @@
"build": "vite build", "build": "vite build",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": {
"leaflet": "^1.9.4"
},
"devDependencies": { "devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tsconfig/svelte": "^5.0.0", "autoprefixer": "^10.4.16",
"svelte": "^4.2.0", "postcss": "^8.4.32",
"typescript": "^5.0.0", "svelte": "^4.2.7",
"vite": "^5.0.0" "tailwindcss": "^3.3.6",
"vite": "^5.0.3"
},
"dependencies": {
"chart.js": "^4.4.0",
"leaflet": "^1.9.4",
"lucide-svelte": "^0.303.0"
} }
} }

View File

@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};

View File

@@ -61,7 +61,7 @@ const DB = [
displayName: 'ISS', displayName: 'ISS',
type: SAT_TYPE.FM, type: SAT_TYPE.FM,
freqs: [ freqs: [
{ downHz: 437800000, upHz: 145990000, mode: 'FM', notes: 'FM Voice, CTCSS 67.0 Hz. Active sometimes.' }, { downHz: 437800000, upHz: 149990000, mode: 'FM', notes: 'FM Voice répéteur, CTCSS 67.0 Hz. Active sometimes.' },
{ downHz: 144825000, upHz: 0, mode: 'APRS', notes: 'APRS Europe 144.825 MHz / 1200bps AFSK' }, { downHz: 144825000, upHz: 0, mode: 'APRS', notes: 'APRS Europe 144.825 MHz / 1200bps AFSK' },
] ]
}, },

View File

@@ -0,0 +1,7 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
const config = {
preprocess: vitePreprocess(),
}
export default config

View File

@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'media',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};

View File

@@ -6,5 +6,10 @@ export default defineConfig({
build: { build: {
outDir: 'dist', outDir: 'dist',
emptyOutDir: true, emptyOutDir: true,
},
server: {
proxy: {
'/api': 'http://localhost:8080'
}
} }
}) })