I need an advice regarding parsing a blob field from sqlite db. The field's content is a polygon information which I suppose is something like array of arrays.
I started like this:
NSData * theData = [[NSData alloc]initWithBytes:sqlite3_column_blob(statement, 0) length:sqlite3_column_bytes(statement,0)];
which gives me some like (this is just a part):
<01030000 00010000 00930100 0099d711 876c4031 40514cde 00330348 409f0436 e7e03d31 40a7b052 41450348 40fb230c 03963c31 402b14e9 7e4e0348 407e1821 3cda3031 407e1ea3 3cf30248 40fd1186 014b2e31 40fd4ae7>
Not much sure how to continue now. Any help will be appreciated.