SPB Git

spb/earth-now Public License

earth-now.co — real-time planetary dashboard: live world metrics modeled, not streamed.

TypeScript 93% Shell 2.3% SQL 1.4% JavaScript 1.3% Dockerfile 1.2% CSS 0.8%
1.0 KB · 35 lines typescript
Raw Blame History
1/**2 * earth-now.co3 * Author:  Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File:    packages/models/src/index.ts6 * Purpose: Public entrypoint of the pure statistical layer (fitters, filters, validation)7 */89export { leastSquares, solveLinearSystem } from "./linalg.js";10export { type FourierFitInput, type FourierFitResult, fitFourier } from "./fourier.js";11export { type HoltWintersFit, type HoltWintersParams, fitHoltWinters } from "./holt-winters.js";12export { type KalmanOptions, type KalmanStep, blendWithForecast, kalmanFilter } from "./kalman.js";13export {14  type MetricConstraints,15  type ValidationHorizon,16  type ValidationIssue,17  assertDeployable,18  diffModels,19  validateModel,20} from "./validate.js";21export {22  type SeasonalShape,23  type TimeValuePoint,24  MODEL_VERSIONS,25  annualTotalToMeanRate,26  buildKeelingModel,27  buildLinearStockModel,28  buildLinearYtdModel,29  buildSeasonalYtdModel,30  buildStaticRtModel,31  buildStockSplineModel,32  composeLinearCombination,33  secondsInUtcYear,34} from "./builders.js";35