AgGateway.ADAPT.ISOv4Plugin.ExportMappers.PolygonMapper.Map C# (CSharp) Method

Map() private method

private Map ( AgGateway.ADAPT.ApplicationDataModel.Shapes.LinearRing ring, LSGA ringType ) : IEnumerable
ring AgGateway.ADAPT.ApplicationDataModel.Shapes.LinearRing
ringType LSGA
return IEnumerable
        private IEnumerable<LSG> Map(LinearRing ring, LSGA ringType)
        {
            var isoLineStrings = new List<LSG>
            {
                new LSG
                {
                    A = ringType,
                    Items = ring.Points.Select(Map).ToArray()
                }
            };

            return isoLineStrings;
        }

Same methods

PolygonMapper::Map ( AgGateway.ADAPT.ApplicationDataModel.Shapes.MultiPolygon polygon, BoundaryType type, string name ) : PLN
PolygonMapper::Map ( Point coordinate ) : PNT