Search found 2 matches

by Tietze
Thu Sep 04, 2003 8:01 pm
Forum: Coding Questions
Topic: Read Shape Format
Replies: 3
Views: 1287

Hello,

thanks For your help. I coded now this:


Structure d
lowLONG.l
hiLONG.l
EndStructure

value.d

Structure FourBytes
b1.b
b2.b
b3.b
b4.b
EndStructure

Procedure.l InversLong(*Long.FourBytes)
Protected *InvertedLong.Long
*InvertedLong = *Long
*InvertedLong\l = *Long\b1 ...
by Tietze
Thu Sep 04, 2003 3:02 pm
Forum: Coding Questions
Topic: Read Shape Format
Replies: 3
Views: 1287

Read Shape Format

Hello,

I have a problem to read the shapeformat with purebaisc. The specification is here:

http://www.esri.com/library/whitepapers/pdfs/shapefile.pdf

To read integer type variables is no problem:

long.l = ReadLong()
test.s=str(long.l)

But how could I read the double type variables? Could you ...