-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
increment version to 0.4.1, updated docs
- Loading branch information
1 parent
2e52c9e
commit 5a2631a
Showing
19 changed files
with
165 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.. _blueprint: | ||
|
||
*************************** | ||
spacekit.builder.blueprints | ||
*************************** | ||
|
||
.. currentmodule:: spacekit.builder.blueprints | ||
|
||
.. autoclass:: Blueprint | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.. _beam: | ||
|
||
********************** | ||
spacekit.datasets.beam | ||
********************** | ||
|
||
.. currentmodule:: spacekit.datasets.beam | ||
|
||
.. autofunction:: download | ||
|
||
Retrieve dataset archive (.zip) files from the web, an s3 bucket, or local disk. | ||
This script is primarily intended as a retrieval and extraction step before launching spacekit.dashboard | ||
For more customized control of dataset retrieval (such as your own), use the spacekit.extractor.scrape module. | ||
|
||
Examples: | ||
"datasets": if set, chooses specific archive dataset filenames to retrieve and extract | ||
|
||
src: "git" - Fetch and extract from one of the spacekit data archives: | ||
archive: name of collection (see ``spacekit.datasets.meta``) | ||
download(scrape="git:calcloud") | ||
download(scrape="git:svm") | ||
|
||
src: "file" - Fetch and extract from path on local disk | ||
archive: path | ||
download(scrape="file:another/path/to/data) | ||
|
||
src: "s3" - Fetch and extract from an S3 bucket on AWS | ||
archive: bucketname | ||
"datasets" - string of S3 archive file basenames separated by comma (without the .zip or .tgz suffix) | ||
download(scrape="s3:mybucketname", "2021-11-04-1636048291,2021-10-28-1635457222,2021-08-22-1629663047") |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. _log: | ||
|
||
******************* | ||
spacekit.logger.log | ||
******************* | ||
|
||
.. automodule:: spacekit.logger.log | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. _ingest: | ||
|
||
**************************** | ||
spacekit.preprocessor.ingest | ||
**************************** | ||
|
||
.. automodule:: spacekit.preprocessor.ingest | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.. _prep: | ||
|
||
**************************** | ||
spacekit.preprocessor.prep | ||
**************************** | ||
|
||
.. automodule:: spacekit.preprocessor.prep | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
******************************* | ||
spacekit.skopes.hst.svm.predict | ||
******************************* | ||
|
||
.. currentmodule:: spacekit.skopes.hst.cal.predict | ||
|
||
.. automodule:: spacekit.skopes.hst.cal.predict | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = spacekit | ||
version = 0.4.0 | ||
version = 0.4.1 | ||
author = Ru Keïn | ||
author_email = [email protected] | ||
license = MIT | ||
|