Import cloud points options?

 From:  Michael Gibson
11686.6 In reply to 11686.5 
Hi Matadem,

re:
> Michael can it do z as well?

I didn't see any z coordinates in your example, but it if it has a 'Z' label on it like it does for X and Y you can update the script to handle that.

Open the ImportPointFilematadem.js file in a text editor and on line 112 which currently has this:
code:
			if ( val[0].toUpperCase() == 'X' || val[0].toUpperCase() == 'Y' )


Change it to this instead:
code:
			if ( val[0].toUpperCase() == 'X' || val[0].toUpperCase() == 'Y' || val[0].toUpperCase() == 'Z' )


- Michael