Changes between Version 14 and Version 15 of FGDBSpecification


Ignore:
Timestamp:
Oct 11, 2013, 1:55:20 PM (11 years ago)
Author:
Even Rouault
Comment:

Add missing s/varuint/varint for first point of polygon

Legend:

Unmodified
Added
Removed
Modified
  • FGDBSpecification

    v14 v15  
    224224  * First point of first part :
    225225||'''Format'''||'''Content'''||
    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 ||
     226|| varint || x[0] = (varint + xorigin * xyscale) / xyscale ||
     227|| varint || y[0] = (varint + yorigin * xyscale) / xyscale ||
     228|| varint ( present only if Z component ) || z[0] = (varint + zorigin * zscale) / zscale ||
     229|| varint ( present only if M component ) || m[0] = (varint + morigin * mscale) / mscale ||
    230230
    231231Note: 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.