rca / PySPICE

Python wrapper around the NAIF CSPICE library
http://naif.jpl.nasa.gov/naif/
BSD 3-Clause "New" or "Revised" License
38 stars 15 forks source link

Rename project. #9

Open rca opened 11 years ago

rca commented 11 years ago

@drbitboy suggested a better name to avoid conflict with another PySPICE -- python-based tools for the SPICE circuit software -- would be Spyce.

Thoughts? If we do go through with this idea, it might make sense to move over to an organization of that name and make this project an entity of its own.

Thoughts?

michaelaye commented 11 years ago

Spyce is taken as well: http://spyce.sourceforge.net/

michaelaye commented 11 years ago

As the IDL interface of SPICE is called Icy, we could go with Spycy ?

rca commented 11 years ago

spycy sounds fun. :)

On Sun, Jan 6, 2013 at 4:51 PM, K.-Michael Aye notifications@github.comwrote:

As the IDL interface of SPICE is called Icy, we could go with Spycy ?

— Reply to this email directly or view it on GitHubhttps://github.com/rca/PySPICE/issues/9#issuecomment-11937799.

drbitboy commented 11 years ago

NaifSpyce?

On Sun, Jan 6, 2013 at 7:54 PM, rca notifications@github.com wrote:

spycy sounds fun. :)

On Sun, Jan 6, 2013 at 4:51 PM, K.-Michael Aye notifications@github.comwrote:

As the IDL interface of SPICE is called Icy, we could go with Spycy ?

— Reply to this email directly or view it on GitHub< https://github.com/rca/PySPICE/issues/9#issuecomment-11937799>.

— Reply to this email directly or view it on GitHubhttps://github.com/rca/PySPICE/issues/9#issuecomment-11937830.

drbitboy commented 11 years ago

NaifSpyce or Naifspyce?

On Sun, Jan 6, 2013 at 7:49 PM, K.-Michael Aye notifications@github.comwrote:

Spyce is taken as well: http://spyce.sourceforge.net/

— Reply to this email directly or view it on GitHubhttps://github.com/rca/PySPICE/issues/9#issuecomment-11937765.

drbitboy commented 11 years ago

this may solve the windows issue:

!/usr/bin/env python

import os import sys from urllib import urlopen from zipfile import ZipFile from StringIO import StringIO

cspicezip=" ftp://naif.jpl.nasa.gov/pub/naif/toolkit/C/PC_Windows_VisualC_32bit/packages/cspice.zip "

sys.stdout.write( "### Downloading %s this may take a while ..." % (cspicezip,) ) sys.stdout.flush()

zipfile = ZipFile(StringIO(urlopen(cspicezip).read()))

sys.stdout.write( " download complete; extracting files from cspice/ ..." ) sys.stdout.flush()

for info in zipfile.infolist(): if os.path.dirname(info.filename)[:7]=='cspice/': zipfile.extract(info.filename)

print( " extracting complete" )

I'll need to add some exception handling but I expect most modern systems will read the 24-26MB zip file into the StringIO instance with no problem.

On Sun, Jan 6, 2013 at 8:11 PM, Brian Carcich drbitboy@gmail.com wrote:

NaifSpyce or Naifspyce?

On Sun, Jan 6, 2013 at 7:49 PM, K.-Michael Aye notifications@github.comwrote:

Spyce is taken as well: http://spyce.sourceforge.net/

— Reply to this email directly or view it on GitHubhttps://github.com/rca/PySPICE/issues/9#issuecomment-11937765.

ghost commented 10 years ago

SPICE SPICE Baby