vMix Forums
»
General
»
General Discussion
»
vMix WeatherApp XAML Lower Third
Rank: Newbie
Groups: Registered
Joined: 6/11/2015(UTC) Posts: 6
Thanks: 2 times
|
Would definitely love it if someone could help make this Fahrenheit capable? Sorry we are so behind in the US. I remember the big push for Celsius when I was a wee lad in elementary school during the mid 70's, but alas...
I found some XAML code to convert, maybe someone can tinker/fix/ add this to the current wonderful Njastad weather plugin?
[ValueConversion(typeof(double), typeof(double))] public class FahrenheitToCelsiusConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value == null) { throw new ArgumentNullException("value"); } // Fahrenheit to Celsius double fahrenheit; if (double.TryParse(value.ToString(), out fahrenheit)) { var celsius = (fahrenheit - 32) * 5 / 9; return celsius; }
throw new ArgumentException("value must be double"); }
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { if (value == null) { throw new ArgumentNullException("value"); } // Celsius to Fahrenheit double celsius; if (double.TryParse(value.ToString(), out celsius)) { var fahrenheit = celsius * 9 / 5 + 32; return fahrenheit; }
throw new ArgumentException("value must be double"); }
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/20/2014(UTC) Posts: 2,721 Location: Bordeaux, France Thanks: 243 times Was thanked: 794 time(s) in 589 post(s)
|
Hi
I guess you'd better ask Njastad to do it as it is "his" app.
Guillaume
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,223 Location: Belgium Thanks: 293 times Was thanked: 955 time(s) in 790 post(s)
|
Would this not depend on where one is pulling the data from also ? do they transmit as C value or F value ?
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/20/2014(UTC) Posts: 2,721 Location: Bordeaux, France Thanks: 243 times Was thanked: 794 time(s) in 589 post(s)
|
The service is based on yr.no I quickly checked but found no F option.
Even the JS, PHP or XML forecasts seem to be in Celcius only, but all docs are in Norwegian so not easy to say
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 7/4/2015(UTC) Posts: 65 Thanks: 3 times Was thanked: 3 time(s) in 3 post(s)
|
Any updates on this to english version ????? At least customizing Thremir wrote:Greetings vMixers! Me and my brother really like to test the limit of things we are using, therefore we came up with this maybe not so useful for all, but at least we got a good test of what we were capable of making. We present to you; the vMix WeatherApp Includes: - Lower third viewing the weather of selected area in the 4 next days - Software to control both location, the lower third itself and the color of the lower third effect via a color picker Please note that these are 2-storyboard animations with both in- and out-effects but out animations only work with vMix 12+ Please supply feature suggestions and other layouts for the templates as I am out of ideas. The application was developed by my brother Sondre Njåstad, so a big shoutout to him. In addition we want to say that this is a project to support and expand the use of vMix, and that as a 3rd party software, do not contact the official vMix Team about this software. He will lurk this tread as much as I will as "Sondrey", so any app-related questions will go to him --DOWNLOAD LINK-- http://shop.njastad.com/...roduct&product_id=51This would be another part of my "Pack of XAML Lower Thirds / Supers", which you can find here: http://forums.vmix.com.a....aspx?g=posts&t=2138Information about source-code and further development found below. --DONATION LINK-- https://www.paypal.com/c..._button_id=VBKT28CRUAGTQContact us via skype if there should be any questions: App Dev.: sondre_njaastad XAML desginer: havard_njastad Cheers Håvard & Sondre
|
|
|
|
vMix Forums
»
General
»
General Discussion
»
vMix WeatherApp XAML Lower Third
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The vMix Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close