Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
30c03a95
Commit
30c03a95
authored
12 years ago
by
David Rafferty
Browse files
Options
Downloads
Patches
Plain Diff
Task #3403: Updated changelog.
parent
202c9a3a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CEP/PyBDSM/src/python/_version.py
+2
-0
2 additions, 0 deletions
CEP/PyBDSM/src/python/_version.py
CEP/PyBDSM/src/python/gausfit.py
+0
-4
0 additions, 4 deletions
CEP/PyBDSM/src/python/gausfit.py
CEP/PyBDSM/src/python/multi_proc.py
+0
-1
0 additions, 1 deletion
CEP/PyBDSM/src/python/multi_proc.py
with
2 additions
and
5 deletions
CEP/PyBDSM/src/python/_version.py
+
2
−
0
View file @
30c03a95
...
@@ -32,6 +32,8 @@ def changelog():
...
@@ -32,6 +32,8 @@ def changelog():
2012/10/04 - Fixed a bug in the mean map calculation that caused mean
2012/10/04 - Fixed a bug in the mean map calculation that caused mean
maps with constant values (i.e., non-2D maps) to have values of
maps with constant values (i.e., non-2D maps) to have values of
0.0 Jy/beam unless
"
mean_map =
'
const
'"
was explicitly specified.
0.0 Jy/beam unless
"
mean_map =
'
const
'"
was explicitly specified.
Fixed a bug in Gaussian fitting that could cause an island to be
skipped.
2012/10/02 - Fixed a bug in the PSF vary module that resulted in
2012/10/02 - Fixed a bug in the PSF vary module that resulted in
incorrect PSF generators being used. Added an option to smooth
incorrect PSF generators being used. Added an option to smooth
...
...
This diff is collapsed.
Click to expand it.
CEP/PyBDSM/src/python/gausfit.py
+
0
−
4
View file @
30c03a95
...
@@ -100,10 +100,6 @@ class Op_gausfit(Op):
...
@@ -100,10 +100,6 @@ class Op_gausfit(Op):
idx
=
isl
.
island_id
idx
=
isl
.
island_id
gaul
=
gaus_list
[
idx
][
0
]
gaul
=
gaus_list
[
idx
][
0
]
fgaul
=
gaus_list
[
idx
][
1
]
fgaul
=
gaus_list
[
idx
][
1
]
if
gaul
==
None
:
gaul
=
[]
if
fgaul
==
None
:
fgaul
=
[]
gaul
=
[
Gaussian
(
img
,
par
,
idx
,
gidx
)
gaul
=
[
Gaussian
(
img
,
par
,
idx
,
gidx
)
for
(
gidx
,
par
)
in
enumerate
(
gaul
)]
for
(
gidx
,
par
)
in
enumerate
(
gaul
)]
...
...
This diff is collapsed.
Click to expand it.
CEP/PyBDSM/src/python/multi_proc.py
+
0
−
1
View file @
30c03a95
...
@@ -113,7 +113,6 @@ def run_tasks(procs, err_q, out_q, num):
...
@@ -113,7 +113,6 @@ def run_tasks(procs, err_q, out_q, num):
return
numpy
.
concatenate
(
results
).
tolist
()
return
numpy
.
concatenate
(
results
).
tolist
()
def
parallel_map
(
function
,
sequence
,
numcores
=
None
,
bar
=
None
,
weights
=
None
):
def
parallel_map
(
function
,
sequence
,
numcores
=
None
,
bar
=
None
,
weights
=
None
):
"""
"""
A parallelized version of the native Python map function that
A parallelized version of the native Python map function that
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment