kiuliani / geoda

Automatically exported from code.google.com/p/geoda
GNU General Public License v3.0
0 stars 0 forks source link

Export Large Values Error (exports as large negative integer) #159

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I just noticed that there is still a problem with exporting large values.
I have a column with a tract ID as a string and it exports as a very
large negative integer. This happened when exporting selected and
exporting point files.

Original issue reported on code.google.com by lixun...@gmail.com on 29 Jun 2015 at 11:34

GoogleCodeExporter commented 8 years ago
The fix in (1.7.29-1.7.33) used GDAL 2.0 to support big integer number using 
int64. If the number is larger then the max of int64, an zero should be placed. 

One small fix is converting from wxString to integer number is changed using 
wxString.ToLong to wxStringToLongLong to support wxInt64. This is in ci #3671.

Verification is needed in next build (1.7.35).

Original comment by lixun...@gmail.com on 1 Jul 2015 at 8:06