mirror of
https://github.com/Brandon-Rozek/website.git
synced 2024-11-25 09:36:31 -05:00
Merge pull request #3 from Brandon-Rozek/inat_changes
Changes to inaturalist sync script and theme update
This commit is contained in:
commit
f9f4b993b7
2 changed files with 8 additions and 1 deletions
|
@ -122,6 +122,12 @@ def reformat_obs(obsid, obs_json):
|
||||||
# Turn Created At -> Date
|
# Turn Created At -> Date
|
||||||
obs_data['metadata']['date'] = obs_json['time_observed_at']
|
obs_data['metadata']['date'] = obs_json['time_observed_at']
|
||||||
|
|
||||||
|
# Grab some taxonomy information about the organism
|
||||||
|
obs_data['metadata']['taxon'] = dict(
|
||||||
|
name=obs_json['taxon']['name'],
|
||||||
|
common_name=obs_json['taxon']['preferred_common_name']
|
||||||
|
)
|
||||||
|
|
||||||
# Grab only a few fields
|
# Grab only a few fields
|
||||||
desired_fields = [
|
desired_fields = [
|
||||||
'quality_grade', 'identifications_most_agree',
|
'quality_grade', 'identifications_most_agree',
|
||||||
|
@ -130,6 +136,7 @@ def reformat_obs(obsid, obs_json):
|
||||||
'community_taxon_id', 'geojson',
|
'community_taxon_id', 'geojson',
|
||||||
'owners_identification_from_vision',
|
'owners_identification_from_vision',
|
||||||
'identifications_count', 'obscured',
|
'identifications_count', 'obscured',
|
||||||
|
'num_identification_agreements',
|
||||||
'num_identification_disagreements',
|
'num_identification_disagreements',
|
||||||
'place_guess', "photos"
|
'place_guess', "photos"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 31cbccf8450f3faf84b7f090a6ca82f31f1e784f
|
Subproject commit 8982737cbccdac6aaa2dd5dfbd6835043814fb25
|
Loading…
Reference in a new issue