Replies: 4 comments 15 replies
-
For the blocker above, perhaps the questionnaire can contain a hidden field with the practitioners location and then have that extracted via SMs to the |
Beta Was this translation helpful? Give feedback.
-
@ageryck My assumption is that What if we added the Location Reference to the {
"resourceType": "Group",
"id": "101",
"identifier": [
{
"system": "http://someveterinarianclinic.org/fhir/NamingSystem/herds",
"value": "12345"
}
],
"type": "person",
"actual": true,
"code": {
"text": "Family"
},
"name": "John's Household",
"characteristic": [
{
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "264362003",
"display": "Home (environment)"
}
],
"text": "Home (environment)"
},
"value": {
"reference": "Location/<uuid>",
"display": "John's Household"
},
"exclude": false
}
]
} |
Beta Was this translation helpful? Give feedback.
-
@pld This would solve linkages to Patient resources much more easily and as Uganda needs this for every form/encounter we can use Encounter.location. |
Beta Was this translation helpful? Give feedback.
-
For Uganda use case to add this to all questionnaires @dubdabasoduba has some thoughts around adding this to fhircore and making it configurable to be set ON/OFF then when turned on the app auto-picks coordinates in the background and attach it as metadata to the QR. What are your thoughts on this |
Beta Was this translation helpful? Give feedback.
-
Background:
There is a need to add a widget in the FHIR questionnaire to capture longitude, latitude, and altitude (not mandatory) on questionnaire load. Currently, the SDC does not support adding an item that can automatically pick GPS coordinates.
Proposed Approach
We propose this data to be extracted to a location resource and saved as follows;
Location.identifier
to hold the sameid
as that assigned to theGroup Resources
holding the household detailsLocation.name
to hold the same HH nameLocation.position
to hold the three co-ordinatesLocation.partOf
to hold Location Reference for the Practiioner's assigned Location (village)Potential Blockers
partOf
of the newly created Location ResourceSample Location Resource
Beta Was this translation helpful? Give feedback.
All reactions