You can subscribe to this list here.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(26) |
Sep
(32) |
Oct
(29) |
Nov
(36) |
Dec
(13) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(17) |
Feb
(14) |
Mar
(12) |
Apr
(20) |
May
(27) |
Jun
(6) |
Jul
(33) |
Aug
(28) |
Sep
(24) |
Oct
(24) |
Nov
(41) |
Dec
(32) |
| 2002 |
Jan
(29) |
Feb
(25) |
Mar
(16) |
Apr
(12) |
May
(22) |
Jun
(24) |
Jul
(11) |
Aug
(7) |
Sep
(4) |
Oct
(31) |
Nov
(30) |
Dec
(22) |
| 2003 |
Jan
(22) |
Feb
(12) |
Mar
(11) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
1
(2) |
2
|
|
3
|
4
(1) |
5
|
6
(1) |
7
|
8
(2) |
9
(1) |
|
10
|
11
(1) |
12
(2) |
13
|
14
|
15
|
16
|
|
17
|
18
|
19
|
20
|
21
|
22
(1) |
23
(3) |
|
24
|
25
(1) |
26
|
27
(1) |
28
|
29
|
30
|
|
31
|
|
|
|
|
|
|
|
From: Marcus B. <ma...@ww...> - 2002-03-27 17:25:46
|
I am trying to compile the example external function in userfuncs, and I
am getting all sorts of errors:
----------------------------------------
# externf example
Compiling example.f...
f77 -c -O example.f
f77 example.o extmain.o socketio.o ../util/libmain.a ../lui5/liblui2.a
-L../Mesa/lib -lMesaGL -lMesaGLU -lm -L/usr/X11/lib -L/usr/X11R6/lib
-lX11 -lXext -o example
extmain.o: In function `call_user_function':
extmain.o(.text+0x537): undefined reference to `userfunc'
extmain.o: In function `main0':
extmain.o(.text+0x60d): undefined reference to `Argvector'
extmain.o(.text+0x613): undefined reference to `Argc'
extmain.o: In function `get_mcgrid':
extmain.o(.text+0x769): undefined reference to `iggt3d'
/usr/lib/gcc-lib/i386-redhat-linux/2.96/libg2c.a(main.o): In function
`main':
main.o(.text+0x2a): undefined reference to `MAIN__'
collect2: ld returned 1 exit status
make: *** [example] Error 1
[#
---------------------------------------
as you can see, I tried adding more libraries, but to no avail.
Please help if you have experience with this...thanks.
peace,
Marcus ><+>
PLEASE RESPOND TO:
ma...@ao...
------------------------------------------------------------
WWW.COM - Where the Web Begins! http://www.www.com
---------------------------------------------------------------------
Express yourself with a super cool email address from BigMailBox.com.
Hundreds of choices. It's free!
http://www.bigmailbox.com
---------------------------------------------------------------------
|
|
From: Bill H. <bi...@ss...> - 2002-03-25 17:34:15
|
just a test |
|
From: Marcus K. <mo...@ca...> - 2002-03-23 13:34:02
|
Dear Ryan,
I have solved the problem by adjusting the length of the variables
which contain the field names for the vis5d fields. The field
containing the name of the vis5d variable needs to be a string of
exactly 10 characters. This solved my initial problem.
I don't know how long the string for the unit needs to be (maybe
somebody else knows this?). However I found out that if you add the
string '\0' to the string containing the unit identifier, vis5d seems
to understand this as the end of the unit string (maybe as a carriage
return?). For example if your pressure field should have the unit
'Pa', you should set the unit rather as 'Pa\0'
I create my v5d files in Fortran and I am not sure if this is a
compiler specific solution. All you need to do in Fortran is:
DO Z=1,NUMFLD
V5DUNIT(Z) = TRIM(FLDUNIT(Z))//'\0'
END DO
before you call the subroutine setunit. Sorry, I can't help you with
C either.
I hope this helps
Regards
Marcus
"Ryan K. Decker" wrote:
>
> Marcus,
>
> I am having a simalar problem with the v5dsetunits function, and the strings
> being "gluded" together, that you found a solution to in the attached email.
> Since I am not an experienced c programmer, could you further explain to me
> what you did to correct the problem with v5dsetunits.
>
> Thank you,
>
> Ryan
>
> On Monday 19 November 2001 07:22 am, you wrote:
> > Dear group members,
> >
> > I attempt to create v5d files using Portland Group Fortran on a Linux
> > machine. I use v5dcreatesimple for a regular spaced grid.
> >
> > However, the variable names seem to be not properly identified. They
> > are given as a character field in a data statement. But instead of
> > recognising the variables, P, U, V, T, Theta, PV, and SpecH,
> > it appears that the strings are being "glued" together.
> >
> > See here the output from v5dinfo:
> >
> > File format: v5d version: 4.3
> > Compression: 1 byte per gridpoint.
> > header size=11804
> > sizeof(v5dstruct)=169068
> >
> > NumVars = 7
> > Var Name Units Rows Cols Levels LowLev MinVal
> > 1 P U Pa 36 72 30 0 1000
> > 2 V m/s 36 72 30 0 -40.8064
> > 3 T T m/s 36 72 30 0 -57.8602
> > 4 eta PV K 36 72 30 0 185.118
> > 5 SpecH K 36 72 30 0 239.123
> > 6 a PVU 36 72 30 0 -207.815
> > 7 m/s g/g 36 72 30 0 0.000458169
> >
> > etc...
> >
> >
> > I had a similar problem with v5dsetunits and adding a '\0' to each
> > unit string took care of it. However this doesn't work with the
> > variable names.
> >
> > I would be very grateful for suggestions on how to solve this problem.
> >
> > Best regards
> > Marcus
>
> *********************************************************************************
> Ryan K. Decker phone: (865)-576-2326
> Research Associate fax: (865)-567-1327
> UAH/ESSC email: de...@at...
> 456 S. Illinois Ave. home page: http://vortex.nsstc.uah.edu/~decker
> PO Box 2456
> Oak Ridge, TN 37831
> ********************************************************************************
|
|
From: Steven G. J. <st...@ab...> - 2002-03-23 07:31:07
|
With recent versions of MacOS X, you have to configure Vis5d+ with --disable-shared ...the latest MacOS linker gets confused when libtool tries to create shared libraries with inter-dependencies. (I'm not sure yet if there's a better workaround.) Otherwise, it should compile and run okay, for the most part. (Let me know if not!) Note that you must have XFree86 installed; see http://www.mrcla.com/XonX/ and http://sourceforge.net/project/showfiles.php?group_id=18034 Cordially, Steven G. Johnson On Fri, 22 Mar 2002, Robert Fovell wrote: > At 3:31 PM -0600 3/22/02, pat behling wrote: > >Hi, is anyone working on porting Vis5d to MaC OS X? thanks, pat > > Edward (Ted) Mansell has graciously made available a Mac OS X version > of vis5d4.3 at: > > http://www.nssl.noaa.gov/~mansell/vis5d.html > > I have gotten a more recent version of vis5d, namely vis5d+, to > compile, but it currently has issues... making me reluctant to post > it publicly. Has anyone else made more progress on vis5d+? |
|
From: Robert F. <rf...@uc...> - 2002-03-23 05:20:22
|
At 3:31 PM -0600 3/22/02, pat behling wrote: >Hi, is anyone working on porting Vis5d to MaC OS X? thanks, pat >-- Hi: Edward (Ted) Mansell has graciously made available a Mac OS X version of vis5d4.3 at: http://www.nssl.noaa.gov/~mansell/vis5d.html I have gotten a more recent version of vis5d, namely vis5d+, to compile, but it currently has issues... making me reluctant to post it publicly. Has anyone else made more progress on vis5d+? Hope this helps, Rob -- Robert G. Fovell, Assoc. Prof., UCLA Atmospheric Sciences Los Angeles, CA 90095-1565 Office (310) 206-9956; Fax (310) 206-5219; rf...@uc... Science page: http://www.atmos.ucla.edu/~fovell/ Night-blooming cereus page: http://www.bol.ucla.edu/~rfovell/cereus.html |
|
From: pat b. <pbe...@fa...> - 2002-03-22 23:42:39
|
Hi, is anyone working on porting Vis5d to MaC OS X? thanks, pat -- |
|
From: <an...@vi...> - 2002-03-12 16:43:53
|
Hi! We are using the Suse Linux 7.2, Kernel 2.4.4, with gcc 2.95.3, and Mesa 2.6. We also run vis5D with the flag -mbs 0, and the problem still occurs. Does anybody has the same problem? thanks Andre Magalhaes Ze Pedro On Sat, 9 Mar 2002, Steven G. Johnson wrote: > I can't replicate your problem; it seems to work fine for me. What > OS/compilers/OpenGL-lib are you using? > > Andre wrote: > > We've found a bug when we're using the colored isosurfaces. It happens > > when: > > > > 1. Select any button of the isosurfaces and then select a isovalue. > > > > 2. Select the colored isosurface with the right button, and it displays > > correctly. > > > > 3. If we press another button of the colored isosurface panel, > > it crashes (with segmentation fault). > > > > we are using the LAMPS dataset, with vis5D-5.2 and also with > > vis5D+-1.2.1 (it crashes on both). > |
|
From: Steven G. J. <st...@ab...> - 2002-03-12 02:09:46
|
On Mon, 11 Mar 2002, Ruilian Jiang wrote: > When I compile the changed maketopo.c file (cc maketopo.c or gcc > maketopo.c), Got lots of error messages as following: You need to link with the vis5d libraries; you can't just use 'cc maketopo.c'. The easiest thing to do is to just type: make maketopo Steven |
|
From: Ruilian J. <jr...@tw...> - 2002-03-11 23:50:57
|
Hi, When I compile the changed maketopo.c file (cc maketopo.c or gcc maketopo.c), Got lots of error messages as following: /tmp/ccFhdrBv.o: In function `write_topo': /tmp/ccFhdrBv.o(.text+0x295): undefined reference to `write_bytes' On Tue, 5 Mar 2002 dl...@tw... wrote: /tmp/ccFhdrBv.o(.text+0x2a6): undefined reference to `write_float4' /tmp/ccFhdrBv.o(.text+0x2b7): undefined reference to `write_float4'> /tmp/ccFhdrBv.o(.text+0x2c8): undefined reference to `write_float4'> /tmp/ccFhdrBv.o(.text+0x2d9): undefined reference to `write_float4'> ---------- Forwarded message ---------- /tmp/ccFhdrBv.o(.text+0x2ea): undefined reference to `write_int4'> /tmp/ccFhdrBv.o(.text+0x2fb): undefined reference to `write_int4'> /tmp/ccFhdrBv.o(.text+0x315): undefined reference to `write_int2_array'> So how can I compile the new maketopo.c and makemap.c successfully? Where can I get the functions such as "`write_bytes", "write_float4"... Thank you very much! Ruilian Jiang > From: Bill Hibbard <hi...@fa...> To: > dl...@tw... > Wed, 12 Jul 2000 12:44:54 -0500 > Subject: Re: Vis5d help > > > I am running MM5 with 3km scale and using Vis5d to display the results. > > But the background map is too coarse. I want to add county line into > > background map. How can I do it? Is there any program I can use to > > generate the new map? > > > > You can find county outlines at: > > > > ftp://www.ssec.wisc.edu/pub/vis5d-5.2/OUTLCO > > > > You can generate your own map and topography files using > > the maketopo.c and makemap.c programs in the visad-n.n/util > > directory. > > > > Good luck, > > Bill > > ---------------------------------------------------------- > > Bill Hibbard, SSEC, 1225 W. Dayton St., Madison, WI 53706 > > hi...@fa... 608-263-4427 fax: 608-263-6738 > > http://www.ssec.wisc.edu/~billh/vis.html > > |
|
From: Steven G. J. <st...@ab...> - 2002-03-09 19:57:36
|
I can't replicate your problem; it seems to work fine for me. What OS/compilers/OpenGL-lib are you using? Andre wrote: > We've found a bug when we're using the colored isosurfaces. It happens > when: > > 1. Select any button of the isosurfaces and then select a isovalue. > > 2. Select the colored isosurface with the right button, and it displays > correctly. > > 3. If we press another button of the colored isosurface panel, > it crashes (with segmentation fault). > > we are using the LAMPS dataset, with vis5D-5.2 and also with > vis5D+-1.2.1 (it crashes on both). |
|
From: <an...@vi...> - 2002-03-08 19:49:21
|
Hi !
We've found a bug when we're using the colored isosurfaces. It happens
when:
1. Select any button of the isosurfaces and then select a isovalue.
2. Select the colored isosurface with the right button, and it displays
correctly.
3. If we press another button of the colored isosurface panel,
it crashes (with segmentation fault).
we are using the LAMPS dataset, with vis5D-5.2 and also with
vis5D+-1.2.1 (it crashes on both).
Andre Magalhaes
Jose Melo
Instituto Superior Tecnico, Lisboa, Portugal
|
|
From: ResearchNetwork.com <in...@re...> - 2002-03-08 05:05:00
|
Expand Your Universe on the Research Network. Research Network is a job site devoted exclusively to professional Researchers and companies who need Researchers. It doesn't matter what industry you specialize in. Research Network encompasses a broad spectrum of industries and we continue to add more every day. For a comprehensive list of industries we work in like Pharmaceutical Research, Marketing Research, Clinical Research, Financial Research, Health Care Research, (to name a few), log on to http://www.researchnetwork.com and discover the infinite possibilities. If your an Employer, stop wasting your valuable time by posting your jobs on generalized job sites that inundate you with inappropriate candidates. If your looking for Scientists, Project Managers, Analysts, Statisticians, Clinical Researchers, Engineers, Planners, Developers, Upper Level Management within a Research function, (to name a few), go to the source and get your research job posting in front of over 1/2 million researchers on our Network. Click on the link below to find the exact research talent you need. http://www.researchnetwork.com/emplogin.cfm If your a professional Researcher and wish to be considered for positions by employers on our network, click on the link below to join the network. http://www.researchnetwork.com Expand Your Universe _______________________________________________________________________ Powered by List Builder To unsubscribe follow the link: http://lb.bcentral.com/ex/manage/subscriberprefs?customerid=20467&subid=C94A4221A5583EEC&msgnum=1 |
|
From: <an...@vi...> - 2002-03-06 17:54:50
|
Hi. We are using Vis5D, and we are having some problems. We can use the isosurfaces with just one color, but we dont know how to use colored isosurfaces. How does the colored isosurface panel appears? thanks for your time Andre Magalhaes Jose Melo Instituto Superior Tecnico, Lisboa, Portugal |
|
From: Dmitry Makaryev<dm...@uc...> - 2002-03-04 16:43:37
|
Dear Sir or Madam I found this email on http://ab-initio.mit.edu/mpb/hdf.html We are the firm Irystyle that based in country Ukraine, city Dniepropetrovsk. Population of Dniepropetrovsk is 1.5 million people. Dniepropetrovsk is the big industrial and scientific center of Ukraine. We employ 6 software engineers and 10 full-time programmers and the staff can be augmented for special projects through to 30 specialists during one month and till 150 during half year. During last 2 years we made the projects for USA and Japan companies. We want to establish the long-time relations with experienced firm. We have: 1) Specialists, which have the experience in the following: Languages: C/C++, JAVA, SQL, Perl, HTML, Visual Basic, Turbo Pascal, Clipper, FoxPro, Assembler etc. DB: MS SQL, Oracle, Interbase, DBASE III/IV, FoxBASE, Borland Paradox, MUMPS etc. Platforms: MS Windows NT (Server, WS), MS Windows 95/98, Novell NetWare, OS/2 WARP, Unix, Linux, MS DOS 2) Low remuneration: Extra high skilled programmers - 600-1200 USA dollars per month Good professionals - 500-700 Middle skilled - 350-500 Low skilled (coders, students etc) - 150-300 Testers - 90 - 150 The salary of project managers - 900-1500 Accountant - 200-500 Financial manager - 1000-3000 3) Our own apartments 150 square meters. Also we have capabilities of aggrandizement of our production area. All rooms are with conditioners and office equipment. We have our own hardware, software, local net, and Internet server. Also you can study potencial of our creative department at www.irystyle.by.ru You will find there our samples in 3d and cartoon animation, video, flash, web and graphical design. Thank you for your time - we look forward to doing business with you in the future. Regards, Executive Manager Dmitry Makaryev Irystyle www.irystyle.by.ru www.irystyle.dp.ua Ukraine, city Dniepropetrovsk, 49300 st. Lenina 21, our ph: +380 562 34 11 21 fax: +380 562 37 32 77 |
|
From: Jim E. <jed...@uc...> - 2002-03-01 16:32:54
|
Takaya, Netcdf is a file format definition rather than a file format and thus there cannot be a generic converter from netcdf to vis5d format. You need to look at the format of the netcdf files you want to convert and match the variables, dimensions and grid mapping to something that will work in vis5d. The tool v5dimport knows about netcdf files and can convert them to vis5d, it has a graphical interface but you can also write a script and run it in the background if you need to convert a lot of files. Get the latest vis5d version from http://vis5d.sf.net as there were several improvements and bug fixes to this program. Jim Namba Takaya wrote: > Dear Sir > > I would like to convert netcdf to vis5d under window 2000 or Linux. > > I found cdf2v5d in the internet. > > Could you gime me any information on cdf2v5d. > > 1 Is it working on windows 2000. Is there any binary file to run on > windows. > 2 Is it working under Linux or Sun Solaris. Is there any binary file on > Linux or Sun Solaris. > > Takaya Namba > > _________________________________________________________________ > $B4JC1$K=PMh$k3Z$7$$%"%k%P%`!#M'C#$KEO$9$N$b%a!<%k$G4JC1$K!*(B > http://photos.msn.co.jp/ |
|
From: Namba T. <tak...@ho...> - 2002-03-01 03:20:50
|
Dear Sir I would like to convert netcdf to vis5d under window 2000 or Linux. I found cdf2v5d in the internet. Could you gime me any information on cdf2v5d. 1 Is it working on windows 2000. Is there any binary file to run on windows. 2 Is it working under Linux or Sun Solaris. Is there any binary file on Linux or Sun Solaris. Takaya Namba _________________________________________________________________ 簡単に出来る楽しいアルバム。友達に渡すのもメールで簡単に! http://photos.msn.co.jp/ |