Heya, I noticed a street name in the San Diego file today "S 39TH ST S" which has the "South" directional added twice: ```bash cat us_ca_san_diego-addresses-county.geojson \ | grep 'S 39TH ST S' \ | jq '.properties.street' "S 39TH ST S" ``` It seems that the error is caused by the source data including *both* pre (`addrpdir`) and post (`addrpostd`) directional columns with the value 'S': ```bash ogr2ogr -f CSV /vsistdout/ addrapn_datasd.dbf \ | xsv search -s 'objectid' '854155' \ | xsv table objectid addrnmbr addrfrac addrpdir addrname addrpostd addrsfx addrunit addrzip add_type roadsegid apn asource plcmt_loc community parcelid usng 854155 1261 S 39TH S ST 92113 0 5512003800 M C SAN DIEGO 11648 11S MS 89683 17286 ``` Would it be possible to add a check in machine which only adds one of these values to the `street` field when both are present?
Heya,
I noticed a street name in the San Diego file today "S 39TH ST S" which has the "South" directional added twice:
It seems that the error is caused by the source data including both pre (
addrpdir) and post (addrpostd) directional columns with the value 'S':Would it be possible to add a check in machine which only adds one of these values to the
streetfield when both are present?