Main Content

La traduzione di questa pagina non è aggiornata. Fai clic qui per vedere l'ultima versione in inglese.

File FITS

Sistema flessibile di trasporto delle immagini

Sistema flessibile di trasporto delle immagini (FITS) è uno standard aperto che definisce un formato di file digitale utile per l'archiviazione, la trasmissione e l'elaborazione di dati, formattati come array multidimensionali o tabelle. È possibile interagire con i file FITS in due modi:

  • Le funzioni FITS di alto livello di MATLAB® forniscono un'interfaccia programmatica semplificata per la lettura dei dati dai file FITS e la scrittura dei dati dal workspace di MATLAB ai file FITS.

  • Le funzioni FITS di basso livello di MATLAB forniscono un controllo più preciso sul processo di lettura e scrittura dei file FITS, dando accesso a più di 50 funzioni della libreria C di CFITSIO. Per utilizzare queste funzioni in MATLAB, anteporre al nome della funzione il percorso dello spazio nome di matlab.io.fits o utilizzare la funzione import per aggiungere lo spazio nome all'elenco delle importazioni correnti prima di chiamare la funzione. Ad esempio:

    import matlab.io.*;
    fptr = fits.openFile("tst0012.fits");
    

    Per utilizzare le funzioni FITS di basso livello di MATLAB, è necessario conoscere i concetti di programmazione dell'API C di CFITSIO, descritti in https://fits.gsfc.nasa.gov/.

MATLAB utilizza la versione della libreria C di FITS 4.1.0.

Funzioni

espandi tutto

fitsdispDisplay FITS metadata
fitsinfoInformation about FITS file
fitsreadRead data from FITS file
fitswriteWrite image to FITS file

Accesso al file

closeFileClose FITS file
createFileCreate FITS file
deleteFileDelete FITS file
fileModeGet I/O mode of FITS file
fileNameGet name of FITS file
openDiskFileOpen FITS file
openFileOpen FITS file (extended-filename syntax)

Manipolazione di immagini

createImgCreate FITS image
getImgSizeGet size of FITS image
getImgTypeGet data type of FITS image
insertImgInsert FITS image after current image
readImgRead FITS image data
setBscaleReset FITS image scaling
writeImgWrite to FITS image

Parole chiave

deleteKeyDelete key by name
deleteRecordDelete key by record number
getHdrSpaceGet number of keywords in header
readCardRead header record of keyword
readKeyRead keyword
readKeyCmplxRead keyword as complex scalar value
readKeyDblRead keyword as double precision value
readKeyLongLongRead keyword as 64-bit integer value
readKeyLongStrRead keyword as long string value
readKeyUnitRead physical units string from keyword
readRecordRead header record specified by number
writeCommentWrite or append COMMENT keyword to CHU
writeDateWrite DATE keyword to CHU
writeHistoryWrite or append HISTORY keyword to CHU
writeKeyUpdate or add new keyword into current HDU
writeKeyUnitWrite physical units string

Accesso all’Header Data Unit (HDU)

copyHDUCopy current HDU from one file to another
deleteHDUDelete current HDU in FITS file
getHDUnumGet number of current HDU in FITS file
getHDUtypeGet type of current HDU in FITS file
getNumHDUsGet total number of HDUs in FITS file
movAbsHDUMove to absolute HDU number
movNamHDUMove to first HDU having specific type and keyword values
movRelHDUMove relative number of HDUs from current HDU
writeChecksumCompute and write checksum for current HDU

Compressione dell’immagine

imgCompressCompress HDU from one file into another
isCompressedImgDetermine if current image is compressed
setCompressionTypeSet image compression type
setHCompScaleSet scale parameter for HCOMPRESS algorithm
setHCompSmoothSet smoothing for images compressed with HCOMPRESS
setTileDimSet tile dimensions

Tabelle ASCII e binarie

createTblCreate new ASCII or binary table extension
insertColInsert column into table
insertRowsInsert rows into table
insertATblInsert ASCII table after current HDU
insertBTblInsert binary table after current HDU
deleteColDelete column from table
deleteRowsDelete rows from table
getAColParmsGet ASCII table information
getBColParmsGet binary table information
getColNameGet table column name
getColTypeGet scaled column data type, repeat value, width
getEqColTypeGet column data type, repeat value, width
getNumColsGet number of columns in table
getNumRowsGet number of rows in table
readATblHdrRead header information from current ASCII table
readBTblHdrRead header information from current binary table
readColRead rows of ASCII or binary table column
setTscaleReset image scaling
writeColWrite elements into ASCII or binary table column

Utilità

getConstantValueGet numeric value of named constant
getVersionGet revision number of the CFITSIO library
getOpenFilesGet list of open FITS files

Argomenti

Informazioni complementari