Skip to content

Commit

Permalink
Unused
Browse files Browse the repository at this point in the history
  • Loading branch information
DMagic1 committed Feb 21, 2017
1 parent 009c0ae commit 667a045
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions SCANsat/SCAN_Data/SCANdata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -624,20 +624,6 @@ private byte[] ConvertToByte(Int32[,] iArray)
return iArray;
}

//One time conversion of single byte[,] to Int32 to recover old scanning data
private Int32[,] RecoverToInt(byte[,] bArray)
{
Int32[,] iArray = new Int32[360, 180];
for (int i = 0; i < 360; i++)
{
for (int j = 0; j < 180; j++)
{
iArray[i, j] = (Int32)bArray[i, j];
}
}
return iArray;
}

/* DATA: serialization and compression */
internal string integerSerialize()
{
Expand Down

0 comments on commit 667a045

Please sign in to comment.