Skip to content

Commit a2f9746

Browse files
committed
1 parent 4a3d3cc commit a2f9746

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

docs/explaining_ndcube/tabular_coordinates.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ is the following temporal axis::
5454

5555
>>> gwcs = TimeTableCoordinate(time_axis).wcs
5656
>>> gwcs
57-
<WCS(output_frame=TemporalFrame, input_frame=PixelFrame, forward_transform=Model: Tabular1D
57+
<WCS(output_frame=TemporalFrame, input_frame=Frame..., forward_transform=Model: Tabular1D
5858
N_inputs: 1
5959
N_outputs: 1
6060
Parameters:
@@ -86,7 +86,7 @@ This keyword argument interprets the input to `.SkyCoordTableCoordinate` in a si
8686
8787
>>> gwcs = (TimeTableCoordinate(time_axis) & SkyCoordTableCoordinate(icrs_table, mesh=True)).wcs
8888
>>> gwcs
89-
<WCS(output_frame=CompositeFrame, input_frame=PixelFrame, forward_transform=Model: CompoundModel
89+
<WCS(output_frame=CompositeFrame, input_frame=Frame..., forward_transform=Model: CompoundModel
9090
Inputs: ('x', 'x0', 'x1')
9191
Outputs: ('y', 'y0', 'y1')
9292
Model set size: 1

ndcube/extra_coords/table_coord.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import abc
22
import copy
3+
import uuid
34
from numbers import Integral
45
from functools import partial
56
from collections import defaultdict
@@ -111,7 +112,12 @@ def _generate_generic_frame(naxes, unit, names=None, physical_types=None):
111112
"""
112113
axes_order = tuple(range(naxes))
113114

114-
name = None
115+
if names is None:
116+
# Ensure that the frame name is always unique
117+
name = f"Frame-{str(uuid.uuid4()).split('-')[1]}"
118+
else:
119+
# If we have axes names use them as the frame name
120+
name = "-".join(names) + " Frame"
115121
axes_type = "CUSTOM"
116122

117123
if isinstance(unit, (u.Unit, u.IrreducibleUnit, u.CompositeUnit)):
@@ -121,7 +127,6 @@ def _generate_generic_frame(naxes, unit, names=None, physical_types=None):
121127
axes_type = "SPATIAL"
122128

123129
if all(u.pix.is_equivalent(un) for un in unit):
124-
name = "PixelFrame"
125130
axes_type = "PIXEL"
126131

127132
axes_type = tuple([axes_type] * naxes)

0 commit comments

Comments
 (0)