Ejemplo n.º 1
0
 public void CellToProj(int col, int row, out double x, out double y)
 {
     grid.CellToProj(col, row, out x, out y);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Given a Row and Column, it figures out the georeferenced X, Y location
 /// corresponding to the center of that grid cell.
 /// </summary>
 /// <param name="Column">Integer, Column of the grid cell to get the coordinates of</param>
 /// <param name="Row">Integer, Row of the grid cell to get the coordinates of</param>
 /// <param name="x">The double value of the horizontal coordinate</param>
 /// <param name="y">The double value of the vertical coordinate</param>
 public void CellToProj(int Column, int Row, ref double x, ref double y)
 {
     m_Grid.CellToProj(Column, Row, out x, out y);
 }