Skip to content

Commit

Permalink
Merge pull request #384 from bcgov/siteloaderfix
Browse files Browse the repository at this point in the history
fixed SiteLoaderPrep to output Y instead of true for is_primary
  • Loading branch information
3rdmike authored Jan 5, 2024
2 parents 96ebe1d + 77ff9d4 commit 9b28317
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ private void writeSiteOutput(RowWriter siteOutputWriter, InputSite site) {
}
}
row.put("AP_TYPE", site.apType);
row.put("IS_PRIMARY_IND", site.isPrimary);
row.put("IS_PRIMARY_IND", site.isPrimary ? "Y" : "N");
row.put("NARRATIVE_LOCATION", site.narrativeLocation);
row.put("ACCESS_POSITIONAL_ACCURACY", site.accessPositionalAccuracy == null ? "" : site.accessPositionalAccuracy.toString());
row.put("CIVIC_NUMBER", site.civicNumber);
Expand Down

0 comments on commit 9b28317

Please sign in to comment.