From ca6bb10939a5fdaa52f414f98797a7880a6902ff Mon Sep 17 00:00:00 2001 From: Adam Ginsburg Date: Fri, 24 Mar 2017 13:58:03 -0600 Subject: [PATCH] Correct an error in analysis.py: sqrt(mom2) is not FWHM. --- astrodendro/analysis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astrodendro/analysis.py b/astrodendro/analysis.py index 4df6e5a..b4a6c15 100644 --- a/astrodendro/analysis.py +++ b/astrodendro/analysis.py @@ -282,8 +282,8 @@ class SpatialBase(object): wavelength = MetadataQuantity('wavelength', 'Wavelength') spatial_scale = MetadataQuantity('spatial_scale', 'Pixel width/height') - beam_major = MetadataQuantity('beam_major', 'Major FWHM of beam') - beam_minor = MetadataQuantity('beam_minor', 'Minor FWHM of beam') + beam_major = MetadataQuantity('beam_major', 'Major axis (sigma) of beam') + beam_minor = MetadataQuantity('beam_minor', 'Minor axis (sigma) of beam') data_unit = MetadataQuantity('data_unit', 'Units of the pixel values', strict=True) wcs = MetadataWCS('wcs', 'WCS object')