Skip to content

Commit

Permalink
AKARI-SEP run on Vulcain
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelshirley committed Feb 2, 2018
1 parent 5054c5a commit a9c0e00
Show file tree
Hide file tree
Showing 9 changed files with 99 additions and 99 deletions.
22 changes: 11 additions & 11 deletions dmu1/dmu1_ml_AKARI-SEP/1.2_VISTA-VHS.ipynb

Large diffs are not rendered by default.

38 changes: 19 additions & 19 deletions dmu1/dmu1_ml_AKARI-SEP/1.3_DES.ipynb

Large diffs are not rendered by default.

36 changes: 22 additions & 14 deletions dmu1/dmu1_ml_AKARI-SEP/2_Merging.ipynb

Large diffs are not rendered by default.

92 changes: 42 additions & 50 deletions dmu1/dmu1_ml_AKARI-SEP/3_Checks_and_diagnostics.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dmu1/dmu1_ml_ELAIS-S1/1.6_DES.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@
" errcol = \"merr{}\".format(col[1:])\n",
" \n",
" # Some objects have -99.0 values\n",
" mask = (np.isclose(catalogue[col], 99.) )\n",
" mask = (catalogue[col] > 50.) | (catalogue[col] < 0.)\n",
" catalogue[col][mask] = np.nan\n",
" catalogue[errcol][mask] = np.nan\n",
" \n",
Expand Down
2 changes: 1 addition & 1 deletion dmu1/dmu1_ml_Herschel-Stripe-82/1.8.2_DES.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@
" errcol = \"merr{}\".format(col[1:])\n",
" \n",
" # Some objects have -99.0 values\n",
" mask = (np.isclose(catalogue[col], 99.) )\n",
" mask = (catalogue[col] > 50.) | (catalogue[col] < 0.)\n",
" catalogue[col][mask] = np.nan\n",
" catalogue[errcol][mask] = np.nan\n",
" \n",
Expand Down
2 changes: 1 addition & 1 deletion dmu1/dmu1_ml_SGP/1.5_DES.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@
" errcol = \"merr{}\".format(col[1:])\n",
" \n",
" # Some objects have -99.0 values\n",
" mask = (np.isclose(catalogue[col], 99.) )\n",
" mask = (catalogue[col] > 50.) | (catalogue[col] < 0.)\n",
" catalogue[col][mask] = np.nan\n",
" catalogue[errcol][mask] = np.nan\n",
" \n",
Expand Down
2 changes: 1 addition & 1 deletion dmu1/dmu1_ml_SSDF/1.3_DES.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@
" errcol = \"merr{}\".format(col[1:])\n",
" \n",
" # Some objects have -99.0 values\n",
" mask = (np.isclose(catalogue[col], 99.) )\n",
" mask = (catalogue[col] > 50.) | (catalogue[col] < 0.)\n",
" catalogue[col][mask] = np.nan\n",
" catalogue[errcol][mask] = np.nan\n",
" \n",
Expand Down
2 changes: 1 addition & 1 deletion dmu1/dmu1_ml_XMM-LSS/1.6.2_DES.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@
" errcol = \"merr{}\".format(col[1:])\n",
" \n",
" # Some objects have -99.0 values\n",
" mask = (np.isclose(catalogue[col], 99.) )\n",
" mask = (catalogue[col] > 50.) | (catalogue[col] < 0.)\n",
" catalogue[col][mask] = np.nan\n",
" catalogue[errcol][mask] = np.nan\n",
" \n",
Expand Down

0 comments on commit a9c0e00

Please sign in to comment.