Stream: implementers
Topic: Patient Location Linking
James Wood (Nov 23 2020 at 15:57):
I'm looking for guidance on how to correctly link a patient to a location (i.e. their bed, room). I suppose this applies to any in-patient setting, but in particular I'm working on long-term-care where the room/bed really defines where a patient is living long-term. Can anyone help explain the linkage?
Michele Mottini (Nov 23 2020 at 16:27):
Via Encounter I guess
James Wood (Nov 23 2020 at 16:35):
Thanks for the answer -- that's the only answer I've found online, but I'm not clear what that actually means. What is the type of encounter that would link a patient to the location?
Michele Mottini (Nov 23 2020 at 16:45):
When the patient is admitted create an Encouter resource referencing the patient (via http://hl7.org/fhir/encounter-definitions.html#Encounter.subject) and the location (via http://hl7.org/fhir/encounter-definitions.html#Encounter.location).
Location is a list, so if the patient moves around add a new location and mark the previous one as no longer current setting location.period.end
Lloyd McKenzie (Nov 24 2020 at 23:55):
A patient can only have a tracked location if they're part of an inpatient encounter.
René Spronk (Nov 25 2020 at 08:36):
? where is that documented - I searched for "Location track" in the FHIR spec, no matches..
Lloyd McKenzie (Nov 25 2020 at 22:49):
What systems track the location of patients outside of an inpatient encounter? We track their contact information (physical and mailing addresses), but I'm not aware of any business flow that tracks a patient's actual physical location at any point in time...
René Spronk (Nov 26 2020 at 08:28):
I'm aware of a HIS in Israel that tracks all patients in real-time, as well as clinicians, and mobile pieces of equipment (among other things). Is some patient has an heart attack, the nearest clinicians are paged. I admit this is an extreme use case, but it does point out that tracking is not limited to specific types of encounter.
Vassil Peytchev (Nov 26 2020 at 17:40):
Specialty ambulatory clinics would also want to track equipment, providers and patients, wouldn't they? It seems that even urgent care centers would want to know which exam rooms are occupied, and which provider(s) and patient are in each occupied room...
John Moehrke (Nov 30 2020 at 14:40):
One system would use AuditEvent. Each change in location is recorded. Thus a query against location AuditEvents for a given asset (agent) and you would see the current location and past locations.... Not unlike how Google Maps tracks you...
Cooper Thompson (Nov 30 2020 at 18:34):
How are they doing the tracking? If they are using a RFID tag or something, that could be a Device, which could reference the patient it is assigned to (independent of Encounter). Normally the RFID tag would be issued to a patient at the start of an encounter (whether it is an admission, outpatient encounter), but if you are doing non-encounter based tracking (like maybe home care, which is more about the EpisodeOfCare than Encounter) then maybe you could just use a Device->Patient without Encounter in the middle. Conceptually you'd have an Encounter where that tag was assigned to the patient (e.g. the nurse gives them the tag), but the actual tracking could be encounter-independent.
Cooper Thompson (Nov 30 2020 at 18:34):
So really, you aren't tracking the patient, you are tracking their location-emitting device. So if their dog swallows it, technically you'd be tracking the patient's dog, not the patient. But that's probably what you actually mean anyway.
John Moehrke (Nov 30 2020 at 18:58):
yes, that is reality
Last updated: Apr 12 2022 at 19:14 UTC