Catalogue.Data.Write.RecordService.PerformDenormalizations C# (CSharp) Method

PerformDenormalizations() private method

private PerformDenormalizations ( Record record ) : void
record Catalogue.Data.Model.Record
return void
        void PerformDenormalizations(Record record)
        {
            // we store the bounding box as wkt so we can index it
            if (!BoundingBoxUtility.IsBlank(record.Gemini.BoundingBox))
                record.Wkt = BoundingBoxUtility.ToWkt(record.Gemini.BoundingBox);
        }