Skip to content

Commit

Permalink
0.0.5.7 changed first contour smoothening to gaussian blur=2 when rad…
Browse files Browse the repository at this point in the history
…ius<0.12
  • Loading branch information
avialxee committed Jan 13, 2025
1 parent e85e6dc commit c492744
Show file tree
Hide file tree
Showing 4 changed files with 6 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.6'
release = 'v0.0.5.7'


# -- 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.6
version = 0.0.5.7
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.6',
version = '0.0.5.7',
url='https://github.com/avialxee/rgbmaker',
author='Avinash Kumar',
author_email='[email protected]',
Expand Down
4 changes: 3 additions & 1 deletion src/rgbmaker/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,9 @@ def query(name="", position="", radius=float(0.12), archives=1,

ax2.contour(nvss, lvlcn, colors='cyan')
ax2.contour(tgss, lvlct, colors='magenta')
smooth_first = gaussian_filter(first, sigma=1)
smooth_first = first
if radius<0.12:
smooth_first = gaussian_filter(first, sigma=2)
ax2.contour(smooth_first, lvlcf, colors='yellow')

leg1 = mpatches.Patch(color='cyan', label='NVSS')
Expand Down

0 comments on commit c492744

Please sign in to comment.