Skip to content

Commit

Permalink
v2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
coulisse committed Sep 28, 2022
1 parent 2719784 commit 7bd3181
Show file tree
Hide file tree
Showing 11 changed files with 1,078 additions and 255 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SPIDERWEB
[![made-with-javascript](https://img.shields.io/badge/Made%20with-JavaScript-1f425f.svg)](https://www.javascript.com)
[![CodeFactor](https://www.codefactor.io/repository/github/coulisse/spiderweb/badge)](https://www.codefactor.io/repository/github/coulisse/spiderweb)

- **Release:** v2.3.3
- **Release:** v.2.3.4
- **Author:** Corrado Gerbaldo - IU1BOW.
- **Mail:** <[email protected]>
- **Licensing:** Gpl V3.0 see ["LICENSE"](LICENSE) file.
Expand Down
500 changes: 254 additions & 246 deletions cfg/cty_wt_mod.dat

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
### Change log
Date: 28/09/2022
Release: v.2.3.4
- fixed issue #22 propagation_heatmaps.sh fails with 'Passing a Normalize instance simultaneously with vmin/vmax is not supported.'
- replaced seaborn styles since are deprecated
___
Date: 23/08/2022
Release: v2.3.3
- modified minified system
Expand Down
3 changes: 1 addition & 2 deletions lib/propagation_heatmaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ def filter_de(data_list,continent,continents_list, band_list):
logger.debug(np.array(number_ar))

LOGMIN = 0.1
#im = plt.imshow(np.array(number_ar), cmap='YlOrRd', interpolation='quadric', norm=LogNorm(vmin=10, vmax=35),vmin=max(np.array(number_ar).min(), LOGMIN))
im = plt.imshow(np.array(number_ar), cmap='YlOrRd', interpolation='none', norm=LogNorm(vmin=10, vmax=35),vmin=max(np.array(number_ar).min(), LOGMIN))
im = plt.imshow(np.array(number_ar), cmap='YlOrRd', interpolation='none', norm=LogNorm(vmin=10, vmax=35))
for spine in plt.gca().spines.values():
spine.set_visible(False)

Expand Down
2 changes: 1 addition & 1 deletion lib/qso_trend.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
df=df.resample('D').interpolate(method='pad', limit_direction='forward', axis=0)
df=df.rolling('30D').mean()
y=df['total']
plt.style.use('seaborn-colorblind')
plt.style.use('tableau-colorblind10')
fig, ax = plt.subplots(figsize=(14,3))
plt.suptitle("QSO trend")
dt_string = datetime.now().strftime("%d/%m/%Y %H:%M")
Expand Down
433 changes: 433 additions & 0 deletions log/plots.log

Large diffs are not rendered by default.

377 changes: 377 additions & 0 deletions log/webapp.log

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ charset-normalizer==2.1.0
click==8.1.3
click-plugins==1.1.1
cligj==0.7.2
contourpy==1.0.5
cycler==0.11.0
docopt-ng==0.8.1
easywatch==0.0.5
Expand All @@ -22,7 +23,7 @@ jsmin==3.0.1
kiwisolver==1.4.4
lesscpy==0.15.0
MarkupSafe==2.1.1
matplotlib==3.4.0
matplotlib==3.6.0
munch==2.5.0
mysql-connector-python==8.0.30
numpy==1.23.1
Expand All @@ -31,7 +32,7 @@ pandas==1.4.3
patsy==0.5.2
Pillow==9.2.0
ply==3.11
protobuf==3.20.1
protobuf==3.20.2
pyparsing==3.0.9
pyproj==3.3.1
python-dateutil==2.8.2
Expand Down
2 changes: 1 addition & 1 deletion static/html/offline.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h2 class="display-4">No internet connection</h2>
<span class="copyleft">&copy;</span> Copyleft:
<span id="copyDate"></span>
<a href="https://github.com/coulisse/spiderweb/" target="blank" rel="noopener">IU1BOW Spiderweb</a>
<span id="version">v2.3.3</span>
<span id="version">v.2.3.4</span>
</div>
</footer>
<script async src="static/js/clock.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion static/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "IU1BOW DXCluster v2.3.3",
"name": "IU1BOW DXCluster v.2.3.4",
"description": "DXCluser for ham radio by IU1BOW",
"short_name": "IU1BOW DX",
"theme_color": "#2196f3",
Expand Down
2 changes: 1 addition & 1 deletion templates/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<span class="copyleft">&copy;</span> Copyleft:
<span id="copyDate"></span>
<a href="https://github.com/coulisse/spiderweb/" target="blank" rel="noopener">IU1BOW Spiderweb</a>
<span id="version">v2.3.3</span>
<span id="version">v.2.3.4</span>
</div>
</footer>
<script async src="static/js/clock.min.js"></script>
Expand Down

0 comments on commit 7bd3181

Please sign in to comment.