Skip to content

Commit

Permalink
Use PascalCase for Nutzungsart catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Apr 30, 2024
1 parent 8b266f2 commit 1116584
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Geodatenbezug/Models/NutzungsflaechenCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ public class Transfer
public class DataSection
{
[XmlElement("LWB_Nutzungsflaechen_V2_0.LNF_Kataloge")]
required public LnfKataloge LNFKataloge { get; set; }
required public LnfKataloge LnfKataloge { get; set; }
}

public class LnfKataloge
{
[XmlElement("LWB_Nutzungsflaechen_V2_0.LNF_Kataloge.LNF_Katalog_Nutzungsart")]
required public List<LnfKatalogNutzungsart> LNFKatalogNutzungsart { get; set; }
required public List<LnfKatalogNutzungsart> LnfKatalogNutzungsart { get; set; }
}

public class LnfKatalogNutzungsart
{
[XmlElement("LNF_Code")]
required public int LNFCode { get; set; }
required public int LnfCode { get; set; }

[XmlElement("Nutzung")]
required public Nutzung Nutzung { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions Geodatenbezug/Processors/NutzungsflaechenProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ private async Task CreateNutzungsartLayerAsync()
catalogData.ForEach(entry =>
{
using var feature = new Feature(nutzungsartLayer.GetLayerDefn());
feature.SetField(lnfCodeName, entry.LNFCode);
feature.SetField(lnfCodeName, entry.LnfCode);
feature.SetField(istBffQiName, entry.IstBFFQI ? 1 : 0);
feature.SetField(hauptkategorieDeName, entry.Hauptkategorie.LocalisationCHV1MultilingualText.LocalisedText.LocalisationCHV1LocalisedText.FirstOrDefault(t => t.Language == "de").Text);
feature.SetField(hauptkategorieFrName, entry.Hauptkategorie.LocalisationCHV1MultilingualText.LocalisedText.LocalisationCHV1LocalisedText.FirstOrDefault(t => t.Language == "fr").Text);
Expand All @@ -256,7 +256,7 @@ private async Task<List<LnfKatalogNutzungsart>> GetLnfKatalogNutzungsartAsync()

if (deserializedObject is Transfer catalog)
{
return catalog.DataSection.LNFKataloge.LNFKatalogNutzungsart;
return catalog.DataSection.LnfKataloge.LnfKatalogNutzungsart;
}
else
{
Expand Down

0 comments on commit 1116584

Please sign in to comment.