comp.lang.idl-pvwave archive
Messages from Usenet group comp.lang.idl-pvwave, compiled by Paulo Penteado

Home » Public Forums » archive » plotting function will not compile
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Switch to threaded view of this topic Create a new topic Submit Reply
plotting function will not compile [message #93528] Thu, 11 August 2016 05:43 Go to next message
Brian McNoldy is currently offline  Brian McNoldy
Messages: 35
Registered: July 2000
Member
This is truly baffling me... I was working on some code and adding a contour plot. I was playing with the CONTOUR procedure and function at the command line to get the result I wanted. I decided on the function.
But when I added it to the code, it would not compile. The exact same line of code that worked at the command line was throwing a syntax error when trying to compile code with it included.
The procedural CONTOUR works in the code, and both still work at the command line. The syntax error points to the first "O" in CONTOUR, and "CO" is underlined in red in my code (if that helps at all).

CONTOUR(z,x,y,/fill,c_value=findgen(11))
^
% Syntax error.

I wasn't messing with anything else while doing this... and haven't changed paths, etc. I'm using IDL 8.4 on Linux.

Thanks,
Brian
Re: plotting function will not compile [message #93529 is a reply to message #93528] Thu, 11 August 2016 06:11 Go to previous messageGo to next message
Helder Marchetto is currently offline  Helder Marchetto
Messages: 520
Registered: November 2011
Senior Member
On Thursday, August 11, 2016 at 2:43:32 PM UTC+2, Brian McNoldy wrote:
> This is truly baffling me... I was working on some code and adding a contour plot. I was playing with the CONTOUR procedure and function at the command line to get the result I wanted. I decided on the function.
> But when I added it to the code, it would not compile. The exact same line of code that worked at the command line was throwing a syntax error when trying to compile code with it included.
> The procedural CONTOUR works in the code, and both still work at the command line. The syntax error points to the first "O" in CONTOUR, and "CO" is underlined in red in my code (if that helps at all).
>
> CONTOUR(z,x,y,/fill,c_value=findgen(11))
> ^
> % Syntax error.
>
> I wasn't messing with anything else while doing this... and haven't changed paths, etc. I'm using IDL 8.4 on Linux.
>
> Thanks,
> Brian

Hi Brian,
here is my guess.
I took a the example from IDL's countour function. Reset the command line session (first command below) and run it:

.reset_session
file = FILE_WHICH('globalwinds.dat')
RESTORE, file, /VERBOSE
s = SQRT(u^2 + v^2)
conversion = IDLUNIT('1 mile / hour') / IDLUNIT('meter / second')
s *= conversion.quantity
m = MAP('Robinson')
ct = COLORTABLE(72, /reverse)
c = CONTOUR(s, x, y, /FILL, OVERPLOT=m, GRID_UNITS='degrees', RGB_TABLE=ct, TITLE='Global Surface Wind Speeds')
mc = MAPCONTINENTS()
cb = COLORBAR(TITLE='Speed ($m s^{-1}$)')

You should see a map and everything should be fine...
Now try this one:

.reset_session
file = FILE_WHICH('globalwinds.dat')
RESTORE, file, /VERBOSE
s = SQRT(u^2 + v^2)
conversion = IDLUNIT('1 mile / hour') / IDLUNIT('meter / second')
s *= conversion.quantity
m = MAP('Robinson')
ct = COLORTABLE(72, /reverse)
CONTOUR = 0
c = CONTOUR(s, x, y, /FILL, OVERPLOT=m, GRID_UNITS='degrees', RGB_TABLE=ct, TITLE='Global Surface Wind Speeds')

I skipped the last two instructions the second time, because the last call to countour() will cause a syntax error...

You see the problem? I hope it helps.
Maybe put a
help, countour
just before the call to countour...

Cheers,
Helder
Re: plotting function will not compile [message #93530 is a reply to message #93529] Thu, 11 August 2016 06:27 Go to previous message
Brian McNoldy is currently offline  Brian McNoldy
Messages: 35
Registered: July 2000
Member
It was indeed something stupid. On the command line, a call to
CONTOUR(z,x,y) works. But in the code, a simple copy and paste fails because it needs to be assigned to a variable: c=CONTOUR(z,x,y). That was it.
Note to self: just because a command works at the prompt does not mean it works in the source code!


On Thursday, August 11, 2016 at 9:11:46 AM UTC-4, Helder wrote:
> On Thursday, August 11, 2016 at 2:43:32 PM UTC+2, Brian McNoldy wrote:
>> This is truly baffling me... I was working on some code and adding a contour plot. I was playing with the CONTOUR procedure and function at the command line to get the result I wanted. I decided on the function.
>> But when I added it to the code, it would not compile. The exact same line of code that worked at the command line was throwing a syntax error when trying to compile code with it included.
>> The procedural CONTOUR works in the code, and both still work at the command line. The syntax error points to the first "O" in CONTOUR, and "CO" is underlined in red in my code (if that helps at all).
>>
>> CONTOUR(z,x,y,/fill,c_value=findgen(11))
>> ^
>> % Syntax error.
>>
>> I wasn't messing with anything else while doing this... and haven't changed paths, etc. I'm using IDL 8.4 on Linux.
>>
>> Thanks,
>> Brian
>
> Hi Brian,
> here is my guess.
> I took a the example from IDL's countour function. Reset the command line session (first command below) and run it:
>
> .reset_session
> file = FILE_WHICH('globalwinds.dat')
> RESTORE, file, /VERBOSE
> s = SQRT(u^2 + v^2)
> conversion = IDLUNIT('1 mile / hour') / IDLUNIT('meter / second')
> s *= conversion.quantity
> m = MAP('Robinson')
> ct = COLORTABLE(72, /reverse)
> c = CONTOUR(s, x, y, /FILL, OVERPLOT=m, GRID_UNITS='degrees', RGB_TABLE=ct, TITLE='Global Surface Wind Speeds')
> mc = MAPCONTINENTS()
> cb = COLORBAR(TITLE='Speed ($m s^{-1}$)')
>
> You should see a map and everything should be fine...
> Now try this one:
>
> .reset_session
> file = FILE_WHICH('globalwinds.dat')
> RESTORE, file, /VERBOSE
> s = SQRT(u^2 + v^2)
> conversion = IDLUNIT('1 mile / hour') / IDLUNIT('meter / second')
> s *= conversion.quantity
> m = MAP('Robinson')
> ct = COLORTABLE(72, /reverse)
> CONTOUR = 0
> c = CONTOUR(s, x, y, /FILL, OVERPLOT=m, GRID_UNITS='degrees', RGB_TABLE=ct, TITLE='Global Surface Wind Speeds')
>
> I skipped the last two instructions the second time, because the last call to countour() will cause a syntax error...
>
> You see the problem? I hope it helps.
> Maybe put a
> help, countour
> just before the call to countour...
>
> Cheers,
> Helder
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Map with specific lon and lat coordinates
Next Topic: Modify netcdf attributes

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ] [ PDF ]

Current Time: Wed Oct 08 15:37:42 PDT 2025

Total time taken to generate the page: 0.00432 seconds