-
Notifications
You must be signed in to change notification settings - Fork 4
Theme In der Höhe
lukmay edited this page Dec 16, 2023
·
2 revisions
If an accommodation has a altitude
above 1000, the theme "In der Höhe" is added to the ThemeIds
.
Code:
Is implemented here.
var altitude = myacco.Altitude;
if (altitude != null)
{
int altitudeint = Convert.ToInt32(altitude);
if (altitudeint > 1000)
{
myacco.ThemeIds.Add("In der Höhe");
}
}
This wiki contains additional information about the Open Data Hub alongside the Open Data Hub - Official Documentation 🔗 .