🌌 fits is observerly's lightweight (~1.9 KB min+gzip), zero-dependency*, type safe FITS image library written in TypeScript. It is aimed to be a modern and simple tool to use in the browser, for reading the FITS file format according to the 4th version of the FITS specification.
The key tenants of the library is to use as JavaScript primatives, where we do not rely on, or enforce reliance on, any third-party related libraries. This is to ensure that the library can be used in any environment, and that the user can supplement usage with their own datetime libraries of choice, if required.
The final output image is a 2D array of pixel values, which can be used to render the image in a canvas, or any other image rendering library of choice. The final output image pixel values is a ZScaleInterval of the original pixel values, returned as a Float32Array.
The library makes no opinion of what you can do with the resulting image data, and is designed to be as flexible as possible to allow the user to use the data in any way they see fit, whether that be rendering the image, or processing the data in some other way. However, it is more than possible to convert the values to an RGBA Uint8ClampedArray for use with the HTMLCanvasElement, the Web Canvas API or any other image rendering library of choice.
You can install fits using your favorite package manager:
npm install @observerly/fits
or
yarn add @observerly/fits
pnpm add @observerly/fits
bun add @observerly/fits
TBD
The two below examples demonstrate how to load a FITS file from a local file or a URL, respectively, in a browser environment.
import { FITS } from '@observerly/fits'
const fileInput = document.getElementById('fitsFileInput')
fileInput.addEventListener('change', async (event) => {
const file = (event.target as HTMLInputElement).files[0]
const buffer = await file.arrayBuffer()
const fits = await new FITS().readFromBuffer(buffer)
const headers = fits.getHeaders()
const image = fits.getImageHDU() // of type Float32Array
})
import { FITS } from '@observerly/fits'
const url = `fits.observerly.com/Rosetta_Nebula_[Ha]_Monochrome_M_300s_2024-11-26T17_20_00Z`
const response = await fetch(url)
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`)
}
const buffer = await response.arrayBuffer()
const fits = await new FITS().readFromBuffer(buffer)
const headers = fits.getHeaders()
const image = fits.getImageHDU() // of type Float32Array
import { FITS, ZScaleInterval } from '@observerly/fits'
// ... load FITS file as above
const image = fits.getImageHDU() // of type Float32Array (uncorrected):
const canvas = document.createElement('canvas')
canvas.width = fits.width
canvas.height = fits.height
const ctx = canvas.getContext('2d')
const imageData = ctx.createImageData(canvas.width, canvas.height)
// Compute ZScaleInterval to the image data:
const { vmin, vmax } = ZScaleInterval(image)
// Normalize the data to the [0..255] range
const normalizedData = new Float32Array(resolution)
// Normalize the data to the [0..255] range, e.g., a Uint8ClampedArray:
for (let i = 0; i < resolution; i++) {
normalizedData[i] = ((image[i] - vmin) / (vmax - vmin)) * 255
}
// Convert the Float32Array to a Uint8ClampedArray:
for (let i = 0; i < image.length; i++) {
const value = image[i]
normalizedData[i * 4] = value
normalizedData[i * 4 + 1] = value
normalizedData[i * 4 + 2] = value
normalizedData[i * 4 + 3] = 255
}
ctx.putImageData(normalizedData, 0, 0)
*It is dependency-free to ensure it can be used safely within both node, deno, bun and browser environments.
@observerly/FITS is licensed under the MIT license. See MIT for details.