Tag: convert

  • Convert Drafix (QuickCAD) CAD file to DWG

    Recently I had to convert a CAD file to DWG for a surveyor. I opened the CAD file up in a text editor and the third line read ‘Drafix Windows CAD’. I searched the web for the Drafix software and everyone had the same problem. Drafix CAD was no longer able to be purchased or…

  • Convert from Google KML to GPS Exchange Format GPX with PHP

    Here is a quick post on converting from KML files used in Google Earth/Maps to GPX Exchange Format (GPX) with PHP. Code is quite explanatory, change $u with the location of the KML file, code will output GPX XML. Alternatively, download the code here. Let me know if you find any issues.

  • Decimal to Binary functions in Visual Basic

    Here are functions to perform decimal to/from binary conversion. CBin – converts a decimal integer to binary string. CDeci – converts a binary string to decimal integer. CBinS16 – converts a decimal signed integer to 16 bit binary string. CdecS16 – converts a 16 bit binary string to decimal signed integer.