public void GeefCoordinatenGeeftCorrecteStructuurEnWaarden()
        {
            string correct  = klimatogramDummy.GeefCoordinaten();
            string uitkomst = klimatogram.GeefCoordinaten();

            Assert.AreEqual(correct, uitkomst);
        }
        public KlimatogramViewModel(Locatie locatie)
        {
            Klimatogram k = locatie.Klimatogram;

            this.LocatieNaam               = locatie.Naam;
            this.LandNaam                  = locatie.Land.Naam;
            this.ContinentNaam             = locatie.Land.Continent.Naam;
            this.MaandGegevens             = k.MaandGegevens.Select(mg => new MaandGegevensViewModel(mg));
            this.TotaalNeerslag            = k.GeefTotaleJaarNeerslag();
            this.GemiddeldeJaarTemperatuur = k.GeefGemiddeldeJaarTemperatuur();
            this.StartWaarnemingen         = k.StartWaarnemingen;
            this.EindeWaarnemingen         = k.EindeWaarnemingen;
            this.Coordinaten               = k.GeefCoordinaten();
        }