I wrote a blog about UCS's. It might help be of some help.
http://www.seemsixty7.com/blog/2017/04/25/cad-intermediate-what-is-ucs-for-anyway/
Basically AutoCAD has the ability to work in different places utilizing a different origin location, including different X,Y, and Z vectors. You can pick any point in an AutoCAD drawing and create a UCS from it, you can rotate the X,Y and or Z axis as needed. It is really beneficial in 3D Modeling, as well as many other project types.
Each entity in AutoCAD is stored in the AutoCAD database of that drawing. The coordinates are stored using World Coordinates of that drawing. It does not mean actual WORLD as in Earth Coordinates. It is basically just a Cartesian coordinate system that includes the Z axis.
Try this.
Start a new drawing. draw a line from 0,0,0 to 1,1,0
Then look at it's DXF data using:
(entget (entlast))
((-1 . <Entity name: 7ffffb064e0>) (0 . "LINE") (330 . <Entity name: 7ffffb03820>) (5 . "51E") (100 . "AcDbEntity") (67 . 0) (410 . "Model") (8 . "0") (100 . "AcDbLine") (10 0.0 0.0 0.0) (11 1.0 1.0 0.0) (210 0.0 0.0 1.0))
Look at the 10 and 11 values. The appear as they should.
Use the UCS command to create a new UCS with simply a new XY origin.
Command: ucs
Current ucs name: *WORLD*
Specify origin of UCS or [Face/NAmed/OBject/Previous/View/World/X/Y/Z/ZAxis] <World>: n
Specify origin of new UCS or [ZAxis/3point/OBject/Face/View/X/Y/Z] <0,0,0>: 5,5,0
Now draw another line from the new ucs origin as we did before from 0,0,0 to 1,1,0
Now look at the dxf data for it.
(entget (entlast))
((-1 . <Entity name: 7ffffb064f0>) (0 . "LINE") (330 . <Entity name: 7ffffb03820>) (5 . "51F") (100 . "AcDbEntity") (67 . 0) (410 . "Model") (8 . "0") (100 . "AcDbLine") (10 10.0 10.0 0.0) (11 11.0 11.0 0.0) (210 0.0 0.0 1.0))
Notice the 10 and 11 points are not as they were before. The coordinates are WCS based not the UCS based one we just typed in.
Switch back to WCS
UCS
[Enter] to accept WCS
now if you use the ID command or list the last line, you will see the coordinates match the values listed in the dxf data we reviewed. You can also see that even though we drew both lines from 0,0,0 to 1,1,0 they are not in the same location.
Hopefully that helps some,