Skip to content

anthonyjsmith/pIDLy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pIDLy: IDL within Python

Control ITT's IDL (Interactive Data Language) from within Python.

Version 0.2.7

Copyright (c) 2008-2017, Anthony Smith

anthonysmith80@gmail.com

(NB: since pIDLy was written, IDL has developed a two-way Python Bridge. I recommend trying that first.)

This module has been written to enable an IDL session to be controlled from within Python. I was inspired by pyIDL, which looks great but which I couldn't manage to install. So I wrote my own.

pIDLy works by launching an IDL session as a child application and then passing data between Python and the IDL shell. It's not particularly fast, so not suitable for applications which require huge amounts of data to be passed around with ease. But it should be fine for most applications.

pIDLy requires NumPy, SciPy and Pexpect, but these will (hopefully!) be installed automatically if you follow the instructions below. You also need IDL, of course.

Contributions welcome!

Contents

  1. Requirements
  2. Installation
  3. Usage
  4. Further information
  5. Known bugs/issues
  6. To do
  7. Release history

1. Requirements

The following are required, but should be installed automatically if you follow the installation instructions below:

Also required:

This version tested on

  • Mac OS X with IDL 7.1.1 and Python 3.4.1
  • Mac OS X with IDL 7.1.1 and Python 2.7.5

2. Installation

  1. Type "pip install pidly"

If that fails:

  1. Download https://raw.github.com/pypa/pip/master/contrib/get-pip.py
  2. run it (type "python get-pip.py")
  3. Type "pip install pidly"

3. Usage

Initiate::
>>> import pidly
>>> idl = pidly.IDL()
Or::
idl = pidly.IDL('/path/to/idl')
Or::
idl = pidly.IDL('/path/to/gdl', idl_prompt='GDL> ')
Execute commands::
>>> idl('x = total([1, 1], /int)')
Retrieve values::
>>> print idl.x
2
Or (slightly faster)::
>>> print idl.ev('x')
2
Evaluate expressions::
>>> print idl.ev('x ^ 2')
4
Use cache (IDL save) to handle large arrays::
>>> idl('x=[1,2,3,4,5,6]')
>>> print(idl.ev('x', use_cache=True))
[1 2 3 4 5 6]
Transfer a list of IDL variables, using cache::
>>> idl('y=[1,2,3,4,5,6]')
>>> xy = idl.ev_list(['x','y'], use_cache=True)
>>> print(sorted(xy.keys()))
['x', 'y']
>>> print(xy['x'])
[1 2 3 4 5 6]
Assign value from Python expression::
>>> idl.x = 2 + 2
>>> print idl.x
4
Or::
>>> idl('x', 2 + 2)
>>> print idl.x
4
Perform IDL function on Python expression(s)::
>>> idl.reform(range(4), 2, 2)
array([[0, 1],
       [2, 3]])
Or (slightly faster)::
>>> idl.func('reform', range(4), 2, 2)
array([[0, 1],
       [2, 3]])
With keywords (/L64 -> L64=True or L64=1):
>>> idl.histogram(range(4), binsize=3, L64=True)
array([3, 1], dtype=int64)
IDL procedure with Python argument(s)::
>>> idl.pro('plot', range(10), range(10), xstyle=True, ystyle=True)
Interactive mode::
>>> idl.interact()
IDL> print, x
    4
IDL> ^D
>>>
Close::
>>> idl.close()

pIDLy supports the transfer of

  • ints, longs, ...
  • floats, doubles, ...
  • strings
  • arrays of the above types, with arbitrary size and shape
  • dictionaries <-> structures & lists of dicts <-> arrays of structures but with certain limitations on transfer from Python to IDL
NB if getting Syntax Errors when passing large arrays to IDL, try using::
>>> idl = pidly.IDL(long_delay=0.05) # default is 0.02.

4. Further information

Further information is available

5. Known bugs/issues

  • Python variables cannot be used as "output" parameters for IDL procedures and functions; use idl('my_procedure, output_parameter') to run the procedure then idl.output_parameter to retrieve the output.
  • If Python is force-killed when IDL is running, IDL will persist and run wild
  • Restrictive limits on size of Python dictionaries to send to IDL structures
  • Slow transferring large Python arrays to IDL, e.g., 20,000 doubles in 12-15s
  • IPython on Aquamacs: prints input in interactive mode
  • Aquamacs: interactive mode has very small input buffer (253 bytes?)
  • idl.f(..., idl.g(...)) doesn't work (pidly_tmp conflict)

6. To do

  • Test on Windows
  • Complex numbers
  • Raise exceptions (e.g., for unsupported types)
  • Passing special characters in strings (t, n etc)

7. Release history

Version 0.2.7, 2 Apr 2017

  • Add use_cache option to transfer data using IDL save (with thanks to Fmajor)

Version 0.2.6, 4 Aug 2014

  • Python3 compatible version (with thanks to Alexander Heger)

Version 0.2.5, 19 Feb 2014

  • Better behaviour when IDL is no longer alive
  • Works with GDL

Version 0.2.4, 22 Feb 2008

  • Fixed bug with keyword arguments in functions
  • Added pro() method for IDL procedures with Python arguments

Version 0.2.3, 18 Feb 2008

  • Improved garbage collection (using weakref and atexit)
  • IDL Errors: launches interactive after '% Stop' or '% Execution Halted'
  • If IDL pauses (waiting for input?), KeyboardInterrupt -> interactive mode
  • Fixed bugs with NumPy array input
  • Fixed problems with double precision float transfer
  • Fixed problem with spaces in strings in structures/dictionaries
  • Added test() function for full tests
  • Added NaN and Inf support

Version 0.2.2, 9 Feb 2008

  • Fixed bug, where IDL would run wild when IPython closed

Version 0.2.1, 8 Feb 2008

  • Added keyword parameters in calls to IDL functions
  • Added support for Python bool type

Version 0.2, 7 Feb 2008

  • Structures can be transferred from IDL to Python as dictionaries
  • Dictionaries can be transferred from Python to IDL as structures. But:
    • lists of dictionaries must be explicitly and consistently typed
    • the dictionary, or each dictionary in the list, must be short enough to fit into a single command for IDL
    • long lists of dictionaries are likely to be slow from Python to IDL, as assignment takes place one dictionary at a time
  • Now gives "live" output while waiting for the IDL prompt
  • Fixed bug related to long IDL 'help' output
  • String arrays with arbitrary spaces now work

Version 0.1.3, 6 Feb 2008

  • Added support for unsigned integers
  • Fixed bug with byte/int8
  • Added easy access to IDL variables and functions (__getattr__ and __setattr__)

Version 0.1.2, 4 Feb 2008

  • Performance improvement:
    • 5-100 times faster, tranferring from Python to IDL
    • ~1.5x faster, transferring from IDL to Python
  • Renamed Session class to IDL

Version 0.1.1, 1 Feb 2008

  • Removed timeout limit
  • Fixed typo in license
  • README and LICENSE files

Version 0.1, 31 Jan 2008

  • Wrapper on Pexpect, with conversions between IDL data and NumPy arrays
  • Handles arbitrarily sized and shaped arrays of strings, ints and floats

About

pIDLy: IDL within Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages