FHIR Chat · logical models · social

Stream: social

Topic: logical models


view this post on Zulip Richard Kavanagh (Feb 18 2016 at 23:46):

flog001.png

view this post on Zulip Richard Kavanagh (Feb 18 2016 at 23:49):

(deleted)

view this post on Zulip Richard Kavanagh (Feb 18 2016 at 23:50):

public class PathConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (values[0] is ElementDefinition)
        {
            ElementDefinition data = values[0] as ElementDefinition;
            return data.LastPathPart();
        }
        else { return ""; }
    }

    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

view this post on Zulip Grahame Grieve (Feb 18 2016 at 23:53):

looks good Richard

view this post on Zulip Richard Kavanagh (Feb 18 2016 at 23:55):

Yes - Nearly at the point where I can release it to folk for a bit of testing. Been an interesting exercise learning C# WPF.

view this post on Zulip Richard Kavanagh (Feb 18 2016 at 23:56):

Going to take a look at how to cater for "example values" along the lines of your extensions - in due course :-)

view this post on Zulip David Hay (Feb 19 2016 at 00:29):

Richard: If you're going down the line of creating examples, would be good to co-ordinate efforts...

view this post on Zulip Hussain Chinoy (Feb 19 2016 at 01:40):

Well, hey there.

view this post on Zulip Richard Kavanagh (Feb 24 2016 at 08:31):

@David Hay, currently the focus is creating a tool for creating Logical Models, though the tool's framework then potentially allows other "resources" to be created. I'm currently only concerned with Logical Models though as I see that as having real near term utility.

view this post on Zulip Koray Atalag (Feb 27 2016 at 22:33):

Hi Richard, is the tool targeted for technical or clinical users? Looks like a worthwhile effort - thx

view this post on Zulip Richard Kavanagh (Feb 29 2016 at 14:01):

Hi @Koray Atalag currently I dont have any real plans for the tool on either, I suspect that it could be used by any of those communities. The tool is more about the "art of the possible". Interestingly I am looking at being able to import" openEHR artefacts into the tool. I'll be strating wiht archetypes.


Last updated: Apr 12 2022 at 19:14 UTC