-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Waterpasserende verharding BGT/BAG vergelijking Begin van relatieve hoogteligging vlakken
- Loading branch information
1 parent
d0ead66
commit 7ffa99c
Showing
3 changed files
with
59 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7ffa99c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even goed de non-matching-buildings nakijken. Ik zie het in deze commit in drie varianten langskomen.
self._database.non_matching_buildings
non_matching = self._database.non_matching_buildings
(alleen in loop gebruikt geloof ik? dan kan je ookfor building in self._database.non_matching_buildings
ofzo doen).self.non_matching_buildings
Oppassen dat er eentje niet de ander loopt te pesten.
Het ziet er namelijk uit als een lijst, en dan moet je bij python oppassen. Een variabele wijst achter de schermen naar een geheugenlocatie.
a = 3
, dan wijsta
naar een waarde3
. Maara = []
, dan wijsta
naar een lijst. En een lijst kan intern veranderd worden zonder dat het adres van de lijst zelf veranderd:Op dit soort punten kunnen subtiele bugs ontstaan, vandaar m'n hele verhaal :-)