vcs icon indicating copy to clipboard operation
vcs copied to clipboard

Visualization Control System

Results 100 vcs issues
Sort by recently updated
recently updated
newest added

@doutriaux1 I have installed 2.8.0 at last, and I'm testing some stuff ! I'm plotting a simple matrix with 0, 1 and masked. When I'm in interact mode, and I...

enhancement
low

```python import vcs x=vcs.init(geometry={"width":8000,"height":4000}) x.open() x.plot([1,2,3,4,3,2,1]) x.png("bad",width=8000,height=4000,units="pixels") ``` ![bad](https://cloud.githubusercontent.com/assets/2781425/23246073/eb19f830-f945-11e6-9e88-2f586a28a419.png)

bug
low

@doutriaux1 Maybe this has already been improved in the latest version... I have generated pdf and png output, using the script in #185, and I hope you can **improve the...

enhancement
low
Needs Investigation

```python import vcs import cdms2 vcs.download_sample_data_files() f = cdms2.open(vcs.sample_data+"/clt.nc") u = f("u") v = f("v") gm = vcs.createvector() for height in [600,700,800]: x=vcs.init(geometry=(1200,height), bg=True) x.plot(u,v,gm) x.png("bug_{:d}".format(height)) ``` gives: ![bug_600](https://user-images.githubusercontent.com/2781425/40017167-7014ef00-576d-11e8-8c49-3e170faf7b30.png) ![bug_700](https://user-images.githubusercontent.com/2781425/40017168-70412b1a-576d-11e8-914a-e5a3e1cf4a6a.png)...

medium
Needs Investigation

@doutriaux1 @danlipsa FYI, with missing (no data) I am getting the following error: ``` Warning: In /export/doutriaux1/anaconda2/conda-bld/vtk-cdat_1479229648549/work/Filters/Geometry/vtkDataSetSurfaceFilter.cxx, line 166 vtkDataSetSurfaceFilter (0x3043b80): Number of cells is zero, no data to process....

enhancement
low

x.interact() is quite important if you want to do some interactive work with vcs (in my case resize the canvas, click on the cells to check their values), but: -...

documentation

Following @durack1 request in #23 , I have tried to write a self-contained script that produces that produces the figure at the top of https://github.com/UV-CDAT/uvcdat/issues/1080 The script needs the **gsw**...

enhancement

@danlipsa @doutriaux1 I just ran the demo script [BlueMarble_huss_satellite_view.html](http://uvcdat.llnl.gov/examples/BlueMarble_huss_satellite_view.html) and received the appropriate graphic on the active VNC screen. What was saved to the png is below, and is certainly...

bug

@doutriaux1 @chaosphere2112, here's another possible deprecation. Whether we're going to nuke it or implement it later, let me know and I'll update the docs. The copyfontto() function is also called...

bug
low

@doutriaux1 looks like this one is either deprecated or not implemented. Let me know which and I will note it in the docs. ```python >>> a=vcs.init() >>> array=[range(10) for _...

bug
low