You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
688 B
42 lines
688 B
/**
|
|
* Utilities Index
|
|
* Central export point for all utility functions
|
|
*/
|
|
|
|
// Configuration utilities
|
|
export {
|
|
DEFAULT_CONFIG,
|
|
loadConfig,
|
|
saveConfig,
|
|
applyTheme,
|
|
fetchServerConfig,
|
|
isConfigIncomplete,
|
|
MAP_STYLES
|
|
} from './config.js';
|
|
|
|
// Geographic calculations
|
|
export {
|
|
calculateGridSquare,
|
|
calculateBearing,
|
|
calculateDistance,
|
|
getSunPosition,
|
|
getMoonPosition,
|
|
getMoonPhase,
|
|
getMoonPhaseEmoji,
|
|
calculateSunTimes,
|
|
getGreatCirclePoints
|
|
} from './geo.js';
|
|
|
|
// Callsign and band utilities
|
|
export {
|
|
HF_BANDS,
|
|
CONTINENTS,
|
|
MODES,
|
|
getBandFromFreq,
|
|
getBandColor,
|
|
detectMode,
|
|
PREFIX_MAP,
|
|
getCallsignInfo,
|
|
filterDXPaths
|
|
} from './callsign.js';
|