Search found 989 matches

by bobc
Mon Oct 04, 2021 2:29 pm
Forum: General Questions
Topic: Make Data Source Local
Replies: 11
Views: 7456

Re: Make Data Source Local

Hello, There is no simple way of doing what you are suggesting. Is there any reason why you need the AREAs locally and can't work directly off of the remote server/dataset? Please note that the advice below might be useful if you have familiarity with Python scripting, especially in McIDAS-V. If I u...
by bobc
Tue Sep 28, 2021 3:34 pm
Forum: General Questions
Topic: Make Data Source Local
Replies: 11
Views: 7456

Re: Make Data Source Local

Hello, This seems to work on Windows 10, but I replicated your error on macOS. I wrote this up as inquiry 2995 . I did find a way to get this working though. Here are the steps: Load your data source as normal. Display your data as normal. In the Layer Controls tab of the Data Explorer, select "...
by bobc
Fri Sep 24, 2021 4:09 pm
Forum: General Questions
Topic: Grid Skew-T
Replies: 4
Views: 4292

Re: Grid Skew-T

Hello, While we are actively working on the 1.9 release, I don't yet have an estimate on when it will be released. However, I noticed that I actually can create GFS global 1 degree soundings in the core 1.8 build. See this image: soundings.png There are two "Sounding Data (with true winds)"...
by bobc
Thu Sep 23, 2021 12:29 pm
Forum: General Questions
Topic: Grid Skew-T
Replies: 4
Views: 4292

Re: Grid Skew-T

Hello, This is actually an issue that has been fixed in the McIDAS-V 1.9beta1 nightly build, which you can download here . The login and password for the page are both: mcv Please note that the nightly builds include any code changes from the previous day, and therefore not everything has been fully...
by bobc
Thu Sep 16, 2021 6:04 pm
Forum: Scripting
Topic: How do I customise Default Background Maps?
Replies: 20
Views: 10157

Re: How do I customise Default Background Maps?

Hi Yunus, I'm replicating the problem of the map lines being hidden behind the data using a 2D map panel if I zoom in close enough to the data. Zoomed out, the map lines appear on top of the data for me. I wrote this up as inquiry 2993 . Sometimes this can happen in standard 3D map display panels as...
by bobc
Tue Sep 14, 2021 3:37 pm
Forum: Scripting
Topic: How do I customise Default Background Maps?
Replies: 20
Views: 10157

Re: How do I customise Default Background Maps?

Hello, I'm glad you were able to come up with workarounds for some of your problems. I decided to keep inquiries 2988 and 2989 open as I feel that these are both good suggestions and there may be more general solutions to them other than creating a new projection. I added mention of your workaround ...
by bobc
Fri Sep 10, 2021 4:30 pm
Forum: Scripting
Topic: How do I customise Default Background Maps?
Replies: 20
Views: 10157

Re: How do I customise Default Background Maps?

Hello, When loaded through the HYDRA chooser, McIDAS-V sets the min/max enhancement values based on the min/max of the data in the scene. When loaded through ADDE, McIDAS-V uses a parameter default to display the data with a range of 180 - 320K. You can see statistical information about the data obj...
by bobc
Thu Sep 09, 2021 2:02 pm
Forum: Scripting
Topic: How do I customise Default Background Maps?
Replies: 20
Views: 10157

Re: How do I customise Default Background Maps?

Hello, Thanks for the explanation of why operating on a layer before displaying it would be ideal for you. I wrote up inquiry 2991 to evaluate adding this functionality, though I don't have an estimate on when this would be done. As you noticed, there is no ability to load data through a script that...
by bobc
Wed Sep 08, 2021 2:42 pm
Forum: Scripting
Topic: How do I customise Default Background Maps?
Replies: 20
Views: 10157

Re: How do I customise Default Background Maps?

Hello, There is no way to operate on a layer without first creating/displaying it. You could display the layer and immediately toggle off the visibility with: MODlayer2.setLayerVisible(False) From here, you can operate on the layer. For example: MODlayer2.setEnhancement('Temperature') And then toggl...
by bobc
Thu Aug 26, 2021 1:24 pm
Forum: Scripting
Topic: How do I customise Default Background Maps?
Replies: 20
Views: 10157

Re: How do I customise Default Background Maps?

Hello, There are several resources to see which functions are available to use in the Jython Shell (as well as background scripts). There is a Scripting section of the User's Guide that describes many basic functions and provides sample commands. The bottom of the page has links to additional functi...