Hi all,
I am naive to VBA codes and stuck at rearrangement of Latitude and Longitude dataset.
I have Lat Long data in single column as displayed below
Row 1: (24.111553448297805 71.80388800799847 0.0 0.0;24.112437854299895 71.80957295000553 0.0 0.0;24.109048006151767 71.80965978652239 0.0 0.0;24.107890901931206 71.803960762918 0.0 0.0;24.111553448297805 71.80388800799847 0.0 0.0)
Row 2: (24.0883183 71.8525179 0.0 0.0;24.087981318621004 71.85273505747318 0.0 0.0;24.08760330899392 71.85192804783583 0.0 0.0;24.087990501027214 71.85173526406288 0.0 0.0;24.0883183 71.8525179 0.0 0.0)
Row 3: (24.179023402434364 72.56080001592636 0.0 0.0;24.178842637629955 72.56082180887459 0.0 0.0;24.1788546 72.5612706 0.0 0.0;24.179038695553288 72.56117485463619 0.0 0.0;24.179023402434364 72.56080001592636 0.0 0.0)
Row N:
As depicted in the above dataset, there are Latitude, Longitude, Height, Depth and ;(colon). and all the rows having different length of lat long values or observations.
I want above data as below
MULTYPOLYGON(((71.8038880079984 24.1115534482978,71.8095729500055 24.1124378542998,71.8096597865223 24.1090480061517,71.803960762918 24.1078909019312,71.8038880079984 24.1115534482978)))
I need not required Height and Depth. and colon has to be replaced with comma.
Thanks in advance.
I am naive to VBA codes and stuck at rearrangement of Latitude and Longitude dataset.
I have Lat Long data in single column as displayed below
Row 1: (24.111553448297805 71.80388800799847 0.0 0.0;24.112437854299895 71.80957295000553 0.0 0.0;24.109048006151767 71.80965978652239 0.0 0.0;24.107890901931206 71.803960762918 0.0 0.0;24.111553448297805 71.80388800799847 0.0 0.0)
Row 2: (24.0883183 71.8525179 0.0 0.0;24.087981318621004 71.85273505747318 0.0 0.0;24.08760330899392 71.85192804783583 0.0 0.0;24.087990501027214 71.85173526406288 0.0 0.0;24.0883183 71.8525179 0.0 0.0)
Row 3: (24.179023402434364 72.56080001592636 0.0 0.0;24.178842637629955 72.56082180887459 0.0 0.0;24.1788546 72.5612706 0.0 0.0;24.179038695553288 72.56117485463619 0.0 0.0;24.179023402434364 72.56080001592636 0.0 0.0)
Row N:
As depicted in the above dataset, there are Latitude, Longitude, Height, Depth and ;(colon). and all the rows having different length of lat long values or observations.
I want above data as below
MULTYPOLYGON(((71.8038880079984 24.1115534482978,71.8095729500055 24.1124378542998,71.8096597865223 24.1090480061517,71.803960762918 24.1078909019312,71.8038880079984 24.1115534482978)))
I need not required Height and Depth. and colon has to be replaced with comma.
Thanks in advance.