MantisBT - ParaView
View Issue Details
0012581ParaView(No Category)public2011-09-08 01:112016-08-12 09:58
Raymond Cohen 
Cory Quammen 
normalminorhave not tried
closedmoved 
3.10.1 
 
TBD
incorrect functionality
0012581: servermanager.filters.Slice not available in pvpython
In a python shell I can access the "Slice" filter:

----------------

>>> dir(servermanager.filters)
['AMRContour', 'AMRDualClip', 'AlltoN', 'AnnotateTimeFilter', 'AppendAttributes', 'AppendDatasets', 'AppendGeometry', 'Balance', 'BlockScalars', 'CTHSurface', 'CacheKeeper', 'Calculator', 'CellCenters', 'CellDatatoPointData', 'Clean', 'CleantoGrid', 'ClientServerMoveData', 'Clip', 'ClipClosedSurface', 'ClipGenericDataset', 'ComputeDerivatives', 'Connectivity', 'ContingencyStatistics', 'Contour', 'ContourGenericDataset', 'ConvertSelection', 'Crop', 'Curvature', 'D3', 'Decimate', 'Delaunay2D', 'Delaunay3D', 'DescriptiveStatistics', 'Elevation', 'ExtractAMRBlocks', 'ExtractAttributes', 'ExtractBlock', 'ExtractCTHParts', 'ExtractCellsByRegion', 'ExtractEdges', 'ExtractGenericDatasetSurface', 'ExtractLevel', 'ExtractSelection', 'ExtractSelectioninternal', 'ExtractSubset', 'ExtractSurface', 'FFTOfSelectionOverTime', 'FOFSODHaloFinder', 'FeatureEdges', 'FlattenFilter', 'GenerateIds', 'GenerateQuadraturePoints', 'GenerateQuadratureSchemeDictionary', 'GenerateSurfaceNormals', 'GeometryFilter', 'Glyph', 'GlyphWithCustomSource', 'Gradient', 'GradientMagnitude', 'GradientOfUnstructuredDataSet', 'GridConnectivity', 'GroupDatasets', 'Histogram', 'ImageShrink', 'IntegrateVariables', 'InterpolatetoQuadraturePoints', 'IntersectFragments', 'IsoVolume', 'KMeans', 'LevelScalars', 'LinearExtrusion', 'LoopSubdivision', 'MPIMoveData', 'MaskPoints', 'MaterialInterfaceFilter', 'Median', 'MergeBlocks', 'MeshQuality', 'MinMax', 'MulticorrelativeStatistics', 'NormalGlyphs', 'OctreeDepthLimit', 'OctreeDepthScalars', 'OrderedCompositeDistributor', 'Outline', 'OutlineCorners', 'OutlineCurvilinearDataSet', 'OutlineGenericDataSet', 'ParticlePathlines', 'ParticleTracer', 'PlotData', 'PlotGlobalVariablesOverTime', 'PlotOnIntersectionCurves', 'PlotOnSortedLines', 'PlotOverLine', 'PlotSelectionOverTime', 'PointDatatoCellData', 'PolyLineToRectilinearGrid', 'PrincipalComponentAnalysis', 'ProbeLocation', 'ProcessIdScalars', 'ProgrammableFilter', 'PythonCalculator', 'QuadricClustering', 'RandomVectors', 'RectilinearGridConnectivity', 'RectilinearGridGeometryFilter', 'ReductionFilter', 'Reflect', 'ResampleWithDataset', 'Ribbon', 'RotationalExtrusion', 'ScatterPlot', 'Shrink', 'Slice', 'SliceGenericDataset', 'Smooth', 'StreamTracer', 'StreamTracerForGenericDatasets', 'StreamTracerWithCustomSource', 'Subdivide', 'SurfaceFlow', 'SurfaceVectors', 'TableFFT', 'TableToPoints', 'TableToStructuredGrid', 'TemporalCache', 'TemporalInterpolator', 'TemporalShiftScale', 'TemporalSnaptoTimeStep', 'TemporalStatistics', 'Tessellate', 'TessellateGenericDataset', 'Tetrahedralize', 'TextureMaptoCylinder', 'TextureMaptoPlane', 'TextureMaptoSphere', 'Threshold', 'Transform', 'TriangleStrips', 'Triangulate', 'Tube', 'UpdateSuppressor2', 'WarpByScalar', 'WarpByVector', '__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__']
>>> dir(servermanager.filters.Slice)
['CellData', 'FieldData', 'FileNameChanged', 'GetCellDataInformation', 'GetDataInformation', 'GetFieldDataInformation', 'GetPointDataInformation', 'GetProperty', 'GetPropertyValue', 'Initialize', 'InitializeFromProxy', 'Input', 'ListProperties', 'PointData', 'SetPropertyWithName', 'SliceOffsetValues', 'SliceType', 'UpdatePipeline', 'UpdatePipelineInformation', '_Proxy__ConvertArgumentsAndCall', '_Proxy__GetActiveCamera', '__class__', '__del__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattr__', '__getattribute__', '__getitem__', '__hash__', '__init__', '__iter__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'add_attribute']
>>>

------------------------------------
But in a pvpython script it is unavailable:
------------------------------------
test.py:
------------------------------------

from paraview import servermanager

# create a built-in connection
if not servermanager.ActiveConnection:
    connection = servermanager.Connect()

x = dir(servermanager.filters)
print x
x = dir(servermanager.filters.Slice)
print x
------------------------------------

> pvpython test.py
['AMRDualClip', 'AMRDualContour', 'AllToN', 'Append', 'AppendAttributes', 'AppendPolyData', 'ArbitrarySourceGlyph', 'ArbitrarySourceStreamTracer', 'AttributeDataToTableFilter', 'Balance', 'BlockIdScalars', 'BrownianPoints', 'CTHPart', 'CTHSurface', 'CacheKeeper', 'Calculator', 'CellCenters', 'CellDataToPointData', 'CellDerivatives', 'CleanPolyData', 'CleanUnstructuredGrid', 'ClientServerMoveData', 'Clip', 'ClipClosedSurface', 'ContingencyStatistics', 'Contour', 'ConvertSelection', 'Curvatures', 'Cut', 'D3', 'DataSetSurfaceFilter', 'DataSetTriangleFilter', 'DecimatePro', 'Delaunay2D', 'Delaunay3D', 'DescriptiveStatistics', 'ElevationFilter', 'ExtractBlock', 'ExtractEdges', 'ExtractFieldDataOverTime', 'ExtractGeometry', 'ExtractGrid', 'ExtractHierarchicalDataSets', 'ExtractHierarchicalLevel', 'ExtractHistogram', 'ExtractSelection', 'ExtractSelectionOverTime', 'FFTSelectionOverTime', 'FeatureEdges', 'FlattenFilter', 'GenerateIdScalars', 'GenericClip', 'GenericContour', 'GenericCut', 'GenericGeometryFilter', 'GenericOutlineFilter', 'GenericStreamTracer', 'GenericTessellator', 'GeometryFilter', 'Glyph', 'Gradient', 'GradientMagnitude', 'GridConnectivity', 'GroupDataSets', 'HaloFinder', 'ImageClip', 'ImageShrink', 'IntegrateAttributes', 'IntegrateFlowThroughSurface', 'IntersectFragments', 'IsoVolume', 'KMeans', 'LevelIdScalars', 'LinearExtrusionFilter', 'LoopSubdivisionFilter', 'MPIMoveData', 'MaskPoints', 'MaterialInterfaceFilter', 'Median', 'MergeBlocks', 'MeshQuality', 'MinMax', 'MulticorrelativeStatistics', 'NormalGlyphs', 'OctreeDepthLimit', 'OctreeDepthScalars', 'OrderedCompositeDistributor', 'OutlineCornerFilter', 'OutlineFilter', 'PCAStatistics', 'PVConnectivityFilter', 'PVExtractSelection', 'ParticlePathLines', 'ParticleTracer', 'PlotAttributes', 'PlotOnIntersectionCurves', 'PlotOnSortedLines', 'PointDataToCellData', 'PolyDataNormals', 'PolyLineToRectilinearGrid', 'Probe', 'ProbeLine', 'ProbePoint', 'ProcessIdScalars', 'ProgrammableFilter', 'PythonCalculator', 'QuadraturePointInterpolator', 'QuadraturePointsGenerator', 'QuadratureSchemeDictionaryGenerator', 'QuadricClustering', 'RectilinearGridConnectivity', 'RectilinearGridGeometryFilter', 'ReductionFilter', 'ReflectionFilter', 'RibbonFilter', 'RotationalExtrusionFilter', 'ScatterPlot', 'ShrinkFilter', 'SmoothPolyDataFilter', 'StreamTracer', 'Stripper', 'StructuredGridOutlineFilter', 'Subdivide', 'SurfaceVectors', 'TableFFT', 'TableToPolyData', 'TableToStructuredGrid', 'TemporalCache', 'TemporalInterpolator', 'TemporalShiftScale', 'TemporalSnapToTimeStep', 'TemporalStatistics', 'TessellatorFilter', 'TextureMapToCylinder', 'TextureMapToPlane', 'TextureMapToSphere', 'Threshold', 'TimeToTextConvertor', 'TransformFilter', 'TriangleFilter', 'TubeFilter', 'UnstructuredGradient', 'UpdateSuppressor2', 'WarpScalar', 'WarpVector', '__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__']
Traceback (most recent call last):
  File "test.py", line 11, in <module>
    x = dir(servermanager.filters.Slice)
AttributeError: 'PVModule' object has no attribute 'Slice'






No tags attached.
Issue History
2011-09-08 01:11Raymond CohenNew Issue
2016-07-28 10:19Cory QuammenNote Added: 0036640
2016-07-28 10:19Cory QuammenStatusbacklog => customer review
2016-07-28 10:19Cory QuammenResolutionopen => unable to reproduce
2016-07-28 10:19Cory QuammenAssigned To => Cory Quammen
2016-08-12 09:58Kitware RobotNote Added: 0038068
2016-08-12 09:58Kitware RobotStatuscustomer review => closed
2016-08-12 09:58Kitware RobotResolutionunable to reproduce => moved

Notes
(0036640)
Cory Quammen   
2016-07-28 10:19   
Tested built-in server, Mac OS, ParaView 5.1.

Slice filter is available in pvpython.
(0038068)
Kitware Robot   
2016-08-12 09:58   
Resolving issue as `moved`.

This issue tracker is no longer used. Further discussion of this issue may take place in the current ParaView Issues page linked in the banner at the top of this page.