Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions esmvalcore/cmor/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,7 @@ def _assign_dimensions(self, var, generic_levels):
)
raise

axis = coord.axis
if not axis:
axis = 'none'

var.coordinates[axis] = coord
var.coordinates[dimension] = coord

def _load_coordinates(self):
self.coords = {}
Expand Down Expand Up @@ -392,7 +388,11 @@ def __init__(self, table_type, short_name):
self.dimensions = []
"""List of dimensions"""
self.coordinates = {}
"""Coordinates"""
"""Coordinates

This is a dict with the names of the dimensions as keys and
CoordinateInfo objects as values.
"""

self._json_data = None

Expand Down