> Using GAMBAS 2.19 I tried creating an array:
>
> PUBLIC Elevation AS Short[65536, 65536]
>
> With no data assigned to any of the array's elements, reading
> Elevation[0,0] shows a value of 24. I'm thinking it should be zero.
> Reading
> Elevation[4095,0] crashes the program. I tried reading E
Doriano Blengino wrote:
>
> Probably there is some bug here, but anyway I would use some other mean
> to achieve the goal.
> ...
> If you really have 65536*65536 cells, all alive together, you could use
> a binary file on disk. Disk caching will speed up things, perhaps better
> than fake ram
kevinfishburne ha scritto:
> Using GAMBAS 2.19 I tried creating an array:
>
> PUBLIC Elevation AS Short[65536, 65536]
>
> With no data assigned to any of the array's elements, reading Elevation[0,0]
> shows a value of 24. I'm thinking it should be zero. Reading
> Elevation[4095,0] crashes the progr
Using GAMBAS 2.19 I tried creating an array:
PUBLIC Elevation AS Short[65536, 65536]
With no data assigned to any of the array's elements, reading Elevation[0,0]
shows a value of 24. I'm thinking it should be zero. Reading
Elevation[4095,0] crashes the program. I tried reading Elevation[100,100]