Downloads:
7,042
Downloads of v 1.24.922:
63
Last Update:
23 Sep 2024
Package Maintainer(s):
Software Author(s):
- Stephen Loomis N0TTL and Henry Forte N2VFL
Tags:
gridtracker grid tracker ham radio amateur- Software Specific:
- Software Site
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
GridTracker
- 1
- 2
- 3
1.24.922 | Updated: 23 Sep 2024
- Software Specific:
- Software Site
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
7,042
Downloads of v 1.24.922:
63
Maintainer(s):
Software Author(s):
- Stephen Loomis N0TTL and Henry Forte N2VFL
GridTracker 1.24.922
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Stephen Loomis N0TTL and Henry Forte N2VFL. The inclusion of Stephen Loomis N0TTL and Henry Forte N2VFL trademark(s), if any, upon this webpage is solely to identify Stephen Loomis N0TTL and Henry Forte N2VFL goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install GridTracker, run the following command from the command line or from PowerShell:
To upgrade GridTracker, run the following command from the command line or from PowerShell:
To uninstall GridTracker, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download gridtracker --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade gridtracker -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade gridtracker -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install gridtracker
win_chocolatey:
name: gridtracker
version: '1.24.922'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'gridtracker' do
action :install
source 'INTERNAL REPO URL'
version '1.24.922'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller gridtracker
{
Name = "gridtracker"
Version = "1.24.922"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'gridtracker':
ensure => '1.24.922',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 24 Oct 2024.
GridTracker is a companion program for WSJT-X. It listens to WSJT-X or JTDX decodes and displays them on a map for Linux, Mac, and Windows.
Display on a large second monitor in your amateur radio club, hamfest or as a demonstration in a classroom. Everyone gets excited when they can see what you’re doing!
Features
- Realtime Traffic Decoding to world map.
- Audio / Visual / Text-to-Speech Alerts on Callsign, DXCC, CQ Designator, Grid and more.
- ADIF Log parsing
- QSO log reporting / uploading
- QRZ.com , HamQTH, CALLOOK and QRZCQ.com Callsign lookups
- Band and Mode filtering
- Complete DXCC, Country, Callsign Prefix recognition
- Band activity from PSK-Reporter
- Maidenhead 4 and 6 wide views
- CQ and ITU Zone parsing from QSOs
- Worked All Continent and Worked All States parsing
- Contest Map Overlays
- 100% offline mode available for field-day use.
- UDP Multicast message support
- UDP message forwarding
- State / Province / Locality information
- Decode history charting for propagation and radio performance analysis
- Log4OM, N1MM+ local logger support
- Active development with you in mind, tell us what you’d like to see!
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'GridTracker'
fileType = 'exe'
silentArgs = '/S'
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
Log in or click on link to see number of positives.
- gridtracker.1.24.922.nupkg (c1ed446526c6) - ## / 67
- GridTracker-Installer.1.24.0922.exe (cb9430810752) - ## / 68
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
GridTracker 1.24.922 | 63 | Monday, September 23, 2024 | Approved | |
GridTracker 1.24.920 | 19 | Sunday, September 22, 2024 | Approved | |
GridTracker 1.24.908 | 32 | Monday, September 9, 2024 | Approved | |
GridTracker 1.24.814 | 34 | Wednesday, August 14, 2024 | Approved | |
GridTracker 1.24.811 | 29 | Tuesday, August 13, 2024 | Approved | |
GridTracker 1.24.801 | 34 | Friday, August 2, 2024 | Approved | |
GridTracker 1.24.715 | 35 | Wednesday, July 17, 2024 | Approved | |
GridTracker 1.24.711 | 28 | Friday, July 12, 2024 | Approved | |
GridTracker 1.24.512 | 60 | Monday, May 13, 2024 | Approved | |
GridTracker 1.24.504 | 33 | Friday, May 10, 2024 | Approved | |
GridTracker 1.24.0104 | 93 | Wednesday, January 3, 2024 | Approved | |
GridTracker 1.23.1226 | 42 | Friday, December 29, 2023 | Approved | |
GridTracker 1.23.1217 | 51 | Tuesday, December 19, 2023 | Approved | |
GridTracker 1.23.1207 | 51 | Friday, December 8, 2023 | Approved | |
GridTracker 1.23.1202 | 46 | Sunday, December 3, 2023 | Approved | |
GridTracker 1.23.1112 | 59 | Friday, November 17, 2023 | Approved | |
GridTracker 1.23.1019 | 72 | Sunday, October 22, 2023 | Approved | |
GridTracker 1.23.1015 | 43 | Sunday, October 15, 2023 | Approved | |
GridTracker 1.23.1014 | 44 | Sunday, October 15, 2023 | Approved | |
GridTracker 1.23.0402 | 91 | Friday, July 7, 2023 | Approved | |
GridTracker 1.23.0328 | 220 | Wednesday, March 29, 2023 | Approved | |
GridTracker 1.23.0206 | 60 | Saturday, February 25, 2023 | Approved | |
GridTracker 1.22.1204 | 68 | Monday, December 5, 2022 | Approved | |
GridTracker 1.22.1123 | 65 | Wednesday, November 23, 2022 | Approved | |
GridTracker 1.22.1122 | 67 | Tuesday, November 22, 2022 | Approved | |
GridTracker 1.22.1119 | 68 | Monday, November 21, 2022 | Approved | |
GridTracker 1.22.1016 | 66 | Wednesday, October 19, 2022 | Approved | |
GridTracker 1.22.1010 | 65 | Sunday, October 9, 2022 | Approved | |
GridTracker 1.22.1009 | 72 | Sunday, October 9, 2022 | Approved | |
GridTracker 1.22.1008 | 62 | Saturday, October 8, 2022 | Approved | |
GridTracker 1.22.1007 | 61 | Saturday, October 8, 2022 | Approved | |
GridTracker 1.22.1006 | 67 | Friday, October 7, 2022 | Approved | |
GridTracker 1.22.0503 | 116 | Friday, May 27, 2022 | Approved | |
GridTracker 1.21.1217 | 123 | Saturday, December 18, 2021 | Approved | |
GridTracker 1.21.1212 | 82 | Friday, December 17, 2021 | Approved | |
GridTracker 1.21.0928 | 126 | Tuesday, September 28, 2021 | Approved | |
GridTracker 1.21.0620 | 108 | Wednesday, July 7, 2021 | Approved | |
GridTracker 1.20.0927.20201113 | 168 | Friday, November 13, 2020 | Approved | |
GridTracker 1.20.0927 | 188 | Monday, September 28, 2020 | Approved | |
GridTracker 1.20.0923 | 131 | Wednesday, September 23, 2020 | Approved | |
GridTracker 1.20.0906 | 163 | Monday, September 7, 2020 | Approved | |
GridTracker 1.20.0903 | 162 | Saturday, September 5, 2020 | Approved | |
GridTracker 1.20.0830 | 130 | Sunday, August 30, 2020 | Approved | |
GridTracker 1.20.0821 | 198 | Saturday, August 22, 2020 | Approved | |
GridTracker 1.20.0819 | 150 | Wednesday, August 19, 2020 | Approved | |
GridTracker 1.20.0806 | 163 | Thursday, August 6, 2020 | Approved | |
GridTracker 1.20.0805 | 156 | Wednesday, August 5, 2020 | Approved | |
GridTracker 1.20.0804 | 141 | Wednesday, August 5, 2020 | Approved | |
GridTracker 1.20.0803 | 148 | Monday, August 3, 2020 | Approved | |
GridTracker 1.20.0801 | 131 | Sunday, August 2, 2020 | Approved | |
GridTracker 1.20.0731 | 136 | Saturday, August 1, 2020 | Approved | |
GridTracker 1.20.0510 | 221 | Monday, May 11, 2020 | Approved | |
GridTracker 1.20.0504 | 152 | Tuesday, May 5, 2020 | Approved | |
GridTracker 1.20.0503 | 134 | Sunday, May 3, 2020 | Approved | |
GridTracker 1.20.0416 | 169 | Friday, April 17, 2020 | Approved | |
GridTracker 1.20.0302 | 225 | Monday, March 2, 2020 | Approved | |
GridTracker 1.20.0221 | 157 | Saturday, February 22, 2020 | Approved | |
GridTracker 1.20.0211 | 195 | Tuesday, February 11, 2020 | Approved | |
GridTracker 1.20.0116 | 162 | Saturday, January 18, 2020 | Approved | |
GridTracker 1.20.0110 | 147 | Friday, January 10, 2020 | Approved | |
GridTracker 1.20.0103 | 165 | Saturday, January 4, 2020 | Approved | |
GridTracker 1.20.0101 | 178 | Wednesday, January 1, 2020 | Approved | |
GridTracker 1.19.1221 | 174 | Saturday, December 28, 2019 | Approved | |
GridTracker 1.19.1026 | 174 | Wednesday, October 30, 2019 | Approved |
-
- vcredist140 (≥ 14.32.31332)
- wormies-au-helpers (≥ 0.3.2)
Ground Rules:
- This discussion is only about GridTracker and the GridTracker package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or GridTracker, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.