Skip to content

Commit 8ed59f2

Browse files
authored
update
1 parent a5d3eb0 commit 8ed59f2

File tree

1 file changed

+33
-3
lines changed

1 file changed

+33
-3
lines changed

README.md

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
1-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/JColl88/sdc1-solution-binder/HEAD)
21
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.5526844.svg)](https://doi.org/10.5281/zenodo.5526844)
32

43
# Science Data Challenge 1 Tutorial Workflow
54

65
The SKA Science Data Challenge 1 (SDC1, https://astronomers.skatelescope.org/ska-science-data-challenge-1/) tasked participants with identifying and classifying sources in synthetic radio images.
76

8-
Here we present a tutorial for producing a solution to this challenge that can easily be developed further.
7+
Here we present a tutorial to this challenge that can easily be developed further. The aim of the tutorial is as follows:
8+
- Source finding (RA, Dec) to locate the centroids and/or core positions,
9+
- Source property characterization (integrated flux density, possible core fraction, major and minor axis size, major axis position angle)
10+
- Source classification (one of SFG, AGN-steep, AGN-flat)
11+
912

1013

1114
## Development and execution environment
1215

1316

17+
```bash
18+
> git clone https://github.com/Hack4Dev/apple_classification.git
19+
```
20+
1421
A small subsample of each image can be downloaded using the script `binder/download_sample_data.sh`, to excute the script run the following:
1522

1623
```bash
@@ -24,4 +31,27 @@ Then make sure you have the right Python libraries for the tutorials. They can a
2431
```
2532

2633

27-
After downloading the sample data you can start with the tutorials.
34+
-----
35+
36+
### New to Github?
37+
38+
The easiest way to get all of the lecture and tutorial material is to clone this repository. To do this you need git installed on your laptop. If you're working on Linux you can install git using apt-get (you might need to use sudo):
39+
40+
```
41+
apt install git
42+
```
43+
44+
You can then clone the repository by typing:
45+
46+
```
47+
git clone https://github.com/Hack4Dev/apple_classification.git
48+
```
49+
50+
To update your clone if changes are made, use:
51+
52+
```
53+
cd apple_classification/
54+
git pull
55+
```
56+
57+
-----

0 commit comments

Comments
 (0)