Search found 987 matches

by bobc
Thu Jun 02, 2022 7:03 pm
Forum: Scripting
Topic: I CAN’T DOWNLOAD IMAGE DATA WITH FEDORA 35
Replies: 1
Views: 835

Re: I CAN’T DOWNLOAD IMAGE DATA WITH FEDORA 35

Hello, I believe the reason you're seeing the errors from mcservl (the local server process) is that you have McIDAS-V installed in the /root directory. We recommend that users install in their own user directory (as their own user, not an admin) so that there are no read/write permissions. However,...
by bobc
Mon May 16, 2022 12:02 pm
Forum: General Questions
Topic: Latitude and longitude of globir area data
Replies: 9
Views: 1681

Re: Latitude and longitude of globir area data

Hello, There are a couple things I see wrong with your script when writing all of the rows to the CSV file. You should make a couple changes to line 100 in your script: with open('/home/conrado/mosaic/sat_data1.csv', 'w') as csv_out: You want to write to the same file that the header was written to ...
by bobc
Fri May 13, 2022 2:28 pm
Forum: General Questions
Topic: Latitude and longitude of globir area data
Replies: 9
Views: 1681

Re: Latitude and longitude of globir area data

Hello, No worries. You specify your directory paths in lines 2 and 3 of the script. Note that this just points to a directory, not the actual filename. Here is how I have it set: # specify data and output directories dataDir = 'C:/Users/rcarp/conrado/data' outDir = 'C:/Users/rcarp/conrado/output' I'...
by bobc
Thu May 12, 2022 8:07 pm
Forum: General Questions
Topic: Latitude and longitude of globir area data
Replies: 9
Views: 1681

Re: Latitude and longitude of globir area data

Hello, Thanks for the file. I wrote the following script that I believe writes out all of the lat, lon, and data points. Here is the script: # specify data and output directories dataDir = 'C:/Users/rcarp/conrado/data' outDir = 'C:/Users/rcarp/conrado/output' # create local dataset localParms = dict...
by bobc
Thu May 12, 2022 3:09 pm
Forum: General Questions
Topic: Latitude and longitude of globir area data
Replies: 9
Views: 1681

Re: Latitude and longitude of globir area data

Hello, It would be helpful to have one of your AREA files for me to test with. Would you mind posting one to our ftp? Here are instructions for doing that through a Terminal window (from the directory containing the AREA file): ftp ftp.ssec.wisc.edu user: anonymous password: email bin prom cd pub/in...
by bobc
Thu May 12, 2022 12:14 pm
Forum: General Questions
Topic: Gridded data in mercator projection
Replies: 2
Views: 810

Re: Gridded data in mercator projection

Hello, I checked with one of our programmers and he said the code you should start looking at is in visad-2.0-SNAPSHOT.jar. You'll find this in the McIDAS-V-System/lib directory where you installed McIDAS-V 1.8. The file you should look at is GriddedLatLonSet.java. If you don't feel like unpacking t...
by bobc
Wed May 11, 2022 6:47 pm
Forum: General Questions
Topic: Gridded data in mercator projection
Replies: 2
Views: 810

Re: Gridded data in mercator projection

Hello, I forwarded your question about where in the code McIDAS-V does the navigation for gridded data. I'll let you know when I hear back from them. I was going to suggest the Grid Table display for getting a table of lat, lon, and data values. You can click in one of the cells of the Grid Table, h...
by bobc
Wed May 11, 2022 6:40 pm
Forum: General Questions
Topic: Latitude and longitude of globir area data
Replies: 9
Views: 1681

Re: Latitude and longitude of globir area data

Hello, We have an inquiry written up to able to export the output of a Grid Table display to CSV/Excel format. However, this functionality is not currently available. In the past, we've suggested that users click in one of the cells of the Grid Table display, do Ctrl+A to select all of the cells, th...
by bobc
Tue May 03, 2022 11:49 am
Forum: General Questions
Topic: Mask Value Function
Replies: 3
Views: 971

Re: Mask Value Function

Hi Joleen, You can now use "!=" when evaluating the Mask Value formula through the User Interface in today's (05/03/22) 1.9beta1 nightly. In the Select Input window, the bottom option under Comparison is now "!=". I've tested this on macOS and Windows 10 and it seems to be workin...
by bobc
Fri Apr 22, 2022 8:06 pm
Forum: General Questions
Topic: export my data to netcdf with latitude and longitude grid
Replies: 1
Views: 788

Re: export my data to netcdf with latitude and longitude grid

Hello, You can export satellite imagery to a netCDF file going to the Field Selector tab of the Data Explorer and selecting Formulas on the left side of the tab. Under Fields, expand "Export" and select "Export Grid/Image to netCDF". Once you click Create Display, you'll need to ...