Ad

Sunday, August 28, 2022

AutoCAD Fields: Layout Name Conversion

 One can use Diesel expressions to convert data in AutoCAD. In this case, I want to convert the layout tab name to a fuller name. So if I have CIV I want the field to show "Civil" and if the layout tab name is "INF" it should be "Infrastructure". 

$(if,$(eq,$(getvar, "ctab"),"CIV"),"Civil",$(if,$(eq,$(getvar, "ctab"),"INF"),"Infrastructure","Error"))

The help topic for Diesel expressions may be found here: 

https://knowledge.autodesk.com/support/autocad-lt/learn-explore/caas/CloudHelp/cloudhelp/2019/ENU/AutoCAD-LT/files/GUID-F94A885A-4DA2-432B-AC1A-EB49CC6C1C72-htm.html 

Note that the link will probably die in 3 to 4 years. 

Here is a video showing it in action: https://youtu.be/zUpX04RfnNA 

Wednesday, August 17, 2022

Modify XSL Reports to Remove Spaces in Bearings and Directions

This blog post shows how to find the locations of the spaces in the direction found in the bearings or directions in the LandXML reports.

If you open the xsl files in the report files (C:\ProgramData\Autodesk\C3D 2023\enu\Data\Reports\xsl\) you should be able to find the locations where the directions are being formatted. In the image below I've searched for ""S " in Notepad++ and found some of the locations. Go in and change "S " to "S" and that should give you the results you are looking for. Also do this for the locations where "W ", "E ", and "N ".

The dashes in the image below is where the spaces placeholders are being added:

You would then need to find where the "-" is being turned into spaces by looking where the formatAngleToDMS is called from. 


Searching for "+ " " + " should find the locations. 






Saturday, August 06, 2022

Visual Studio Code => Setup Java Maybe?

These are some random notes. Ignore. 

This installs wsl from Terminal in Visual Studio Code:

  • sudo apt install wsl
This sets JAVA_HOME, but really didn't work. Needed to install java on WSL2:
  • export JAVA_HOME="/mnt/c/DeleteMe/java/java-1.8.0-openjdk-1.8.0.342-1.b07.redhat.windows.x86_64"
This installs java jdk:
  • sudo apt install default-jdk
WSL commands were not working as expected. The WSL needed to be updated to get everything setup correctly. I, unfortunately, didn't write down the command. 

To view a file in Visual Studio Code, just click on the file in Explorer. It's possible to do in Terminal, but I think I'm a GUI person at this point.
    

Rebuild in the Java Projects, not the files.
    
For the code, need to rebuild and clear any errors.


LinkWithin

Blog Widget by LinkWithin

Ad