Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename project. #9

Open
rca opened this issue Jan 7, 2013 · 7 comments
Open

Rename project. #9

rca opened this issue Jan 7, 2013 · 7 comments

Comments

@rca
Copy link
Owner

rca commented Jan 7, 2013

@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
Copy link
Collaborator

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

@michaelaye
Copy link
Collaborator

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

@rca
Copy link
Owner Author

rca commented Jan 7, 2013

spycy sounds fun. :)

On Sun, Jan 6, 2013 at 4:51 PM, K.-Michael Aye [email protected]:

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//issues/9#issuecomment-11937799.

@drbitboy
Copy link
Contributor

drbitboy commented Jan 7, 2013

NaifSpyce?

On Sun, Jan 6, 2013 at 7:54 PM, rca [email protected] wrote:

spycy sounds fun. :)

On Sun, Jan 6, 2013 at 4:51 PM, K.-Michael Aye [email protected]:

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//issues/9#issuecomment-11937830.

@drbitboy
Copy link
Contributor

drbitboy commented Jan 7, 2013

NaifSpyce or Naifspyce?

On Sun, Jan 6, 2013 at 7:49 PM, K.-Michael Aye [email protected]:

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


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

@drbitboy
Copy link
Contributor

drbitboy commented Jan 7, 2013

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 [email protected] wrote:

NaifSpyce or Naifspyce?

On Sun, Jan 6, 2013 at 7:49 PM, K.-Michael Aye [email protected]:

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


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

@ghost
Copy link

ghost commented Jan 31, 2014

SPICE SPICE Baby

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants