File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -2691,6 +2691,30 @@ def cfa_update_file_substitutions(
2691
2691
for c in self.constructs.filter_by_data(todict=True).values():
2692
2692
c.cfa_update_file_substitutions(substitutions)
2693
2693
2694
+ def get_domain(self):
2695
+ """Return the domain.
2696
+
2697
+ .. versionadded:: NEXTVERSION
2698
+
2699
+ .. seealso:: `domain`
2700
+
2701
+ :Returns:
2702
+
2703
+ `Domain`
2704
+ The domain.
2705
+
2706
+ **Examples**
2707
+
2708
+ >>> d = f.get_domain()
2709
+
2710
+ """
2711
+ domain = super().get_domain()
2712
+
2713
+ # Set axis cyclicity for the domain
2714
+ domain._cyclic = self._cyclic
2715
+
2716
+ return domain
2717
+
2694
2718
def radius(self, default=None):
2695
2719
"""Return the radius of a latitude-longitude plane defined in
2696
2720
spherical polar coordinates.
You can’t perform that action at this time.
0 commit comments