Jump to content
  • Member Statistics

    17,507
    Total Members
    7,904
    Most Online
    SnowHabit
    Newest Member
    SnowHabit
    Joined

SHARPpy


Chinook

Recommended Posts

Today I was watching the most recent Weatherbrains program. They interviewed one of the programmers of SHARPpy (interactive sounding program). Apparently you can just download the 55MB executable and start using it. It creates observed and forecast soundings with the same calculations as the SPC observed soundings page.

 

Windows

https://dl.dropboxusercontent.com/u/19776813/SHARPpy.exe

 

Mac OSx

https://dl.dropboxusercontent.com/u/19776813/SHARPpy.zip

Link to comment
Share on other sites

Yeah I tried setting this up before using their instructions. I couldn't figure it out, but I am damn glad that there is a .exe now. It will be great to be able to modify soundings especially off of the GFS which locally tends to lowball the temperatures.

Link to comment
Share on other sites

Nice. I tried the other as well and never figured it out. Have even used Python a bit before heh. This will help it get good play I'm sure,

Yeah the Python part is where I got hung up. It is nice though because back in college we had a program that ran on a linux base called Nsharp, that is very similar to this. Not to mention this is a bit like the sounding output from AWIPS which I used back during my internship at NWS-DTX back in college.

Link to comment
Share on other sites

Today I was watching the most recent Weatherbrains program. They interviewed one of the programmers of SHARPpy (interactive sounding program). Apparently you can just download the 55MB executable and start using it. It creates observed and forecast soundings with the same calculations as the SPC observed soundings page.

 

Windows

https://dl.dropboxusercontent.com/u/19776813/SHARPpy.exe

 

Mac OSx

https://dl.dropboxusercontent.com/u/19776813/SHARPpy.zip

 

 

Thanks, so much for this! I've been looking for a way to run this for a while 

Link to comment
Share on other sites

  • 3 weeks later...

Anyone have problems loading the NAM 4KM soundings on SHARPpy? I noticed when I tried loading them earlier this week, just wondering if it is me or everyone.

 

Works fine when I run it through Python. Must be the .exe version having the problem?

Link to comment
Share on other sites

  • 6 months later...
  • 3 weeks later...

One problem I ran into -- on high dpi screens (e.g. the Surface Pros, Yogas and other recent PCs), the location map can be hard to access, as it's simply too small.

As with other programs that don't yet take such screens into account, it can be fixed by including a "manifest" file in the same directory as the executable. You'll also need to modify the registry as found here:

 http://www.danantonielli.com/adobe-app-scaling-on-high-dpi-displays-fix/

The file should be named "sharpy.exe.manifest":

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">

<dependency>
  <dependentAssembly>
    <assemblyIdentity
      type="win32"
      name="Microsoft.Windows.Common-Controls"
      version="6.0.0.0" processorArchitecture="*"
      publicKeyToken="6595b64144ccf1df"
      language="*">
    </assemblyIdentity>
  </dependentAssembly>
</dependency>

<dependency>
  <dependentAssembly>
    <assemblyIdentity
      type="win32"
      name="Microsoft.VC90.CRT"
      version="9.0.21022.8"
      processorArchitecture="amd64"
      publicKeyToken="1fc8b3b9a1e18e3b">
    </assemblyIdentity>
  </dependentAssembly>
</dependency>

<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
  <security>
    <requestedPrivileges>
      <requestedExecutionLevel
        level="asInvoker"
        uiAccess="false"/>
    </requestedPrivileges>
  </security>
</trustInfo>

<asmv3:application>
  <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
    <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</ms_windowsSettings:dpiAware>
  </asmv3:windowsSettings>
</asmv3:application>

</assembly>
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...