Search found 175 matches

by ghansham
Tue Jan 22, 2013 3:08 am
Forum: General Questions
Topic: shapefiles and point cloud display
Replies: 19
Views: 7866

Re: shapefiles and point cloud display

I have done some exercises, why it does not open. And here are some of the reasons that I think. The feature type for this file is point. So we need to add some hooks in the shape file data source to switch to Point data controls when the feature type is point. I think it can be done somewhere in do...
by ghansham
Mon Jan 21, 2013 1:32 pm
Forum: General Questions
Topic: shapefiles and point cloud display
Replies: 19
Views: 7866

Re: shapefiles and point cloud display

hi Joleen.. Hope you are doing well. My experience with shapefiles says that if you have an associated filename.prj with filename.shp and filename.shx then you should create a zip containing all these files and then load it in McV or IDV and it should be working for you. If you could tar ball on ftp...
by ghansham
Tue Dec 11, 2012 2:35 am
Forum: General Questions
Topic: BUFR-coded European radar data
Replies: 5
Views: 2801

Re: BUFR-coded European radar data

Hello Everyone. I also do have issues with BUFR in McV and IDV. And the issue is pending may be more than one year. If some one can help me. We will be really grateful to you. The file is uploaded here. In case you want it to be uploaded on SSEC ftp server, just let me know. m These are IASI Level L...
by ghansham
Tue Nov 13, 2012 5:48 pm
Forum: General Questions
Topic: Coastline
Replies: 17
Views: 6672

Re: Coastline

U can do it in jython too something like this:
createdisplay('imagedisplay', f');
actually image display is optimized for memory and speed. U can tell from ur experience.
Ghansham
by ghansham
Tue Nov 13, 2012 5:20 am
Forum: General Questions
Topic: Coastline
Replies: 17
Views: 6672

Re: Coastline

hi.... I just tried loading you etopo.nc without any striding or subsetting. Just do an "Imagery->Image Display" by "Formulas->Miscellaneous->Any Field" It loads it pretty quickly and memory stands at 200 MB. To have best performance, just make sure you following preferences Set:...
by ghansham
Tue Sep 25, 2012 7:32 pm
Forum: Scripting
Topic: Testing’s and findings on McIDAS-V netCDF scripting.
Replies: 5
Views: 2913

Re: Testing’s and findings on McIDAS-V netCDF scripting.

Hello everyone, an old post but still this might be useful info. I highly appreciate the work you people have done as part of scripting. These are few insights: 1. If we we are generating chips for a limited display window size (say 1024x1024) using jython, i think it is wasteful to load data at ful...
by ghansham
Tue Sep 25, 2012 6:49 pm
Forum: Scripting
Topic: Screen Coordinates for Corner of Plotted Flat FIeld
Replies: 7
Views: 3518

Re: Screen Coordinates for Corner of Plotted Flat FIeld

Hello everybody, i think you needed to place that pressure level annotation at a specific place on the image that is on one corner of the flatfield. I think there is another way that is using display. There is always a mcro for pressure level in color shaded planview control. If you turn it on you s...
by ghansham
Thu Sep 13, 2012 2:34 am
Forum: Scripting
Topic: Related to Filters (Beta) in McV
Replies: 1
Views: 1382

Related to Filters (Beta) in McV

I think I posted it last time in wrong topic. Anyways, here is it. The Filters in McV work only on image sequences FieldImpl and not on Image FlatField. There is need to fix in all the filters something like this: #let us say the filter name is XFilter with input argument data and param1 def XFilter...
by ghansham
Wed Sep 12, 2012 6:07 pm
Forum: Scripting
Topic: displaying a time series of RGB images
Replies: 32
Views: 16654

Re: displaying a time series of RGB images

I really like the method given by tomR sir. I knew it was gonna be like that. But due to busy schedule could not find time to get it running. I think same method can be extended to make a time sequence for images by giving same number of times. Such method can be used for single and multiple images....
by ghansham
Tue Sep 11, 2012 5:31 pm
Forum: Scripting
Topic: displaying a time series of RGB images
Replies: 32
Views: 16654

Re: displaying a time series of RGB images

Hello everyone, actually the issue is with the maketimesequence. As far as i know make time sequence tries to create time sequence from NavigatedImage which is derived from singlebandedimageimpl. It is using navigatedimage because it has the imaging time attached to it. Here we are trying to generat...