-
Notifications
You must be signed in to change notification settings - Fork 8
Coordinate systems do not match #633
Copy link
Copy link
Open
Labels
Description
Summary
The ALMA observatory (Atacama Large Millimeter/submillimeter Array) can work in different configurations. For most of them there are OSKAR .tm-files available in Karabo. If one plots the configuration of, say version 'cycle 8.10' and 'out 09' with karabo the coordinates of the stations differ significantly (see picture). I reckon that the coordinates in image 'ALMA Version Cycle 8.10' are correct. But the ones in the image on the right hand side are not. The centre is much too far away from the stations.

Steps to reproduce
Run the follwing script and compare the output images:
from karabo.simulation.telescope import Telescope, ALMAVersions
site_name = "ALMA"
instrument_versions = [ALMAVersions.CYCLE_8_10, ALMAVersions.OUT_09]
for version in instrument_versions:
alma_site = Telescope.constructor(site_name, version=version)
alma_site.plot_telescope(f"{site_name}.{version.value}.png")
Expected result
The coordinate range of both images should be alike.
Reactions are currently unavailable