• Home
  • Manual
  • API Documentation
Search Results for

    Show / Hide Table of Contents
      • ABRFilterExample
      • ABRQueryExample
      • ABRSpaceConvertExample
      • BackgroundColor
      • DebugDraw
      • DisableABRLights
      • GenerateDataAndUseStyle
      • Grabbable
      • Grabber
      • HideShowMenu
      • LightEditor
      • LightEditorTile
      • PerformanceEnhancer
      • SVScreenshot
    • IVLab.ABREngine
      • ABRConfig
      • ABRConfig.Consts
      • ABRConfig.GroupToDataMatrixOverrideFields
      • ABRDataContainer
      • ABREngine
      • ABREngine.StateChangeDelegate
      • ABRInputAttribute
      • ABRInputGenre
      • ABRInputIndexerModule
      • ABRLight
      • ABRLightManager
      • ABRPlateType
      • ABRServer
      • ABRStateParser
      • AnglePrimitive
      • BooleanPrimitive
      • ColormapVisAsset
      • DataImpression
      • DataImpressionGroup
      • DataManager
      • DataPath
      • DataPath.DataPathType
      • DataPoint
      • DataRange<T>
      • DataTopology
      • Dataset
      • FilePathVisAssetFetcher
      • FloatPrimitive
      • GlyphGradient
      • GlyphVisAsset
      • GradientBlendMap
      • HttpDataLoader
      • HttpStateFileLoader
      • HttpVisAssetFetcher
      • IABRInput
      • IABRStateLoader
      • IColormapVisAsset
      • ICoordSpaceConverter
      • IDataAccessor
      • IDataImpressionRenderInfo
      • IDataLoader
      • IDataVariable<T>
      • IFloatPrimitive
      • IGlyphVisAsset
      • IHasDataset
      • IHasKeyData
      • IIntegerPrimitive
      • IKeyDataRenderInfo
      • ILineTextureVisAsset
      • IPrimitive
      • IPrimitiveGradient
      • ISurfaceTextureVisAsset
      • ITextureGradient
      • IVisAsset
      • IVisAssetFetcher
      • IVisAssetGradient<T>
      • IVolumeCoordSpaceConverter
      • IVolumeDataAccessor
      • InstancedMeshRenderer
      • InstancedSurfaceDataImpression
      • IntegerPrimitive
      • KeyData
      • LengthPrimitive
      • LineKeyData
      • LineTextureGradient
      • LineTextureVisAsset
      • MediaDataLoader
      • Notifier
      • PathStateFileLoader
      • PercentPrimitive
      • PointKeyData
      • PrimitiveGradient
      • RawABRInput
      • RawDataset
      • RawDataset.BinaryData
      • RawDataset.JsonHeader
      • RawDatasetAdapter
      • RawPrimitiveGradient
      • RawVisAssetGradient
      • RenderHints
      • ResourceStateFileLoader
      • ResourceVisAssetFetcher
      • ResourcesDataLoader
      • ScalarDataVariable
      • SerializableFloatArray
      • SerializableVectorArray
      • SimpleGlyphDataImpression
      • SimpleLineDataImpression
      • SimpleLineRenderInfo
      • SimpleSurfaceDataImpression
      • SimpleSurfaceRenderInfo
      • SimpleVolumeDataImpression
      • StateLocalVisAssetFetcher
      • SurfaceKeyData
      • SurfaceTextureGradient
      • SurfaceTextureVisAsset
      • TextStateFileLoader
      • TypeExtentions
      • UnityObjectSerializer
      • UpdateLevel
      • VectorDataVariable
      • VisAsset
      • VisAssetGradient
      • VisAssetLoader
      • VisAssetManager
      • VolumeKeyData
    • IVLab.ABREngine.Examples
      • CSVToPoints
      • CreateDataset
      • InteractiveState
      • MtStHelensData
      • MtStHelensVisDriver
    • IVLab.ABREngine.ExtensionMethods
      • DirectoryInfoExtensions
      • ScriptableObjectExtensions
    • IVLab.ABREngine.Legends
      • ABRLegend
      • ABRLegendEntry
      • ABRLegendEntry.Label
      • ABRLegendGeometry

    Interface IDataVariable<T>

    Lightweight / high level container for a data variable. Variables keep track of their ranges and path, but the actual Data Arrays are preserved within the original RawDataset.

    Namespace: IVLab.ABREngine
    Assembly: IVLab.ABREngine.Runtime.dll
    Syntax
    public interface IDataVariable<T> : IHasDataset, IABRInput
    Type Parameters
    Name Description
    T

    Properties

    | Improve this Doc View Source

    CustomizedRange

    Have this var's ranges been customized?

    Declaration
    bool CustomizedRange { get; set; }
    Property Value
    Type Description
    bool
    | Improve this Doc View Source

    OriginalRange

    Save the original range in case the user wants to reset it later.

    Declaration
    DataRange<T> OriginalRange { get; set; }
    Property Value
    Type Description
    DataRange<T>
    | Improve this Doc View Source

    Path

    The DataPath that represents this variable

    Declaration
    string Path { get; }
    Property Value
    Type Description
    string
    | Improve this Doc View Source

    Range

    Range is calculated by the DataManager when it imports a new dataset. Range is calculated from the smallest/largest values encountered across every instance of this variable, across all datasets.

    Declaration
    DataRange<T> Range { get; set; }
    Property Value
    Type Description
    DataRange<T>
    | Improve this Doc View Source

    SpecificRanges

    Dictionary of keyData paths that have specific ranges for this variable

    Declaration
    Dictionary<string, DataRange<T>> SpecificRanges { get; set; }
    Property Value
    Type Description
    Dictionary<string, DataRange<T>>

    Methods

    | Improve this Doc View Source

    GetArray(KeyData)

    Get the actual data values in the context of this particular Key Data object

    Declaration
    T[] GetArray(KeyData keyData)
    Parameters
    Type Name Description
    KeyData keyData
    Returns
    Type Description
    T[]
    | Improve this Doc View Source

    IsPartOf(KeyData)

    Determine if this variable is a part of the key data

    Declaration
    bool IsPartOf(KeyData keyData)
    Parameters
    Type Name Description
    KeyData keyData
    Returns
    Type Description
    bool
    • Improve this Doc
    • View Source
    In This Article
    Back to top Interactive Visualization Lab
    Copyright 2023, Regents of the University of Minnesota, All Rights Reserved