Skip to content

Commit acf3388

Browse files
committed
Update remaining script with URL redirection
1 parent 677cb35 commit acf3388

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
## 0.1.1
22

3-
- Add scripts to generate test data ([PR](https://github.com/theastrolab/spark3D/pull/34))
4-
- Added Octree Partitioned RDD support ([PR](https://github.com/theastrolab/spark3D/pull/36))
5-
- RDD[Sphere] added (`SphereRDD`) ([PR](https://github.com/theastrolab/spark3D/pull/38))
6-
- Code refactoring: Replace Sphere by ShellEnvelope, Shape3D heritage, and move everything under geometryObjects ([PR](https://github.com/theastrolab/spark3D/pull/40))
7-
- Add very simple Kryo registration for spark3D classes. Probably need more ([PR](https://github.com/theastrolab/spark3D/pull/31), [PR](https://github.com/theastrolab/spark3D/pull/28)).
3+
- Add scripts to generate test data ([PR](https://github.com/astrolabsoftware/spark3D/pull/34))
4+
- Added Octree Partitioned RDD support ([PR](https://github.com/astrolabsoftware/spark3D/pull/36))
5+
- RDD[Sphere] added (`SphereRDD`) ([PR](https://github.com/astrolabsoftware/spark3D/pull/38))
6+
- Code refactoring: Replace Sphere by ShellEnvelope, Shape3D heritage, and move everything under geometryObjects ([PR](https://github.com/astrolabsoftware/spark3D/pull/40))
7+
- Add very simple Kryo registration for spark3D classes. Probably need more ([PR](https://github.com/astrolabsoftware/spark3D/pull/31), [PR](https://github.com/astrolabsoftware/spark3D/pull/28)).
88
- Few fixes here and there...
99

1010
## <= 0.1.0
1111

12-
Repo on fire! See from this [PR](https://github.com/theastrolab/spark3D/pull/33) and earlier commits. In short, what was available at that time (including bugs!):
12+
Repo on fire! See from this [PR](https://github.com/astrolabsoftware/spark3D/pull/33) and earlier commits. In short, what was available at that time (including bugs!):
1313

1414
- Read and format data from external data sets. Coordinates can be spherical or cartesian.
1515
- *Currently available: FITS and CSV data format.*

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
[![Build Status](https://travis-ci.org/theastrolab/spark3D.svg?branch=master)](https://travis-ci.org/theastrolab/spark3D)
2-
[![codecov](https://codecov.io/gh/theastrolab/spark3D/branch/master/graph/badge.svg)](https://codecov.io/gh/theastrolab/spark3D)
3-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.theastrolab/spark3d_2.11/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.github.theastrolab/spark3d_2.11)
1+
[![Build Status](https://travis-ci.org/astrolabsoftware/spark3D.svg?branch=master)](https://travis-ci.org/astrolabsoftware/spark3D)
2+
[![codecov](https://codecov.io/gh/astrolabsoftware/spark3D/branch/master/graph/badge.svg)](https://codecov.io/gh/astrolabsoftware/spark3D)
3+
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.astrolabsoftware/spark3d_2.11/badge.svg?style=flat)](https://maven-badges.herokuapp.com/maven-central/com.github.astrolabsoftware/spark3d_2.11)
44

55
**The package is under an active development!**
66

77
## Latest News
88

99
- [05/2018] **GSoC 2018**: spark3D has been selected to the Google Summer of Code (GSoC) 2018. Congratulation to [@mayurdb](https://github.com/mayurdb) who will work on the project this year!
1010
- [06/2018] **Release**: version 0.1.0, 0.1.1
11-
- [07/2018] **New location**: spark3D is an official project of [AstroLab](https://theastrolab.github.io/)!
11+
- [07/2018] **New location**: spark3D is an official project of [AstroLab Software](https://astrolabsoftware.github.io/)!
1212

1313
## Installation and tutorials
1414

15-
See our amazing [website](https://theastrolab.github.io/spark3D/)!
15+
See our amazing [website](https://astrolabsoftware.github.io/spark3D/)!
1616

1717
## Contributors
1818

1919
* Julien Peloton (peloton at lal.in2p3.fr)
2020
* Christian Arnault (arnault at lal.in2p3.fr)
2121
* Mayur Bhosale (mayurdb31 at gmail.com) -- GSoC 2018.
2222

23-
Contributing to spark3D: see [CONTRIBUTING](https://github.com/theastrolab/spark3D/blob/master/CONTRIBUTING.md).
23+
Contributing to spark3D: see [CONTRIBUTING](https://github.com/astrolabsoftware/spark3D/blob/master/CONTRIBUTING.md).

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ lazy val root = (project in file(".")).
2525
// Name of the application
2626
name := "spark3D",
2727
// Name of the orga
28-
organization := "com.github.theastrolab",
28+
organization := "com.github.astrolabsoftware",
2929
// Do not execute test in parallel
3030
parallelExecution in Test := false,
3131
// Fail the test suite if statement coverage is < 70%
@@ -60,12 +60,12 @@ lazy val root = (project in file(".")).
6060

6161
// POM settings for Sonatype
6262
homepage := Some(
63-
url("https://github.com/theastrolab/spark3D")
63+
url("https://github.com/astrolabsoftware/spark3D")
6464
)
6565
scmInfo := Some(
6666
ScmInfo(
67-
url("https://github.com/theastrolab/spark3D"),
68-
" https://github.com/theastrolab/spark3D.git"
67+
url("https://github.com/astrolabsoftware/spark3D"),
68+
" https://github.com/astrolabsoftware/spark3D.git"
6969
)
7070
)
7171

examples/jupyter/CrossMatch.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@
7575
"name": "stdout",
7676
"output_type": "stream",
7777
"text": [
78-
"Marking com.github.JulienPeloton:spark-fits_2.11:0.4.0 for download\n",
78+
"Marking com.github.astrolabsoftware:spark-fits_2.11:0.4.0 for download\n",
7979
"Preparing to fetch from:\n",
8080
"-> file:/var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps7614799531666607290/\n",
8181
"-> https://repo1.maven.org/maven2\n",
82-
"-> New file at /var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps7614799531666607290/https/repo1.maven.org/maven2/com/github/JulienPeloton/spark-fits_2.11/0.4.0/spark-fits_2.11-0.4.0.jar\n",
82+
"-> New file at /var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps7614799531666607290/https/repo1.maven.org/maven2/com/github/astrolabsoftware/spark-fits_2.11/0.4.0/spark-fits_2.11-0.4.0.jar\n",
8383
"Marking com.github.haifengl:smile-plot:1.5.1 for download\n",
8484
"Preparing to fetch from:\n",
8585
"-> file:/var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps7614799531666607290/\n",
@@ -113,7 +113,7 @@
113113
],
114114
"source": [
115115
"// Package to read data from FITS file\n",
116-
"%AddDeps com.github.JulienPeloton spark-fits_2.11 0.4.0\n",
116+
"%AddDeps com.github.astrolabsoftware spark-fits_2.11 0.4.0\n",
117117
"\n",
118118
"// Smile provides visualisation tools\n",
119119
"%AddDeps com.github.haifengl smile-plot 1.5.1\n",

examples/jupyter/onion_partitioning.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
"name": "stdout",
2525
"output_type": "stream",
2626
"text": [
27-
"Marking com.github.JulienPeloton:spark-fits_2.11:0.3.0 for download\n",
27+
"Marking com.github.astrolabsoftware:spark-fits_2.11:0.3.0 for download\n",
2828
"Preparing to fetch from:\n",
2929
"-> file:/var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps3353854346753658887/\n",
3030
"-> https://repo1.maven.org/maven2\n",
31-
"-> New file at /var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps3353854346753658887/https/repo1.maven.org/maven2/com/github/JulienPeloton/spark-fits_2.11/0.3.0/spark-fits_2.11-0.3.0.jar\n",
31+
"-> New file at /var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps3353854346753658887/https/repo1.maven.org/maven2/com/github/astrolabsoftware/spark-fits_2.11/0.3.0/spark-fits_2.11-0.3.0.jar\n",
3232
"Marking com.github.haifengl:smile-plot:1.5.1 for download\n",
3333
"Preparing to fetch from:\n",
3434
"-> file:/var/folders/my/lfvl285927q2hzk545f39sy40000gn/T/toree_add_deps3353854346753658887/\n",
@@ -62,7 +62,7 @@
6262
],
6363
"source": [
6464
"// Package to read data from FITS file\n",
65-
"%AddDeps com.github.JulienPeloton spark-fits_2.11 0.3.0\n",
65+
"%AddDeps com.github.astrolabsoftware spark-fits_2.11 0.3.0\n",
6666
"\n",
6767
"// Smile provides visualisation tools\n",
6868
"%AddDeps com.github.haifengl smile-plot 1.5.1\n",

run_scala.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ display="show"
3131

3232
## Dependencies
3333
jars="lib/jhealpix.jar,lib/swingx-0.9.1.jar"
34-
packages="com.github.theastrolab:spark-fits_2.11:0.3.0,com.github.haifengl:smile-core:1.5.1,com.github.haifengl:smile-plot:1.5.1,com.github.haifengl:smile-math:1.5.1,com.github.haifengl:smile-scala_2.11:1.5.1"
34+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.3.0,com.github.haifengl:smile-core:1.5.1,com.github.haifengl:smile-plot:1.5.1,com.github.haifengl:smile-math:1.5.1,com.github.haifengl:smile-scala_2.11:1.5.1"
3535

3636
# Run it!
3737
spark-submit \

run_xmatch_cluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ kind="healpix"
3636

3737
## Dependencies
3838
jars="lib/jhealpix.jar"
39-
packages="com.github.theastrolab:spark-fits_2.11:0.4.0"
39+
packages="com.github.astrolabsoftware:spark-fits_2.11:0.4.0"
4040

4141
# Run it!
4242
spark-submit \

0 commit comments

Comments
 (0)