Skip to content
Snippets Groups Projects
Commit 7ade3ecd authored by Daniel Brown's avatar Daniel Brown
Browse files

fixing read_map

parent a13f570e
Branches
No related tags found
No related merge requests found
...@@ -912,6 +912,8 @@ def read_map(filename, mapFormat='finesse', scaling=1.0e-9): ...@@ -912,6 +912,8 @@ def read_map(filename, mapFormat='finesse', scaling=1.0e-9):
data = np.loadtxt(filename, dtype=np.float64,ndmin=2,comments='%') data = np.loadtxt(filename, dtype=np.float64,ndmin=2,comments='%')
return surfacemap(name, maptype, size, center, step, scaling, data)
# Converts raw zygo and ligo mirror maps to the finesse # Converts raw zygo and ligo mirror maps to the finesse
# format. Based on the matlab scripts 'FT_read_zygo_map.m' and # format. Based on the matlab scripts 'FT_read_zygo_map.m' and
# 'FT_read_ligo_map.m'. # 'FT_read_ligo_map.m'.
...@@ -1125,14 +1127,14 @@ def read_map(filename, mapFormat='finesse', scaling=1.0e-9): ...@@ -1125,14 +1127,14 @@ def read_map(filename, mapFormat='finesse', scaling=1.0e-9):
# map with surfacemap.plot(). # map with surfacemap.plot().
data[isNan] = 0 data[isNan] = 0
return surfacemap(name, maptype, size, center, step, scaling, data, notNan)
# TODO: Add options for reading virgo maps, and .xyz zygo # TODO: Add options for reading virgo maps, and .xyz zygo
# maps (need .xys file for this). Binary ligo-maps? # maps (need .xys file for this). Binary ligo-maps?
# The intensity data is not used to anything here. Remove # The intensity data is not used to anything here. Remove
# or add to pykat? # or add to pykat?
return surfacemap(name, maptype, size, center, step,
scaling, data, notNan)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment