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

Home » Public Forums » archive » Re: Postscript in IDL ..
Show: Today's Messages :: Show Polls :: Message Navigator
E-mail to friend 
Return to the default flat view Create a new topic Submit Reply
Re: Postscript in IDL .. [message #25255 is a reply to message #25254] Fri, 01 June 2001 06:30 Go to previous message
davidf is currently offline  davidf
Messages: 2866
Registered: September 1996
Senior Member
R.Aspey (raspey@liv.ac.uk) writes:

> I am looking at using IDL to publish some pictures in a
> TeX document. Lets say I have data sets in either
> CSV or tab delimited.
>
> Can I produce postscript oe EPS files directly and
> if so does anyone have a srcipt they could send me
> with most of the stuff in to save me having to read manuals..
>
> What is the default data file format used for ascii import using IDL?
>
> A few things but I dont really want to spend my life
> learning things I may only use once every now and then
>
> Any comments would be very much appreciated.

I think you need to pay a competent professional to handle
this for you. But it wouldn't be easy. The documentation
is awful, and they would have to plow through it, too.
Still, I can't imagine tab delimited data taking more than
2-3 minutes. The PostScript output is probably another 30
seconds. You might have to pay as much as $5-$10 to get
this handled. :-(

How about something like this:

data = FltArr(ofWhatEverSize)
OpenR, lun, 'mydatafile.txt', /Get_Lun
ReadF, lun, data
Free_Lun, lun
thisDevice = !P.Name
Set_Plot, "PS"
Device, /Encapsulated
Plot, data
Device, /Close
Set_Plot, thisDevice

It can be fancier than that. But that's about it.

Cheers,

David
--
David Fanning, Ph.D.
Fanning Software Consulting
Phone: 970-221-0438 E-Mail: davidf@dfanning.com
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Toll-Free IDL Book Orders: 1-888-461-0155
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: Re: Determining circularity
Next Topic: Removing stray clusters of points

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

Current Time: Fri Oct 10 05:05:17 PDT 2025

Total time taken to generate the page: 0.87995 seconds