aboutsummaryrefslogtreecommitdiffstats
path: root/astro
diff options
context:
space:
mode:
Diffstat (limited to 'astro')
-rwxr-xr-xastro/oskar/fits2skymodel.py21
1 files changed, 20 insertions, 1 deletions
diff --git a/astro/oskar/fits2skymodel.py b/astro/oskar/fits2skymodel.py
index c610e21..4d2f847 100755
--- a/astro/oskar/fits2skymodel.py
+++ b/astro/oskar/fits2skymodel.py
@@ -78,7 +78,26 @@ class SkyModel:
self.minvalue = minvalue
self.mask = mask
self.projection = projection
- logger.info("SkyModel: Loaded image @ %.2f [MHz]" % freq)
+ logger.info("SkyModel: Loaded image @ %.2f [MHz], " % freq +
+ "%.1f [arcsec/pixel]" % pixelsize)
+ logger.info("Image size: %dx%d" % self.shape)
+ logger.info("FoV size: %.2fx%.2f [deg^2]" % self.fov)
+
+ @property
+ def shape(self):
+ """
+ FITS image (width, height)
+ """
+ width, height = list(reversed(self.image.shape))[:2]
+ return (width, height)
+
+ @property
+ def fov(self):
+ """
+ FITS image FoV size: (width, height) [deg]
+ """
+ width, height = self.shape
+ return (width*self.pixelsize/3600, height*self.pixelsize/3600)
@property
def wcs(self):