I would like to get features spatial reference limitations of coordinate x and y by using snippet like:
sr = arcpy.Describe('my feature').spatialReference
dom=sr.domain.split()
xmin=float(dom[0])
ymin=float(dom[1])
xmax=float(dom[2])
ymax=float(dom[3])
...
But it seems don't work. For a WGS84 GCS, the result is xmin=-180, xmax=180, ymin=-90 but ymax=270 rather than 90, and more strange result for a WGS84 PCS. Does sr.domain is not proper for my needs?