Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Yaac-Users
- Messages
Search
Re: next beta build#147 of YAAC
Thanks Andrew :)
toggle quoted message
Show quoted text
On 1/23/2020 1:19 PM, Andrew P. wrote:
next beta build#147 of YAAC ("Yet Another APRS Client"), created 2020-Jan-23 --
Michael Cozzi cozzicon@... kd8tut@... 269-519-2389 |
next beta build#147 of YAAC
next beta build#147 of YAAC ("Yet Another APRS Client"), created 2020-Jan-23
downloadable from or changes and updates include: 1. fill in missing information in the Javadocs for the YAAC source code. 2. fix the built-in help index merging. This required changing all of the plugins that had help extensions, as the old format would actually cause help generation to fail when sort-merging the index. 3. implement and document command-line options to support limited configuration setting, suitable for use by third-party installation scripts. 4. eliminate excessive digits after the decimal point for QRU maximum range. 5. add user-selectable new formats for logging GPS track data, including the existing format of whatever YAAC is receiving, and per-source (local and remote) logging in NMEA-0183 sentences, GPSD JSON structures, GPX (GPs eXchange) XML, and CSV format. 6. fix error in time-limiting the playback of a GPS log file. 7. fix memory and CPU leak when closing raw packet view. 8. fix spurious NullPointerException when setting up map windows. 9. add safety check to make user confirm they really want to change their Mic-E status to the Emergency setting before actually doing it. 10. copy the latest version of Hessu's tocalls.dense.json file. 11. normalize the entries on the View menu to not say "View" or "Show" redundantly. 12. add one-touch changing of Mic-E status to the small screen plugin. |
Re: Open street maps local serve support
I understand... A member has already rendered vector & raster data for our geografical area. I would like to point to that over the mesh network.? Mathison On Wed, Jan 22, 2020, 11:51 AM Andrew P. <andrewemt@...> wrote: It's not the same kind of tile server in YAAC as with the main OpenStreetMap tile server. |
Re: Open street maps local serve support
It's not the same kind of tile server in YAAC as with the main OpenStreetMap tile server.
The "tiles" in YAAC are not raster images. They are geographically segmented pieces of the raw vector data, so that the YAAC real-time map renderer doesn't have to read through the entire planet's worth of data to render raster images of the streets in one small area. As such, YAAC doesn't have multiple "tiles" for different screen zoom levels; the raw vector data is rendered at whatever zoom level the user wants. This keeps the "tile" cache much smaller than for systems that cache different raster image tiles for each zoom level of the covered area. That's also why YAAC's street maps don't look like the tile-based web maps on OpenStreetMap or Google; my renderer isn't as good because it strives for speed rather than beauty for less powerful rendering machines, and it still has a few bugs in it. I should mention that YAAC was deliberately designed to only operate off a local disk copy of the map data, specifically so it would still operate in installations without Internet service for downloading tiles. So the only way for it to operate without map files on a Pi is to not display maps. You don't have to use my server to get updated "tiles" of segmented vector data. You can get a copy of the OpenStreetMap vector data (a database dump in .osm.bz2 or .osm.pbf format) and import it yourself. However, due to YAAC rearranging the data for more efficient rendering (so constant database lookups in different tables aren't needed), the importer is an enormous burden on the host computer; you need at least 150GB of free disk space to handle the import, and it takes hours (when I do the whole planet.osm.pbf file on my dedicated gaming server, it takes over 15 hours). A Raspberry Pi simply doesn't have the muscle to do it. But you can do it on a big enough machine to handle the burden, then zip or tar up the tile directory hierarchy on that system and restore it on each of your Pi computers. The "tile" downloading feature in YAAC simply makes it easier for a given computer to only get the tiles it needs without having to waste disk space on other squares of the map, nor on manually figuring out which files to download. The topographic layer of the map operates similarly, in that it stores the raw elevation data from the USGS in 1-degree-square files, and renders it at the desired zoom level on demand. Hope this helps you understand my design philosophy. Andrew, KA2DDO author of YAAC |
Open street maps local serve support
Our local mesh group is running a server to distribute map tiles. Im reading thru the documentation and it looks like you have hard coded your personal tile server into the program. might it be possible to bring the option to set the server out into the gui? I dont know if the back-end of YAAC will pull tiles from the server the same way we do for our mapping program or not? Dose YAAC support the pointing as follows?in our php ini file we define a server with?
inetTileServer['Topographic'] = "//{s}.tile.opentopomap.org/{z}/{x}/{y}.png" I would like to not cash the tiles on the RPI. For reference:? Thanks for the Program 73 Mathison KJ6DZB |
Re: Icon of YAAC on Raspberry Pi Desktop
Here is my desktop file (my desktop, not an RPi) that seems to work just fine.
toggle quoted message
Show quoted text
$ cat Desktop/YAAC.desktop [Desktop Entry] Name=YAAC Exec=java -jar /home/michael/YAAC/YAAC.jar Comment= Terminal=false Icon=/home/michael/YAAC/images/yaaclogo64.ico Type=Application I'm thinking your problem may lie in your EXEC statement. You have your PATH before the java command. Try putting it in front of the YAAC.jar file. It should also be the full path. i.e. Exec=java -jar /home/pi/YACC/YAAC.jar HTH, Michael WA7SKG Keith Kaiser wrote on 1/20/20 1:09 PM: I'd like to have an icon I can use to launch YAAC, I'd also like to add it to the menu system. |
Re: Icon of YAAC on Raspberry Pi Desktop
Greetings.
2 different sized icons are provided in the YAAC distribution for just this purpose (and are documented in the index for YAAC built-in help under the topic "desktop shortcuts"), but they are .ico files for use on Microsoft Windows. However, the Raspbian desktop manager will accept these files (they are used in the NW Digital Radio SD card image for their DRAWS hat). Look for <yaacInstallDirectory>/images/yaaclogo*.ico and pick one of the appropriate resolution (NWDigitalRadio used yaaclogo64.ico). Note that I'm not sure why the Exec= string in your desktop file starts with /YAAC; you can specify the YAAC.jar file with a directory prefix and YAAC will find its auxiliary files by reverse-engineering the location of the YAAC.jar file. For example, Exec=java -jar /home/pi/YAAC/YAAC.jar Hope this helps. Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of Keith Kaiser <wa0tjt@...> Sent: Monday, January 20, 2020 4:09 PM To: [email protected] Subject: [yaac-users] Icon of YAAC on Raspberry Pi Desktop I'd like to have an icon I can use to launch YAAC, I'd also like to add it to the menu system. For the desktop, I right clicked on the desktop and created YAAC.desktop. Then using sudo I entered; [Desktop Entry] Name=YAAC Comment=Launch YAAC Icon=/usr/share/pixmaps/yaac.xpm Exec=/YAAC java -jar YAAC.jar Type=Application Encoding=UTF-8 Terminal=false Categories=Network;HamRadio; Then rebooted: After: Double clicking it only returns: "Invalid desktop entry file.'/home/pi/Desktop/YAAC.desktop'" I've Googled for how to do this (generically, not just for YAAC) but none of the sites makes it any more clear than what I did. Can someone point out where to find this information or help me get it working? |
Icon of YAAC on Raspberry Pi Desktop
I'd like to have an icon I can use to launch YAAC, I'd also like to add it to the menu system.
For the desktop, I right clicked on the desktop and created YAAC.desktop. Then using sudo I entered; [Desktop Entry] Name=YAAC Comment=Launch YAAC Icon=/usr/share/pixmaps/yaac.xpm Exec=/YAAC java -jar YAAC.jar Type=Application Encoding=UTF-8 Terminal=false Categories=Network;HamRadio; Then rebooted: After: Double clicking it only returns: "Invalid desktop entry file.'/home/pi/Desktop/YAAC.desktop'" I've Googled for how to do this (generically, not just for YAAC) but none of the sites makes it any more clear than what I did. Can someone point out where to find this information or help me get it working? |
Re: Email client output rework
Ronny Julian
? Will be joining you on that soon Nate.? New Linux box is here but not yet built.? Thanks guys!?? On Sat, Jan 18, 2020 at 9:08 PM Nate Bargmann <n0nb@...> wrote: No issues here as I'm reading it in Mutt in Gnome Terminal and all the |
Re: Email client output rework
No issues here as I'm reading it in Mutt in Gnome Terminal and all the
messages use the same font. ;-) 73, Nate -- "The optimist proclaims that we live in the best of all possible worlds. The pessimist fears this is true." Web: Projects: GPG fingerprint: 82D6 4F6B 0E67 CD41 F689 BBA6 FB2C 5130 D55A 8819 |
Re: Email client output rework
开云体育Its
awesome by comparison. Much easier on my eyes. Steve kb1chu On 1/18/2020 5:57 PM, Ronny Julian
wrote:
|
Re: Where to find a Stable Version of YAAC
Ah, very interesting. I just watched the YouTube video. I'll have to try his script on another Pi (my Pi with the touchscreen is currently running the NW Digital Radio image for supporting their DRAWS card, so YAAC and Xastir are already installed).
Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of Ronny Julian <k4rjjradio@...> Sent: Saturday, January 18, 2020 9:28 AM To: [email protected] Subject: Re: [yaac-users] Where to find a Stable Version of YAAC Andrew not sure if you have seen Jason's script either. If you feel anything could be done different on YAAC in this please let Jason know. He is actively working on improving this and would love to work with anyone of the authors I'm sure. On Sat, Jan 18, 2020 at 9:24 AM Andrew P. <andrewemt@...<mailto:andrewemt@...>> wrote: Greetings. I'm not sure what you mean by the "installer". YAAC doesn't have an installation program per se; you just unzip the distribution into a directory of your choice, and then invoke the main YAAC.jar file by clicking on it in your O/S file manager, or using the command line java -jar YAAC.jar when cd'd into the YAAC installation directory. And the built-in upgrader does the same thing (downloads and unzips the new version over the old version). So, I'm not sure where you found an installer. Please explain exactly what you were doing. Also, I haven't tested YAAC with Java 13 yet. So you may have found some weird bug due to new constraints in that version of the runtime (I had to make some fixes to deal with Java 9). Let me know how you're "installing" YAAC. Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected]<mailto:[email protected]> <[email protected]<mailto:[email protected]>> on behalf of N9JCA Chris Matthews <n9jca.chris@...<mailto:n9jca.chris@...>> Sent: Saturday, January 18, 2020 1:08 AM To: [email protected]<mailto:[email protected]> Subject: [yaac-users] Where to find a Stable Version of YAAC I have tried to install the latest Beta with no success Is there a Stable version to be Had somewhere I have Java Runtime13 installed on LMDE (Stretch) When I Right Click on the Installer I choose "Install with Java Runtime13" but no luck If I can get it working then I will be running my Kenwood 700D from Home Thanks in advance Chris N9JCA 73 |
Re: Where to find a Stable Version of YAAC
Ronny Julian
Andrew not sure if you have seen Jason's script either.? If you feel anything could be done different on YAAC in this please let Jason know.? He is actively?working on improving this and would love to work with anyone of the authors I'm sure.?? On Sat, Jan 18, 2020 at 9:24 AM Andrew P. <andrewemt@...> wrote: Greetings. |
Re: Where to find a Stable Version of YAAC
Greetings.
I'm not sure what you mean by the "installer". YAAC doesn't have an installation program per se; you just unzip the distribution into a directory of your choice, and then invoke the main YAAC.jar file by clicking on it in your O/S file manager, or using the command line java -jar YAAC.jar when cd'd into the YAAC installation directory. And the built-in upgrader does the same thing (downloads and unzips the new version over the old version). So, I'm not sure where you found an installer. Please explain exactly what you were doing. Also, I haven't tested YAAC with Java 13 yet. So you may have found some weird bug due to new constraints in that version of the runtime (I had to make some fixes to deal with Java 9). Let me know how you're "installing" YAAC. Andrew, KA2DDO author of YAAC ________________________________________ From: [email protected] <[email protected]> on behalf of N9JCA Chris Matthews <n9jca.chris@...> Sent: Saturday, January 18, 2020 1:08 AM To: [email protected] Subject: [yaac-users] Where to find a Stable Version of YAAC I have tried to install the latest Beta with no success Is there a Stable version to be Had somewhere I have Java Runtime13 installed on LMDE (Stretch) When I Right Click on the Installer I choose "Install with Java Runtime13" but no luck If I can get it working then I will be running my Kenwood 700D from Home Thanks in advance Chris N9JCA 73 |
Re: Where to find a Stable Version of YAAC
Ronny Julian
Let us know what does not work and further steps.? Might want to check this out also.? Jason has put together a good overall script.? Not just for YAAC.?? On Sat, Jan 18, 2020 at 9:18 AM N9JCA Chris Matthews <n9jca.chris@...> wrote: I have tried to install the latest Beta with no success |
Where to find a Stable Version of YAAC
N9JCA Chris Matthews
I have tried to install the latest Beta with no success
Is there a Stable version to be Had somewhere I have Java Runtime13 installed on LMDE (Stretch) When I Right Click on the Installer I choose "Install with Java Runtime13" but no luck If I can get it working then I will be running my Kenwood 700D from Home Thanks in advance Chris N9JCA 73 |
to navigate to use esc to dismiss