Skip to content

Commit

Permalink
0.0.5.8 bug fix -> first contour smoothening condition
Browse files Browse the repository at this point in the history
  • Loading branch information
avialxee committed Jan 13, 2025
1 parent c492744 commit da2a02b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = 'avialxee'

# The full version, including alpha/beta/rc tags
release = 'v0.0.5.7'
release = 'v0.0.5.8'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = rgbmaker
version = 0.0.5.7
version = 0.0.5.8
author = Avinash Kumar
author_email = [email protected]
description = A python package which communicates to different astronomical services and fetches fits and numerical data.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name = 'rgbmaker',
version = '0.0.5.7',
version = '0.0.5.8',
url='https://github.com/avialxee/rgbmaker',
author='Avinash Kumar',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion src/rgbmaker/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def query(name="", position="", radius=float(0.12), archives=1,
ax2.contour(nvss, lvlcn, colors='cyan')
ax2.contour(tgss, lvlct, colors='magenta')
smooth_first = first
if radius<0.12:
if float(radius)<0.12:
smooth_first = gaussian_filter(first, sigma=2)
ax2.contour(smooth_first, lvlcf, colors='yellow')

Expand Down

0 comments on commit da2a02b

Please sign in to comment.