Geo-Web-Project / specs

1 stars 1 forks source link

Define parcel structure #5

Closed codynhat closed 3 years ago

codynhat commented 3 years ago

What is the stored structure that represents a parcel of land? Each parcel must contain:

codynhat commented 3 years ago

Here's an initial structure.

struct LandParcel {
  uint256 id;
  EnumerableSet.UintSet geohashes;
  bytes contentIdentifier;

  ..harberger info
}