Open rca opened 11 years ago
Spyce is taken as well: http://spyce.sourceforge.net/
As the IDL interface of SPICE is called Icy, we could go with Spycy
?
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.
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.
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.
this may solve the windows issue:
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.
SPICE SPICE Baby
@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?