Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9402a2f
mkwrapper.py
drbitboy Jan 17, 2013
d7d373d
pyspice.c
drbitboy Jan 17, 2013
8fdbce1
Merge remote-tracking branch 'upstream/master'
drbitboy Jan 17, 2013
39d7815
mkwrapper.py
drbitboy Jan 17, 2013
20330b2
mkwrapper.py
drbitboy Jan 17, 2013
cf9e801
Functioning SpiceCells!
drbitboy Jan 18, 2013
b332744
Fix for output arguments mislabled as inputs in source files
drbitboy Jan 18, 2013
52da4eb
make correct outputs for fixed-length character arrays, and disabled
drbitboy Jan 19, 2013
1f96d3b
added some tests
drbitboy Jan 19, 2013
ad67b53
Added comments, rearranged some lines, no functional change
drbitboy Jan 22, 2013
64d34da
make correct outputs for fixed-length character arrays, and disabled
drbitboy Feb 20, 2013
10f47ff
Moved matplotlib code outside unittest purview
drbitboy Feb 26, 2013
903a411
Added SMAP test case
drbitboy Feb 27, 2013
03f4fee
Added comments about SMAP kernel; at 509MB it is not included in repo
drbitboy Feb 27, 2013
ce2a00e
added Earth/Sun orbit frame to NAIF_BODY{NAME,CODE}; corrected reflec…
drbitboy Feb 27, 2013
af12b45
Generated test SMAP SPK; updated SMAP test; removed orbital element c…
drbitboy Feb 27, 2013
c516f4a
Type 05 SPK and code to write it for SMAP test
drbitboy Feb 27, 2013
a9a9b11
added some files to .gitignore; misc cleanup
drbitboy Feb 27, 2013
6bb2cd8
added Py_INCREF(Py_None) that was missing
drbitboy Sep 26, 2013
ceb9d08
Added correction for mout In/Out error in CSPICE comments
drbitboy Nov 2, 2013
00b921a
Added another correction for mout In/Out error in CSPICE comments
drbitboy Nov 2, 2013
086228d
get gcpool working; slight mod to setup.py
drbitboy Aug 7, 2014
e044697
temporary approach for handling SPICE toolkit N0065
drbitboy Aug 28, 2014
89a582b
Update getnaifspicetoolkit.py
matteobachetti Sep 5, 2014
a9012bb
Merge pull request #1 from matteobachetti/patch-1
drbitboy Sep 5, 2014
4fc769f
removed unused include and library setup
drbitboy Mar 17, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
spicemodule.c
_spice.so
spicemodule.c*
build
*.pyc
cspice
SMAP_ref_150529_180529.bsp
makespk05
2 changes: 1 addition & 1 deletion getnaifspicetoolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def getnstkurl(force=None,log=False):
### SUNOS and SUN4U => SunSPARC_Solaris
###

dSys1 = dict( OSX=dict( I386='MacIntel', PPC='MacPPC', sis2='OSX', zSfx='tar.Z' )
dSys1 = dict( OSX=dict( X86_64='MacIntel', I386='MacIntel', PPC='MacPPC', sis2='OSX', zSfx='tar.Z' )
, LINUX=dict( I386='PC', X86_64='PC', sis2='Linux', zSfx='tar.Z' )
, CYGWIN=dict( I386='PC', X86_64='PC', sis2='Cygwin', zSfx='tar.Z' )
, WINDOWS=dict( I386='PC', X86_64='PC', sis2='Windows', zSfx='zip' )
Expand Down
Loading