mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 22:38:03 +00:00
centre coords at 0
This commit is contained in:
parent
1cd3f10848
commit
0baa81a4f4
1 changed files with 7 additions and 2 deletions
|
@ -278,7 +278,8 @@ def convert_from_boxunits(data, names, boxunits):
|
|||
- density -> solar mass per cubed kpc.
|
||||
Any other conversions are currently not implemented. Note that the array
|
||||
is passed by reference and directly modified, even though it is also
|
||||
explicitly returned.
|
||||
explicitly returned. Additionally centres the box coordinates on the
|
||||
observer, if they are being transformed.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
|
@ -323,4 +324,8 @@ def convert_from_boxunits(data, names, boxunits):
|
|||
raise NotImplementedError(
|
||||
"Conversion of `{}` is not defined.".format(name))
|
||||
|
||||
# Center at the observer
|
||||
if name in ["peak_x", "peak_y", "peak_z"]:
|
||||
data[name] -= transforms["length"](0.5)
|
||||
|
||||
return data
|
||||
|
|
Loading…
Reference in a new issue