taxon_reporter 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.ruby-version +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +13 -0
- data/LICENSE.txt +22 -0
- data/README.md +138 -0
- data/Rakefile +9 -0
- data/fixtures/webmock/he_24935172 +21 -0
- data/fixtures/webmock/he_24935173 +21 -0
- data/fixtures/webmock/he_46598317 +21 -0
- data/fixtures/webmock/he_46598318 +21 -0
- data/fixtures/webmock/he_49222053 +21 -0
- data/fixtures/webmock/he_49222054 +21 -0
- data/fixtures/webmock/he_49222055 +21 -0
- data/fixtures/webmock/he_49222056 +21 -0
- data/fixtures/webmock/he_49222057 +21 -0
- data/fixtures/webmock/he_49222058 +21 -0
- data/fixtures/webmock/he_49339384 +21 -0
- data/fixtures/webmock/he_49339385 +21 -0
- data/fixtures/webmock/he_49339386 +21 -0
- data/fixtures/webmock/he_49339387 +21 -0
- data/fixtures/webmock/he_49339388 +21 -0
- data/fixtures/webmock/he_49339389 +21 -0
- data/fixtures/webmock/he_49481246 +21 -0
- data/fixtures/webmock/he_49481247 +21 -0
- data/fixtures/webmock/he_49481248 +21 -0
- data/fixtures/webmock/he_49481249 +21 -0
- data/fixtures/webmock/he_49481250 +21 -0
- data/fixtures/webmock/he_49481251 +21 -0
- data/fixtures/webmock/he_49481252 +21 -0
- data/fixtures/webmock/he_49481253 +21 -0
- data/fixtures/webmock/he_50650187 +21 -0
- data/fixtures/webmock/he_50650188 +21 -0
- data/fixtures/webmock/he_51377284 +21 -0
- data/fixtures/webmock/he_51377285 +21 -0
- data/fixtures/webmock/he_51377286 +21 -0
- data/fixtures/webmock/he_51377287 +21 -0
- data/fixtures/webmock/he_51377288 +21 -0
- data/fixtures/webmock/he_51377289 +21 -0
- data/fixtures/webmock/he_51377290 +21 -0
- data/fixtures/webmock/he_51377291 +21 -0
- data/fixtures/webmock/he_51377292 +21 -0
- data/fixtures/webmock/he_51377293 +21 -0
- data/fixtures/webmock/he_52578134 +21 -0
- data/fixtures/webmock/he_52578135 +21 -0
- data/fixtures/webmock/he_54413991 +21 -0
- data/fixtures/webmock/he_54413992 +21 -0
- data/fixtures/webmock/he_54413993 +21 -0
- data/fixtures/webmock/he_54413994 +21 -0
- data/fixtures/webmock/he_54413995 +21 -0
- data/fixtures/webmock/he_54413996 +21 -0
- data/fixtures/webmock/he_54413997 +21 -0
- data/fixtures/webmock/he_54413998 +21 -0
- data/fixtures/webmock/he_55943656 +21 -0
- data/fixtures/webmock/he_55943657 +21 -0
- data/fixtures/webmock/he_55943658 +21 -0
- data/fixtures/webmock/he_55943659 +21 -0
- data/fixtures/webmock/he_55943660 +21 -0
- data/fixtures/webmock/he_55943661 +21 -0
- data/fixtures/webmock/he_55943662 +21 -0
- data/fixtures/webmock/he_55943663 +21 -0
- data/fixtures/webmock/p_0 +18 -0
- data/fixtures/webmock/p_10523172 +21 -0
- data/fixtures/webmock/p_10643171 +21 -0
- data/fixtures/webmock/p_13611746 +21 -0
- data/fixtures/webmock/p_13828910 +21 -0
- data/fixtures/webmock/p_21640907 +21 -0
- data/fixtures/webmock/p_308378 +21 -0
- data/fixtures/webmock/p_32137376 +21 -0
- data/fixtures/webmock/p_32137377 +21 -0
- data/fixtures/webmock/p_38813 +21 -0
- data/fixtures/webmock/p_4445991 +21 -0
- data/fixtures/webmock/p_4445992 +21 -0
- data/fixtures/webmock/p_4445998 +21 -0
- data/fixtures/webmock/p_4446006 +21 -0
- data/fixtures/webmock/p_4446007 +21 -0
- data/fixtures/webmock/p_4446008 +21 -0
- data/fixtures/webmock/p_4446010 +21 -0
- data/fixtures/webmock/p_4446011 +21 -0
- data/fixtures/webmock/p_4446012 +21 -0
- data/fixtures/webmock/ping +23 -0
- data/fixtures/webmock/s_Giraffa +21 -0
- data/lib/taxon_reporter.rb +16 -0
- data/lib/taxon_reporter/data_source.rb +42 -0
- data/lib/taxon_reporter/eol_data_source.rb +99 -0
- data/lib/taxon_reporter/field.rb +21 -0
- data/lib/taxon_reporter/record.rb +13 -0
- data/lib/taxon_reporter/report.rb +29 -0
- data/lib/taxon_reporter/taxon.rb +30 -0
- data/lib/taxon_reporter/version.rb +3 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/taxon_reporter/data_source_spec.rb +44 -0
- data/spec/taxon_reporter/eol_data_source_spec.rb +40 -0
- data/spec/taxon_reporter/field_spec.rb +5 -0
- data/spec/taxon_reporter/record_spec.rb +5 -0
- data/spec/taxon_reporter/report_spec.rb +5 -0
- data/spec/taxon_reporter_spec.rb +20 -0
- data/taxon_reporter.gemspec +26 -0
- metadata +193 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: d89939d8e1a285b6a32732a825248009a08df1dc
|
|
4
|
+
data.tar.gz: a79487d2140602cb640017479d03ea33e2b84fbf
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: f207ac869534249bb8dfbd181822af033e0eceef4956a5bb1e5890be998aafae1e0484e12ca658a9b143b072db4f7717252e53f68b2335310855a7c6ef5897e9
|
|
7
|
+
data.tar.gz: 4d3be04d08aba7bf3b62ca3d77d174e39c47d523c481e001825c40bddc22db5ef99f1fc9cca34beb12042d1fac768fa07eddf6194999e3ceb5f436ca12db0234
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.0.0-p353
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
|
|
3
|
+
# Specify your gem's dependencies in taxon_reporter.gemspec
|
|
4
|
+
gemspec
|
|
5
|
+
|
|
6
|
+
group :test do
|
|
7
|
+
gem 'rspec', '~> 2.14'
|
|
8
|
+
gem 'webmock', '~> 1.17'
|
|
9
|
+
gem 'coveralls', '~> 0.7', require: false
|
|
10
|
+
# gem 'capybara', '~> 2.2'
|
|
11
|
+
# gem 'travis-lint', '~> 1.7'
|
|
12
|
+
# gem 'launchy', '~> 2.4'
|
|
13
|
+
end
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2014 Nathan Wilson
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
taxon_reporter
|
|
2
|
+
=======
|
|
3
|
+
|
|
4
|
+
taxon_reporter is a Ruby gem that supports collecting data from a variety of biodiversity source about a given taxon and its descendants
|
|
5
|
+
|
|
6
|
+
[![Continuous Integration Status][1]][2]
|
|
7
|
+
[![Coverage Status][3]][4]
|
|
8
|
+
[![CodePolice][5]][6]
|
|
9
|
+
[![Dependency Status][7]][8]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
Install
|
|
13
|
+
-------
|
|
14
|
+
|
|
15
|
+
General requirements:
|
|
16
|
+
|
|
17
|
+
- Ruby version 2.0 or higher
|
|
18
|
+
- MySQL server version 5.1 or higher
|
|
19
|
+
- Web Server for production (Nginx, or Apache)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
Running Tests
|
|
23
|
+
-------------
|
|
24
|
+
|
|
25
|
+
bundle exec rake
|
|
26
|
+
|
|
27
|
+
Also look at [.travis.yml][9] file for more information
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
Copyright
|
|
31
|
+
---------
|
|
32
|
+
|
|
33
|
+
Code: [Nathan Wilson][10],[Dmitry Mozzherin][11]
|
|
34
|
+
|
|
35
|
+
Copyright (c) 2014 [Marine Biological Laboratory][12]. See [LICENSE][13] for
|
|
36
|
+
further details.
|
|
37
|
+
|
|
38
|
+
[1]: https://secure.travis-ci.org/EOL/taxon_reporter.png
|
|
39
|
+
[2]: http://travis-ci.org/EOL/taxon_reporter
|
|
40
|
+
[3]: https://coveralls.io/repos/EOL/taxon_reporter/badge.png?branch=master
|
|
41
|
+
[4]: https://coveralls.io/r/EOL/taxon_reporter?branch=master
|
|
42
|
+
[5]: https://codeclimate.com/github/EOL/taxon_reporter.png
|
|
43
|
+
[6]: https://codeclimate.com/github/EOL/taxon_reporter
|
|
44
|
+
[7]: https://gemnasium.com/EOL/taxon_reporter.png
|
|
45
|
+
[8]: https://gemnasium.com/EOL/taxon_reporter
|
|
46
|
+
[9]: https://github.com/EOL/taxon_reporter/blob/master/.travis.yml
|
|
47
|
+
[10]: https://github.com/nwilson-EOL
|
|
48
|
+
[11]: https://github.com/dimus
|
|
49
|
+
[12]: http://mbl.edu
|
|
50
|
+
[13]: https://github.com/EOL/taxon_reporter/blob/master/LICENSE
|
|
51
|
+
|
|
52
|
+
----
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# TaxonReporter
|
|
56
|
+
|
|
57
|
+
Supports collecting data from a variety of biodiversity source about a given taxon and its descendants
|
|
58
|
+
|
|
59
|
+
## Installation
|
|
60
|
+
|
|
61
|
+
Add this line to your application's Gemfile:
|
|
62
|
+
|
|
63
|
+
gem 'taxon_reporter'
|
|
64
|
+
|
|
65
|
+
And then execute:
|
|
66
|
+
|
|
67
|
+
$ bundle
|
|
68
|
+
|
|
69
|
+
Or install it yourself as:
|
|
70
|
+
|
|
71
|
+
$ gem install taxon_reporter
|
|
72
|
+
|
|
73
|
+
## Usage
|
|
74
|
+
|
|
75
|
+
### Required for TaxonEval
|
|
76
|
+
|
|
77
|
+
To get a TaxonReporter::Report about a taxon:
|
|
78
|
+
|
|
79
|
+
report = TaxonReporter.report("Giraffa")
|
|
80
|
+
|
|
81
|
+
A Report is a set of Taxons.
|
|
82
|
+
Report#fields
|
|
83
|
+
Report#values(field)
|
|
84
|
+
|
|
85
|
+
A Taxon is a set of Records.
|
|
86
|
+
Taxon#fields
|
|
87
|
+
Taxon#values(field)
|
|
88
|
+
|
|
89
|
+
A Record is a Field and a value (String).
|
|
90
|
+
|
|
91
|
+
A Field is a DataSource and a name (String)
|
|
92
|
+
|
|
93
|
+
A DataSource is a name (String), and a url (String)
|
|
94
|
+
DataSource#records(name)
|
|
95
|
+
|
|
96
|
+
### Useful Additions
|
|
97
|
+
|
|
98
|
+
To get the available report fields ("EOL:richness", source => "EOL", name => "richness"):
|
|
99
|
+
|
|
100
|
+
fields = TaxonReporter.fields
|
|
101
|
+
|
|
102
|
+
To get a set of default data sources:
|
|
103
|
+
|
|
104
|
+
data_sources = TaxonReporter.data_sources
|
|
105
|
+
|
|
106
|
+
To create a report from a different set of data sources:
|
|
107
|
+
|
|
108
|
+
TaxonReporter.add_data_source(data_source)
|
|
109
|
+
|
|
110
|
+
To remove a data source:
|
|
111
|
+
|
|
112
|
+
TaxonReporter.remove_data_source(data_source)
|
|
113
|
+
|
|
114
|
+
To get the full record (TaxonReporter.Record) for a taxon in a report:
|
|
115
|
+
|
|
116
|
+
record = report[name]
|
|
117
|
+
|
|
118
|
+
To get the value for a field (String) from a record:
|
|
119
|
+
|
|
120
|
+
value = record["EOL:scientificName"]
|
|
121
|
+
|
|
122
|
+
To get the String form of a TaxonReporter.Field:
|
|
123
|
+
|
|
124
|
+
s = field.to_s
|
|
125
|
+
|
|
126
|
+
To get all available fields (Array of TaxonReporter.Fields) for a record:
|
|
127
|
+
|
|
128
|
+
fields = record.fields
|
|
129
|
+
|
|
130
|
+
## Planned Sources
|
|
131
|
+
|
|
132
|
+
EOL,
|
|
133
|
+
GBIF,
|
|
134
|
+
Wikipedia,
|
|
135
|
+
Index Fungorum,
|
|
136
|
+
MycoBank,
|
|
137
|
+
Mushroom Observer,
|
|
138
|
+
MycoPortal
|
data/Rakefile
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "d00925e11acdf4588685f13229257a9a"
|
|
8
|
+
X-Request-Id: 0b69422d8bc297b1835ab801a3c1019b
|
|
9
|
+
X-Runtime: 0.200783
|
|
10
|
+
X-Content-Digest: 15ef9d205115d4d7cad933babfbf45bb3aaceedd
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 1525
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623717 738595354
|
|
17
|
+
Age: 957
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"taxonID":24935172,"parentNameUsageID":24935171,"taxonConceptID":38813,"scientificName":"Giraffa","taxonRank":"Genus","source":"http://eol.org/pages/38813/hierarchy_entries/24935172/overview","nameAccordingTo":["IUCN Red List (Species Assessed for Global Conservation)"],"vernacularNames":[],"synonyms":[],"ancestors":[{"taxonID":24913771,"parentNameUsageID":0,"taxonConceptID":1,"scientificName":"Animalia","taxonRank":"kingdom","source":"http://eol.org/pages/1/hierarchy_entries/24913771/overview"},{"taxonID":24913792,"parentNameUsageID":24913771,"taxonConceptID":694,"scientificName":"Chordata","taxonRank":"phylum","source":"http://eol.org/pages/694/hierarchy_entries/24913792/overview"},{"taxonID":24913813,"parentNameUsageID":24913792,"taxonConceptID":1642,"scientificName":"Mammalia","taxonRank":"class","source":"http://eol.org/pages/1642/hierarchy_entries/24913813/overview"},{"taxonID":24914780,"parentNameUsageID":24913813,"taxonConceptID":2970170,"scientificName":"Cetartiodactyla","taxonRank":"order","source":"http://eol.org/pages/2970170/hierarchy_entries/24914780/overview"},{"taxonID":24935171,"parentNameUsageID":24914780,"taxonConceptID":7684,"scientificName":"Giraffidae","taxonRank":"family","source":"http://eol.org/pages/7684/hierarchy_entries/24935171/overview"}],"children":[{"sourceIdentifier":"IUCN-9194","taxonID":24935173,"parentNameUsageID":24935172,"taxonConceptID":308378,"scientificName":"Giraffa camelopardalis","source":"http://eol.org/pages/308378/hierarchy_entries/24935173/overview"}]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "703deaea38cd37d0c431a1cf7674ff75"
|
|
8
|
+
X-Request-Id: 1599ea9e344b8b7dbb22b81c1b868fd4
|
|
9
|
+
X-Runtime: 0.179470
|
|
10
|
+
X-Content-Digest: 81dfca9df201082ce70bca4c69930e2b3fad21b1
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 1526
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623720 738595459
|
|
17
|
+
Age: 955
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"IUCN-9194","taxonID":24935173,"parentNameUsageID":24935172,"taxonConceptID":308378,"scientificName":"Giraffa camelopardalis","source":"http://eol.org/pages/308378/hierarchy_entries/24935173/overview","nameAccordingTo":["IUCN Red List (Species Assessed for Global Conservation)"],"vernacularNames":[],"synonyms":[],"ancestors":[{"taxonID":24913771,"parentNameUsageID":0,"taxonConceptID":1,"scientificName":"Animalia","taxonRank":"kingdom","source":"http://eol.org/pages/1/hierarchy_entries/24913771/overview"},{"taxonID":24913792,"parentNameUsageID":24913771,"taxonConceptID":694,"scientificName":"Chordata","taxonRank":"phylum","source":"http://eol.org/pages/694/hierarchy_entries/24913792/overview"},{"taxonID":24913813,"parentNameUsageID":24913792,"taxonConceptID":1642,"scientificName":"Mammalia","taxonRank":"class","source":"http://eol.org/pages/1642/hierarchy_entries/24913813/overview"},{"taxonID":24914780,"parentNameUsageID":24913813,"taxonConceptID":2970170,"scientificName":"Cetartiodactyla","taxonRank":"order","source":"http://eol.org/pages/2970170/hierarchy_entries/24914780/overview"},{"taxonID":24935171,"parentNameUsageID":24914780,"taxonConceptID":7684,"scientificName":"Giraffidae","taxonRank":"family","source":"http://eol.org/pages/7684/hierarchy_entries/24935171/overview"},{"taxonID":24935172,"parentNameUsageID":24935171,"taxonConceptID":38813,"scientificName":"Giraffa","taxonRank":"genus","source":"http://eol.org/pages/38813/hierarchy_entries/24935172/overview"}],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "28e4a4288685c2458fc0da353077c0e4"
|
|
8
|
+
X-Request-Id: c4793229e007ea8a1d855ee7415d2f45
|
|
9
|
+
X-Runtime: 0.119346
|
|
10
|
+
X-Content-Digest: 875f270fa3009a740a20c037882f9554bd63bda7
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 374
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623721 738595323
|
|
17
|
+
Age: 959
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"624948","taxonID":46598317,"parentNameUsageID":46598316,"taxonConceptID":38813,"scientificName":"Giraffa Br\u00fcnnich, 1771","taxonRank":"Genus","source":"http://eol.org/pages/38813/hierarchy_entries/46598317/overview","nameAccordingTo":["Integrated Taxonomic Information System (ITIS)"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "dc15c23e6efa23db3945ac0ad0802d33"
|
|
8
|
+
X-Request-Id: 5b7dce97d531b0549d7c2874ca12ea77
|
|
9
|
+
X-Runtime: 0.141180
|
|
10
|
+
X-Content-Digest: 80782f829fa488df9f3c3020a0de8264ad5fa647
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 390
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623722 738595419
|
|
17
|
+
Age: 956
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"625036","taxonID":46598318,"parentNameUsageID":46598317,"taxonConceptID":308378,"scientificName":"Giraffa camelopardalis (Linnaeus, 1758)","taxonRank":"Species","source":"http://eol.org/pages/308378/hierarchy_entries/46598318/overview","nameAccordingTo":["Integrated Taxonomic Information System (ITIS)"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "25c722845eff785cfba17e62bf6a8df1"
|
|
8
|
+
X-Request-Id: 61865d2b64a967c0f39dd85df651f1b2
|
|
9
|
+
X-Runtime: 0.133241
|
|
10
|
+
X-Content-Digest: d3a82504f53d2ac86efa3c521ea84265707ce165
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 355
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623724 738595329
|
|
17
|
+
Age: 958
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"urn:paleodb:tn42695","taxonID":49222053,"parentNameUsageID":49222052,"taxonConceptID":38813,"scientificName":"Giraffa Brisson 1762","taxonRank":"Genus","source":"http://eol.org/pages/38813/hierarchy_entries/49222053/overview","nameAccordingTo":["Paleobiology Database"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "8654b4163760be825bcca151978eef40"
|
|
8
|
+
X-Request-Id: 4f5767e10e692e83a5372a537694ef83
|
|
9
|
+
X-Runtime: 0.108981
|
|
10
|
+
X-Content-Digest: d42fafc272a716e23ff61a248bc4a77e32740772
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 377
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623727 738595431
|
|
17
|
+
Age: 956
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"urn:paleodb:tn133600","taxonID":49222054,"parentNameUsageID":49222053,"taxonConceptID":308378,"scientificName":"Giraffa camelopardalis Linnaeus, 1758","taxonRank":"Species","source":"http://eol.org/pages/308378/hierarchy_entries/49222054/overview","nameAccordingTo":["Paleobiology Database"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "647024db6ba77df1215c59f30438a2c6"
|
|
8
|
+
X-Request-Id: 2e9664d2a8cd75db0441b72fff5655be
|
|
9
|
+
X-Runtime: 0.110558
|
|
10
|
+
X-Content-Digest: 759c9453424b74d5a86e8cf24bd3caba446397c6
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 368
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623728 738595760
|
|
17
|
+
Age: 945
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"urn:paleodb:tn133599","taxonID":49222055,"parentNameUsageID":49222053,"taxonConceptID":4445992,"scientificName":"Giraffa jumae Leakey, 1967","taxonRank":"Species","source":"http://eol.org/pages/4445992/hierarchy_entries/49222055/overview","nameAccordingTo":["Paleobiology Database"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "722d45bf69b0f031544b1b109c82c577"
|
|
8
|
+
X-Request-Id: 3bb671eefb3728bb1c2280b0ef1fdf8b
|
|
9
|
+
X-Runtime: 0.119613
|
|
10
|
+
X-Content-Digest: e8193114c4bd5823edf2c10d8c1100b63237ad08
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 377
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623729 738595883
|
|
17
|
+
Age: 943
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"urn:paleodb:tn185970","taxonID":49222056,"parentNameUsageID":49222053,"taxonConceptID":13611746,"scientificName":"Giraffa punjabiensis Pilgrim 1911","taxonRank":"Species","source":"http://eol.org/pages/13611746/hierarchy_entries/49222056/overview","nameAccordingTo":["Paleobiology Database"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "85e5b78633e74033c5205089096e8fac"
|
|
8
|
+
X-Request-Id: 57ece40e3e05e4568a59a67d9a8531ed
|
|
9
|
+
X-Runtime: 0.224632
|
|
10
|
+
X-Content-Digest: 6284e166c37ed32ec68b45af8ce379a1b50d63ed
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 372
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623732 738595851
|
|
17
|
+
Age: 944
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"urn:paleodb:tn185971","taxonID":49222057,"parentNameUsageID":49222053,"taxonConceptID":4445998,"scientificName":"Giraffa priscilla Pilgrim 1911","taxonRank":"Species","source":"http://eol.org/pages/4445998/hierarchy_entries/49222057/overview","nameAccordingTo":["Paleobiology Database"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
HTTP/1.1 200 OK
|
|
2
|
+
Server: nginx/1.1.19
|
|
3
|
+
Content-Type: application/json; charset=utf-8
|
|
4
|
+
Status: 200 OK
|
|
5
|
+
Cache-Control: max-age=86400, public
|
|
6
|
+
X-UA-Compatible: IE=Edge,chrome=1
|
|
7
|
+
ETag: "c4e4dbb671429081d9b3abaf7b212d82"
|
|
8
|
+
X-Request-Id: 31913181a41e21b250bd9d466b5956e0
|
|
9
|
+
X-Runtime: 0.135010
|
|
10
|
+
X-Content-Digest: 920f0f1ea357876d63d7c999b78ae5a9c5377927
|
|
11
|
+
X-Rack-Cache: miss, store
|
|
12
|
+
X-Cacheable: YES
|
|
13
|
+
Content-Length: 386
|
|
14
|
+
Accept-Ranges: bytes
|
|
15
|
+
Date: Fri, 24 Jan 2014 01:44:15 GMT
|
|
16
|
+
X-Varnish: 738623734 738595739
|
|
17
|
+
Age: 946
|
|
18
|
+
Via: 1.1 varnish
|
|
19
|
+
Connection: keep-alive
|
|
20
|
+
|
|
21
|
+
{"sourceIdentifier":"urn:paleodb:tn185972","taxonID":49222058,"parentNameUsageID":49222053,"taxonConceptID":4445991,"scientificName":"Giraffa sivalensis Falconer and Cautley 1843","taxonRank":"Species","source":"http://eol.org/pages/4445991/hierarchy_entries/49222058/overview","nameAccordingTo":["Paleobiology Database"],"vernacularNames":[],"synonyms":[],"ancestors":[],"children":[]}
|