-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into gis_objects_cleaning
- Loading branch information
Showing
14 changed files
with
129 additions
and
249 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using Speckle.Sdk.Models; | ||
|
||
namespace Speckle.Objects.Data; | ||
|
||
/// <summary> | ||
/// Represents a ArcGIS.Core.CoreObjectsBase object in ArcGIS | ||
/// </summary> | ||
[SpeckleType("Objects.Data.ArcgisObject")] | ||
public class ArcgisObject : Base, IGisObject | ||
{ | ||
public required string name { get; set; } | ||
public required string type { get; set; } | ||
|
||
[DetachProperty] | ||
public required List<Base> displayValue { get; set; } | ||
|
||
public required Dictionary<string, object?> properties { get; set; } | ||
|
||
public required string units { get; set; } | ||
|
||
IReadOnlyList<Base> IDisplayValue<IReadOnlyList<Base>>.displayValue => displayValue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
using Speckle.Sdk.Models; | ||
|
||
namespace Speckle.Objects.Data; | ||
|
||
/// <summary> | ||
/// Represents a wrapper object in ETABS | ||
/// </summary> | ||
[SpeckleType("Objects.Data.EtabsObject")] | ||
public class EtabsObject : Base, ICsiObject | ||
{ | ||
public required string name { get; set; } | ||
public required string type { get; set; } | ||
|
||
/// <summary> | ||
/// Children objects, eg joints, this etabs object may contain. | ||
/// </summary> | ||
[DetachProperty] | ||
public required List<EtabsObject> elements { get; set; } | ||
|
||
[DetachProperty] | ||
public required List<Base> displayValue { get; set; } | ||
|
||
public required Dictionary<string, object?> properties { get; set; } | ||
|
||
public required string units { get; set; } | ||
|
||
IReadOnlyList<ICsiObject> ICsiObject.elements => elements; | ||
|
||
IReadOnlyList<Base> IDisplayValue<IReadOnlyList<Base>>.displayValue => displayValue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Speckle.Sdk.Models; | ||
|
||
namespace Speckle.Objects.Data; | ||
|
||
/// <summary> | ||
/// Represents a "first selectable ancestor" Navisworks.ModelItem object in Navisworks | ||
/// </summary> | ||
[SpeckleType("Objects.Data.NavisworksObject")] | ||
public class NavisworksObject : Base, INavisworksObject | ||
{ | ||
public required string name { get; set; } | ||
|
||
[DetachProperty] | ||
public required List<Base> displayValue { get; set; } | ||
|
||
public required Dictionary<string, object?> properties { get; set; } | ||
|
||
public required string units { get; set; } | ||
|
||
IReadOnlyList<Base> IDisplayValue<IReadOnlyList<Base>>.displayValue => displayValue; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.