Skip to content

Commit

Permalink
v.in.pygbif: fix identifiers (#972)
Browse files Browse the repository at this point in the history
  • Loading branch information
ninsbl committed Oct 28, 2023
1 parent f525cb0 commit 26df529
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/vector/v.in.pygbif/v.in.pygbif.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,12 @@ def main():
res["identifier"],
res["recordedBy"],
res["identificationID"],
",".join(res["identifiers"]),
",".join(
[
identifier["identifier"]
for identifier in res["identifiers"]
]
),
"{}".format(res["dateIdentified"])
if res["dateIdentified"]
else None,
Expand Down

0 comments on commit 26df529

Please sign in to comment.