Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

(tick) Accepted

  • Remove ISpatialReference which is used in IElementSet.SpatialReference and instead use:

...

  • Q: what to do with values on a huge grid coverages? How to pass them using GetValues()? Should we pass double[] or GridCoverage there?
  • Cosmetic issue:

instead of:

Code Block

	public interface IElementSet
	{
	      double GetXCoordinate(int elementIndex, int vertexIndex);
	      double GetYCoordinate(int elementIndex, int vertexIndex);
	      double GetZCoordinate(int elementIndex, int vertexIndex);
	}

write:

Code Block

	public interface IElementSet
	{
	      ICoordinate GetVertexCoordinate(int elementIndex, int vertexIndex);
	}

where

...