geo rectify coordinates in vba

P

paul

i want to write a VBA commands to place the two raw coordinates into
the
array Coord(2) and the four correction parameters into the array
M(2,2)

can anyone help??

p.s. the brackets are supposed to be one whole bracket around each of
the two coordinates)





In order to georectify a point given as x,y coordinates the points
are represented by a vector ( 107.046)
( 450.234) the points are
multiplied by a correction
matrix ( 1034 205)
( -205 1086) and a translation vector added to the
result.
 
D

Dave D-C

paul said:
i want to write a VBA commands to place the two raw coordinates into
the array Coord(2) and the four correction parameters into the array
M(2,2)
can anyone help??
p.s. the brackets are supposed to be one whole bracket around each of
the two coordinates)
In order to georectify a point given as x,y coordinates the points
are represented by a vector ( 107.046) ( 450.234) the points are
multiplied by a correction matrix ( 1034 205) ( -205 1086)
and a translation vector added to the result.

On the sheet you can use MMULT and maybe MINVERSE;
in VBA code you can use arrays and subroutines.
AT what step do you have a question?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top