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

Home » Public Forums » archive » Taylor Diagrams in IDL
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
Taylor Diagrams in IDL [message #82744] Thu, 10 January 2013 11:08 Go to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
Folks,

I was poking around last night on the ExelisVis Code Library web page
and found an extremely well-written program by Fernando Santoro that
implemented a Taylor Diagram using the IDL 8 function graphics routines.

Having need one of these for some time, I immediately set about
converting the program to Coyote Graphics. I'm afraid I have shamelessly
stolen most of Fernado's hard work. To make up for it, I have added a
couple of features that I thought the original program lacked.

If you have not yet converted to IDL 8 graphics, you may be
interested in this direct graphics implementation. You can
read more about it here:

http://www.idlcoyote.com/cg_tips/taylordiagram.php

Cheers,

David


--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #82844 is a reply to message #82744] Tue, 15 January 2013 03:32 Go to previous messageGo to next message
seanelvidge is currently offline  seanelvidge
Messages: 11
Registered: January 2013
Junior Member
Hi David,

Thanks very much for the this programme. I am having some trouble getting it to run. I've narrowed down the problem to line 448:

cgText, stddev_max, y[-1], ' 1.0', CHARSIZE=cgDefCharsize()*0.85, CLIP=0, COLOR=c_correlation

Indexing y with -1 gives an error message, which it should? Or am I missing something? (y is a 1000 element array).

Many thanks,


Sean


On Thursday, 10 January 2013 19:08:05 UTC, David Fanning wrote:
> Folks,
>
>
>
> I was poking around last night on the ExelisVis Code Library web page
>
> and found an extremely well-written program by Fernando Santoro that
>
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
>
>
> Having need one of these for some time, I immediately set about
>
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
>
> stolen most of Fernado's hard work. To make up for it, I have added a
>
> couple of features that I thought the original program lacked.
>
>
>
> If you have not yet converted to IDL 8 graphics, you may be
>
> interested in this direct graphics implementation. You can
>
> read more about it here:
>
>
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
>
>
> Cheers,
>
>
>
> David
>
>
>
>
>
> --
>
> David Fanning, Ph.D.
>
> Fanning Software Consulting, Inc.
>
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #82854 is a reply to message #82744] Tue, 22 January 2013 14:18 Go to previous messageGo to next message
santorofer is currently offline  santorofer
Messages: 14
Registered: July 2008
Junior Member
Hi David and all,

Thank you so much David for your kind comments on my Taylor plot using New Graphics!. I did notice that I didn't have a way to add labels to the data points, as you did in the DC version of the code, so I did that.

Now there is a new version of my code using New Graphics. The adding to the code, to show labels next to each data point, was straight forward, just 2 lines of code:

; Adding labels next to each data point
delta=0.02
label=TEXT(data_x + delta, data_y + delta, labels, /DATA)

where data_x and _y are the data point coordinates, and labels is an array of strings, where each element is the label for that particular data point.

This simplicity is one of the advantages of New Graphics.

Please, find my code here:

http://www.exelisvis.com/Default.aspx?tabid=1540&id=1396

Cheers and thanks again for your comments David!,
Fernando



On Thursday, January 10, 2013 12:08:05 PM UTC-7, David Fanning wrote:
> Folks,
>
>
>
> I was poking around last night on the ExelisVis Code Library web page
>
> and found an extremely well-written program by Fernando Santoro that
>
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
>
>
> Having need one of these for some time, I immediately set about
>
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
>
> stolen most of Fernado's hard work. To make up for it, I have added a
>
> couple of features that I thought the original program lacked.
>
>
>
> If you have not yet converted to IDL 8 graphics, you may be
>
> interested in this direct graphics implementation. You can
>
> read more about it here:
>
>
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
>
>
> Cheers,
>
>
>
> David
>
>
>
>
>
> --
>
> David Fanning, Ph.D.
>
> Fanning Software Consulting, Inc.
>
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #84505 is a reply to message #82744] Tue, 21 May 2013 18:59 Go to previous messageGo to next message
JP is currently offline  JP
Messages: 55
Registered: April 2008
Member
David,
Great stuff, I am using it now.
It would be great if it had a /overplot option. I want to show results from several model runs and as all the labels there create a bit of a mess, i want to use several colors and symbols.
Any chance to include such a feature in the near future?
(or is that possible but i'm not seeing it?)

cheers

JP





On Friday, 11 January 2013 06:08:05 UTC+11, David Fanning wrote:
> Folks,
>
>
>
> I was poking around last night on the ExelisVis Code Library web page
>
> and found an extremely well-written program by Fernando Santoro that
>
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
>
>
> Having need one of these for some time, I immediately set about
>
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
>
> stolen most of Fernado's hard work. To make up for it, I have added a
>
> couple of features that I thought the original program lacked.
>
>
>
> If you have not yet converted to IDL 8 graphics, you may be
>
> interested in this direct graphics implementation. You can
>
> read more about it here:
>
>
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
>
>
> Cheers,
>
>
>
> David
>
>
>
>
>
> --
>
> David Fanning, Ph.D.
>
> Fanning Software Consulting, Inc.
>
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #86550 is a reply to message #82744] Mon, 18 November 2013 15:16 Go to previous messageGo to next message
clay.blankenship is currently offline  clay.blankenship
Messages: 3
Registered: November 2013
Junior Member
I can't figure out how to plot several of these in different windows. (Or alternatively, several in the same window.)

Clay
Re: Taylor Diagrams in IDL [message #86551 is a reply to message #86550] Mon, 18 November 2013 16:25 Go to previous messageGo to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
clay.blankenship@gmail.com writes:

> I can't figure out how to plot several of these in different windows. (Or alternatively, several in the same window.)

Are you talking about cgTaylorDiagram? If so, I would do it like this.

labels = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']
stddev = [1.4, 0.9, 1.0, 1.272, 1.1, 0.95, 1.08, 0.5]
correlation = [0.8, 0.9, 0.65, 0.74, 0.91, 0.98, 0.85, 0.35]
ref_std = 1.0
stddev_max = 1.5
cgDisplay, WID=0
cgTaylorDiagram, stddev, correlation, REF_STDDEV=ref_std, $
STDDEV_MAX=stddev_max, RMS_INCREMENT=0.25, RMS_FORMAT='(F0.2)', $
LABELS=labels

labels = ['I', 'J', 'K', 'L', 'M', 'N', 'O', 'P']
stddev = [1.25, 0.7, 1.1, 0.86, 1.5, 1.21, 0.78, 0.52]
correlation = Reverse([0.8, 0.9, 0.65, 0.74, 0.91, 0.98, 0.85, 0.35])
cgDisplay, WID=1
cgTaylorDiagram, stddev, correlation, LABELS=labels, C_SYMBOL='blue'

END

Cheers,

David


--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #86562 is a reply to message #86551] Tue, 19 November 2013 14:34 Go to previous messageGo to next message
clay.blankenship is currently offline  clay.blankenship
Messages: 3
Registered: November 2013
Junior Member
On Monday, November 18, 2013 6:25:52 PM UTC-6, David Fanning wrote:
> clay.blankenship@gmail.com writes:
>
>
>
>> I can't figure out how to plot several of these in different windows. (Or alternatively, several in the same window.)
>
>
>
> Are you talking about cgTaylorDiagram? If so, I would do it like this.
>
>
>
> labels = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']
>
> stddev = [1.4, 0.9, 1.0, 1.272, 1.1, 0.95, 1.08, 0.5]
>
> correlation = [0.8, 0.9, 0.65, 0.74, 0.91, 0.98, 0.85, 0.35]
>
> ref_std = 1.0
>
> stddev_max = 1.5
>
> cgDisplay, WID=0
>
> cgTaylorDiagram, stddev, correlation, REF_STDDEV=ref_std, $
>
> STDDEV_MAX=stddev_max, RMS_INCREMENT=0.25, RMS_FORMAT='(F0.2)', $
>
> LABELS=labels
>
>
>
> labels = ['I', 'J', 'K', 'L', 'M', 'N', 'O', 'P']
>
> stddev = [1.25, 0.7, 1.1, 0.86, 1.5, 1.21, 0.78, 0.52]
>
> correlation = Reverse([0.8, 0.9, 0.65, 0.74, 0.91, 0.98, 0.85, 0.35])
>
> cgDisplay, WID=1
>
> cgTaylorDiagram, stddev, correlation, LABELS=labels, C_SYMBOL='blue'
>
>
>
> END
>

I tried this but when I call cgTaylorDiagram, it still uses window 0 rather than the one I just made with cgDisplay.

Thanks,
Clay
Re: Taylor Diagrams in IDL [message #86563 is a reply to message #86562] Tue, 19 November 2013 14:37 Go to previous messageGo to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
clay.blankenship@gmail.com writes:

> I tried this but when I call cgTaylorDiagram, it still uses window 0 rather than the one I just made with cgDisplay.

I'm pretty sure it doesn't. Can you show me the code you are using?

Cheers,

David

P.S. It is possible you don't have the latest. I use this check list to
solve problems with Coyote programs:

http://www.idlcoyote.com/code_tips/fixcoyoteprogram.php


--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #86581 is a reply to message #86563] Wed, 20 November 2013 09:04 Go to previous messageGo to next message
clay.blankenship is currently offline  clay.blankenship
Messages: 3
Registered: November 2013
Junior Member
It's working now. My mistake--I forgot to turn off the OUTPUT keyword, so it was making a blank window.

Thanks for the help.

Clay


On Tuesday, November 19, 2013 4:37:12 PM UTC-6, David Fanning wrote:
> clay.blankenship@gmail.com writes:
>
>
>
>> I tried this but when I call cgTaylorDiagram, it still uses window 0 rather than the one I just made with cgDisplay.
>
>
>
> I'm pretty sure it doesn't. Can you show me the code you are using?
>
>
>
> Cheers,
>
>
>
> David
>
>
>
> P.S. It is possible you don't have the latest. I use this check list to
>
> solve problems with Coyote programs:
>
>
>
> http://www.idlcoyote.com/code_tips/fixcoyoteprogram.php
>
>
>
>
>
> --
>
> David Fanning, Ph.D.
>
> Fanning Software Consulting, Inc.
>
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #86591 is a reply to message #86581] Thu, 21 November 2013 09:31 Go to previous messageGo to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
clay.blankenship@gmail.com writes:

> It's working now. My mistake--I forgot to turn off the OUTPUT keyword, so it was making a blank window.

I uploaded a new version this morning that will no longer do this. I
also added a NoErase keyword and I made a couple of other changes that
will allow you to draw multiple Taylor Diagram plots in the same windonw
(for example, with !P.Multi). You can find the new version here:

http://www.idlcoyote.com/programs/cgtaylordiagram.pro

Cheers,

David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #86617 is a reply to message #86591] Sat, 23 November 2013 01:10 Go to previous messageGo to next message
skymaxwell@gmail.com is currently offline  skymaxwell@gmail.com
Messages: 127
Registered: January 2007
Senior Member
Hi,

my question is not about IDL

I think that Taylor diagrams can be very usefull
So, I'm looking for tutorial about Taylor diagrams
How to build, calculate and purposes ?

Thanks
Re: Taylor Diagrams in IDL [message #86618 is a reply to message #86617] Sat, 23 November 2013 05:43 Go to previous messageGo to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
skymaxwell writes:

> I think that Taylor diagrams can be very usefull
> So, I'm looking for tutorial about Taylor diagrams
> How to build, calculate and purposes ?

Here is a good source for these kinds of tutorials:

http://justfuckinggoogleit.com/

Cheers,

David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #86626 is a reply to message #86618] Sun, 24 November 2013 17:33 Go to previous messageGo to next message
JP is currently offline  JP
Messages: 55
Registered: April 2008
Member
Haha!! I hope skymaxwell has some sense of humour

I also use this link in similar situations:
http://lmgtfy.com/?q=taylor+diagram

JP


On Sunday, 24 November 2013 00:43:07 UTC+11, David Fanning wrote:
> skymaxwell writes:
>
>
>
>> I think that Taylor diagrams can be very usefull
>
>> So, I'm looking for tutorial about Taylor diagrams
>
>> How to build, calculate and purposes ?
>
>
>
> Here is a good source for these kinds of tutorials:
>
>
>
> http://justfuckinggoogleit.com/
>
>
>
> Cheers,
>
>
>
> David
>
> --
>
> David Fanning, Ph.D.
>
> Fanning Software Consulting, Inc.
>
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #90201 is a reply to message #82744] Tue, 10 February 2015 12:06 Go to previous messageGo to next message
siumtesfai is currently offline  siumtesfai
Messages: 62
Registered: April 2013
Member
On Thursday, January 10, 2013 at 2:08:05 PM UTC-5, David Fanning wrote:
> Folks,
>
> I was poking around last night on the ExelisVis Code Library web page
> and found an extremely well-written program by Fernando Santoro that
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
> Having need one of these for some time, I immediately set about
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
> stolen most of Fernado's hard work. To make up for it, I have added a
> couple of features that I thought the original program lacked.
>
> If you have not yet converted to IDL 8 graphics, you may be
> interested in this direct graphics implementation. You can
> read more about it here:
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
> Cheers,
>
> David
>
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")

Any update to cgTaylordiagram on how to plot both negative and positive correlation.

As mentioned above, some climate models have negative correlation or perform poor.

Best Wishes
Re: Taylor Diagrams in IDL [message #90203 is a reply to message #90201] Tue, 10 February 2015 12:52 Go to previous messageGo to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
siumtesfai@gmail.com writes:

> Any update to cgTaylordiagram on how to plot both negative and positive correlation.
>
> As mentioned above, some climate models have negative correlation or perform poor.

I suppose if there were money in it, I could delay my development as a
cinematographer for a couple of days. It's not the kind of thing I would
do for fun anymore, though. :-)

Cheers,

David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Taylor Diagrams in IDL [message #90352 is a reply to message #82744] Wed, 25 February 2015 09:58 Go to previous messageGo to next message
syang9527 is currently offline  syang9527
Messages: 1
Registered: February 2015
Junior Member
gghhjj
Re: Taylor Diagrams in IDL [message #90740 is a reply to message #82744] Wed, 08 April 2015 16:14 Go to previous messageGo to next message
Paul Levine is currently offline  Paul Levine
Messages: 29
Registered: February 2008
Junior Member
On 2013-01-10 19:08:05 +0000, David Fanning said:

> Folks,
>
> I was poking around last night on the ExelisVis Code Library web page
> and found an extremely well-written program by Fernando Santoro that
> implemented a Taylor Diagram using the IDL 8 function graphics routines.


Does anybody know if the extremely well-written program that David
mentions is still accessible anywhere?

It seems the original announcement of this code was made in the
official support forum
http://www.exelisvis.com/Support/Forums/tabid/184/forumid/7/ postid/10939/scope/posts/Default.aspx
but the only link given there is so old that it is still at ittvis.com.

Searching the exelis website yields links to the venerated
cgTaylorDiagram, but I am very much hoping to find the IDL 8 functions
graphic version. Any suggestions would be greatly appreciated!

Thanks,
Paul
Re: Taylor Diagrams in IDL [message #90743 is a reply to message #90740] Wed, 08 April 2015 16:39 Go to previous messageGo to next message
David Fanning is currently offline  David Fanning
Messages: 11724
Registered: August 2001
Senior Member
Paul Levine writes:

>
> On 2013-01-10 19:08:05 +0000, David Fanning said:
>
>> Folks,
>>
>> I was poking around last night on the ExelisVis Code Library web page
>> and found an extremely well-written program by Fernando Santoro that
>> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
>
> Does anybody know if the extremely well-written program that David
> mentions is still accessible anywhere?
>
> It seems the original announcement of this code was made in the
> official support forum
> http://www.exelisvis.com/Support/Forums/tabid/184/forumid/7/ postid/10939/scope/posts/Default.aspx
> but the only link given there is so old that it is still at ittvis.com.
>
> Searching the exelis website yields links to the venerated
> cgTaylorDiagram, but I am very much hoping to find the IDL 8 functions
> graphic version. Any suggestions would be greatly appreciated!

Thought I might still have it around here, but I don't. Sorry.

Cheers,

David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #90744 is a reply to message #90743] Wed, 08 April 2015 18:09 Go to previous messageGo to next message
Paul Levine is currently offline  Paul Levine
Messages: 29
Registered: February 2008
Junior Member
On 2015-04-08 23:39:50 +0000, David Fanning said:

> Paul Levine writes:
>
>>
>> On 2013-01-10 19:08:05 +0000, David Fanning said:
>>
>>> Folks,
>>>
>>> I was poking around last night on the ExelisVis Code Library web page
>>> and found an extremely well-written program by Fernando Santoro that
>>> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>>
>>
>> Does anybody know if the extremely well-written program that David
>> mentions is still accessible anywhere?
>>
>> It seems the original announcement of this code was made in the
>> official support forum
>> http://www.exelisvis.com/Support/Forums/tabid/184/forumid/7/ postid/10939/scope/posts/Default.aspx
>>
>> but the only link given there is so old that it is still at ittvis.com.
>>
>> Searching the exelis website yields links to the venerated
>> cgTaylorDiagram, but I am very much hoping to find the IDL 8 functions
>> graphic version. Any suggestions would be greatly appreciated!
>
> Thought I might still have it around here, but I don't. Sorry.
>
> Cheers,
>
> David

Thank you for checking.

Can anyone help me clear up some confusion about the difference between
the Code Library, which seems to no longer exist, and the extant
Extensions section of the website? Does the Extensions section now
include contributions that were formerly in the Code Library?
Re: Taylor Diagrams in IDL [message #93923 is a reply to message #90201] Fri, 25 November 2016 02:44 Go to previous messageGo to next message
rjp23 is currently offline  rjp23
Messages: 97
Registered: June 2010
Member
On Tuesday, February 10, 2015 at 8:06:58 PM UTC, Sium T wrote:
> On Thursday, January 10, 2013 at 2:08:05 PM UTC-5, David Fanning wrote:
>> Folks,
>>
>> I was poking around last night on the ExelisVis Code Library web page
>> and found an extremely well-written program by Fernando Santoro that
>> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>>
>> Having need one of these for some time, I immediately set about
>> converting the program to Coyote Graphics. I'm afraid I have shamelessly
>> stolen most of Fernado's hard work. To make up for it, I have added a
>> couple of features that I thought the original program lacked.
>>
>> If you have not yet converted to IDL 8 graphics, you may be
>> interested in this direct graphics implementation. You can
>> read more about it here:
>>
>> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>>
>> Cheers,
>>
>> David
>>
>>
>> --
>> David Fanning, Ph.D.
>> Fanning Software Consulting, Inc.
>> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
>> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
>
> Any update to cgTaylordiagram on how to plot both negative and positive correlation.
>
> As mentioned above, some climate models have negative correlation or perform poor.
>
> Best Wishes

A bit of a bump but did anyone ever implement this? Everything was going smoothly until I got some negative correlations.

Cheers
Re: Taylor Diagrams in IDL [message #94329 is a reply to message #82744] Wed, 12 April 2017 19:53 Go to previous messageGo to next message
Rosie is currently offline  Rosie
Messages: 27
Registered: September 2012
Junior Member
On Thursday, January 10, 2013 at 7:08:05 PM UTC, David Fanning wrote:
> Folks,
>
> I was poking around last night on the ExelisVis Code Library web page
> and found an extremely well-written program by Fernando Santoro that
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
> Having need one of these for some time, I immediately set about
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
> stolen most of Fernado's hard work. To make up for it, I have added a
> couple of features that I thought the original program lacked.
>
> If you have not yet converted to IDL 8 graphics, you may be
> interested in this direct graphics implementation. You can
> read more about it here:
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
> Cheers,
>
> David
>
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #94330 is a reply to message #82744] Wed, 12 April 2017 19:57 Go to previous messageGo to next message
Rosie is currently offline  Rosie
Messages: 27
Registered: September 2012
Junior Member
On Thursday, January 10, 2013 at 7:08:05 PM UTC, David Fanning wrote:
> Folks,
>
> I was poking around last night on the ExelisVis Code Library web page
> and found an extremely well-written program by Fernando Santoro that
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
> Having need one of these for some time, I immediately set about
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
> stolen most of Fernado's hard work. To make up for it, I have added a
> couple of features that I thought the original program lacked.
>
> If you have not yet converted to IDL 8 graphics, you may be
> interested in this direct graphics implementation. You can
> read more about it here:
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
> Cheers,
>
> David
>
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")
Re: Taylor Diagrams in IDL [message #94331 is a reply to message #82744] Wed, 12 April 2017 19:59 Go to previous message
Rosie is currently offline  Rosie
Messages: 27
Registered: September 2012
Junior Member
On Thursday, January 10, 2013 at 7:08:05 PM UTC, David Fanning wrote:
> Folks,
>
> I was poking around last night on the ExelisVis Code Library web page
> and found an extremely well-written program by Fernando Santoro that
> implemented a Taylor Diagram using the IDL 8 function graphics routines.
>
> Having need one of these for some time, I immediately set about
> converting the program to Coyote Graphics. I'm afraid I have shamelessly
> stolen most of Fernado's hard work. To make up for it, I have added a
> couple of features that I thought the original program lacked.
>
> If you have not yet converted to IDL 8 graphics, you may be
> interested in this direct graphics implementation. You can
> read more about it here:
>
> http://www.idlcoyote.com/cg_tips/taylordiagram.php
>
> Cheers,
>
> David
>
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
> Sepore ma de ni thue. ("Perhaps thou speakest truth.")

Hello,

I would like to put negative Correlation value in Taylor diagram. Can anyone help please?
Regards,
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: curl error with IDL 8.5
Next Topic: Interpolate whole array instead of looping through elements

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

Current Time: Wed Oct 08 11:27:11 PDT 2025

Total time taken to generate the page: 0.00810 seconds