@enervance/insight-cim-model 0.0.377 → 0.0.379

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -264,6 +264,7 @@ class ConverterIntegral7 {
264
264
  frame.openXMLModel();
265
265
  this.logger.debug(`Serialize MAS profile: ${frame.mas}`);
266
266
  console.log(`Serialize MAS profile: ${frame.mas}`);
267
+ frame.overrideDecription();
267
268
  frame.serializeModel(defaultValuesConfig);
268
269
  yield frame.closeXMLModel();
269
270
  let endTime = perf_hooks.performance.now();
@@ -7463,8 +7464,8 @@ _ConverterIntegral7_configurableDLConvertOptions = new WeakMap();
7463
7464
  function getGeoCoordinates(i7Data) {
7464
7465
  /** Fall 1
7465
7466
  * geokoor_pl_breite_h && geokoor_pl_breite_m geokoor_pl_breite_s sind gepflegt */
7466
- if (i7Data.geokoor_pl_breite_h && i7Data.geokoor_pl_breite_m && i7Data.geokoor_pl_breite_s &&
7467
- i7Data.geokoor_pl_laenge_h && i7Data.geokoor_pl_laenge_m && i7Data.geokoor_pl_laenge_s) {
7467
+ if (i7Data.geokoor_pl_breite_h !== undefined && i7Data.geokoor_pl_breite_m !== undefined && i7Data.geokoor_pl_breite_s !== undefined &&
7468
+ i7Data.geokoor_pl_laenge_h !== undefined && i7Data.geokoor_pl_laenge_m !== undefined && i7Data.geokoor_pl_laenge_s !== undefined) {
7468
7469
  /** Umrechnung von Grad, Minute und Sekunde in Dezimalgrad
7469
7470
  * (((Sekunden/60) + Minuten)/60) + Grad */
7470
7471
  /** Lon Laenge*/