Changes between Version 13 and Version 14 of FGDBSpecification


Ignore:
Timestamp:
Oct 11, 2013, 11:36:25 AM (11 years ago)
Author:
Even Rouault
Comment:

Fix : use varint (instead of varuint) for first point of first polygon

Legend:

Unmodified
Added
Removed
Modified
  • FGDBSpecification

    v13 v14  
    224224  * First point of first part :
    225225||'''Format'''||'''Content'''||
    226 || varuint || x[0] = (varuint + xorigin * xyscale) / xyscale ||
    227 || varuint || y[0] = (varuint + yorigin * xyscale) / xyscale ||
    228 || varuint ( present only if Z component ) || z[0] = (varuint + zorigin * zscale) / zscale ||
    229 || varuint ( present only if M component ) || m[0] = (varuint + morigin * mscale) / mscale ||
     226|| varuint || x[0] = (varint + xorigin * xyscale) / xyscale ||
     227|| varuint || y[0] = (varint + yorigin * xyscale) / xyscale ||
     228|| varuint ( present only if Z component ) || z[0] = (varint + zorigin * zscale) / zscale ||
     229|| varuint ( present only if M component ) || m[0] = (varint + morigin * mscale) / mscale ||
     230
     231Note: varint here (and not varuint like in point or multipoint). Rationale is unclear, but there are samples that seem to be indicate that it's like that.
    230232
    231233  * For each next point (other points of the first part, or for all points of the following parts) :