diff --git a/Homework3_engagement/assets/fonts/.gitkeep b/Homework3_engagement/assets/fonts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/Homework3_engagement/assets/fonts/CatsHandwriting.woff b/Homework3_engagement/assets/fonts/CatsHandwriting.woff new file mode 100644 index 0000000..9c96e56 Binary files /dev/null and b/Homework3_engagement/assets/fonts/CatsHandwriting.woff differ diff --git a/Homework3_engagement/css/style.css b/Homework3_engagement/css/style.css new file mode 100644 index 0000000..14dda5d --- /dev/null +++ b/Homework3_engagement/css/style.css @@ -0,0 +1,831 @@ +@font-face { + font-family: "CatsHandwriting"; + /* Compatible with common structures: + - index.html at root, font at ./assets/fonts + - style.css at /css, font at ../assets/fonts */ + src: + url("/assets/fonts/CatsHandwriting.woff") format("woff"), + url("./assets/fonts/CatsHandwriting.woff") format("woff"), + url("../assets/fonts/CatsHandwriting.woff") format("woff"); + font-display: swap; +} + +:root { + --bg-page: #e9ddc7; + --bg-frame: #f7edd7; + --border-card: #d6c4a3; + --accent-brown: #7c5b39; + --accent-soft: #f2d9b1; + --accent-green: #9cbf7b; + --accent-orange: #e7a868; + --accent-red: #d86e5b; + --text-main: #4e4030; + --text-muted: #8a7b65; + --radius-large: 26px; + --radius-card: 18px; + --shadow-soft: 0 4px 12px rgba(124, 91, 57, 0.18); + --shadow-strong: 0 10px 24px rgba(124, 91, 57, 0.22); +} + +* { box-sizing: border-box; } +html, body { height: 100%; } +body { + margin: 0; + color: var(--text-main); + background: var(--bg-page); + font-family: "CatsHandwriting", "Nunito", system-ui, -apple-system, Segoe UI, sans-serif; +} + +.page-bg { + min-height: 100vh; + padding: 10px; +} + +.app-frame { + height: calc(100vh - 20px); + max-width: 1620px; + margin: 0 auto; + background: var(--bg-frame); + border-radius: var(--radius-large); + border: 2px solid #d1c1a3; + box-shadow: 0 8px 20px rgba(109, 84, 56, 0.25); + display: flex; + flex-direction: column; + padding: 12px 18px 12px; + overflow: hidden; +} + +/* Top bar */ +.top-bar { + display: flex; + align-items: center; + justify-content: space-between; + padding: 6px 10px; + border-radius: 18px; + background: #f9f0dd; + border: 1px solid var(--border-card); + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4); +} + +.top-bar-left { + display: flex; + align-items: center; + gap: 10px; +} + +.app-icon { + width: 34px; + height: 34px; + border-radius: 12px; + border: 1px solid var(--border-card); + background: #f5e3c3; +} + +.app-title { + margin: 0; + font-family: "Patrick Hand", cursive; + font-size: 1.35rem; + color: var(--accent-brown); +} + +.app-subtitle { + margin: 0; + font-size: 0.78rem; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +.top-bar-right { + display: flex; + align-items: center; + gap: 6px; +} + +.top-icon-button { + border: 1px solid var(--border-card); + background: #f5e6c7; + border-radius: 50%; + width: 32px; + height: 32px; + cursor: pointer; + box-shadow: var(--shadow-soft); +} + +.primary-chip { + border-radius: 16px; + border: 1px solid var(--accent-brown); + background: var(--accent-brown); + color: #fffdf5; + padding: 5px 12px; + font-size: 0.82rem; + cursor: pointer; + font-family: "Nunito", system-ui, sans-serif; + box-shadow: var(--shadow-soft); +} + +/* Sub bar */ +.sub-bar { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 8px; + padding: 6px 10px; + border-radius: 16px; + background: #f8edd6; + border: 1px solid var(--border-card); +} + +.sub-bar-left, +.sub-bar-right { + display: flex; + align-items: center; + gap: 6px; +} + +.sub-label { + font-size: 0.8rem; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +.sub-select { + font-size: 0.78rem; + border-radius: 12px; + border: 1px solid var(--border-card); + padding: 2px 10px; + background: #fdf6e9; + font-family: "Nunito", system-ui, sans-serif; +} + +.ghost-chip { + border-radius: 999px; + padding: 3px 10px; + border: 1px solid transparent; + background: transparent; + font-size: 0.78rem; + cursor: pointer; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +.ghost-chip--active { + background: #fdf6ea; + border-color: var(--border-card); + color: var(--accent-brown); + box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5); +} + +/* Main workspace */ +.app-main { + flex: 1; + min-height: 0; + display: grid; + grid-template-columns: minmax(0, 2.2fr) 340px; + gap: 16px; + padding: 14px 10px 10px; +} + +/* Canvas panel */ +.map-panel { + position: relative; + border-radius: 20px; + border: 1px solid var(--border-card); + background: #f3e8cf; + overflow: hidden; + box-shadow: 0 2px 4px rgba(120, 80, 20, 0.15); + padding: 12px; + min-height: 0; + display: flex; + flex-direction: column; +} + +#map { + flex: 1; + min-height: 0; + width: 100%; + border-radius: 16px; + overflow: hidden; + position: relative; + background: + linear-gradient(180deg, rgba(140, 190, 220, 0.14), rgba(140, 190, 220, 0.08)); +} + +/* Grid overlay in design mode */ +#map::before { + content: ""; + position: absolute; + inset: 0; + pointer-events: none; + opacity: 0; + background: + linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px), + linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px); + background-size: 26px 26px; +} + +#map[data-mode="design"]::before { opacity: 1; } + +/* Gentle view filters */ +#map[data-mode="design"] .leaflet-tile { filter: saturate(0.88) brightness(0.93); } +#map[data-mode="habitat"] .leaflet-tile { filter: saturate(1.05) hue-rotate(35deg) brightness(0.95); } +#map[data-mode="traffic"] .leaflet-tile { filter: saturate(1.1) hue-rotate(-20deg) contrast(1.08) brightness(0.96); } + +.leaflet-container { background: transparent; } + +.map-status { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + padding: 10px 14px; + border-radius: 14px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.72); + backdrop-filter: blur(10px); + box-shadow: var(--shadow-soft); + font-family: "Nunito", system-ui, sans-serif; + font-size: 0.88rem; + color: rgba(78, 64, 48, 0.88); + pointer-events: none; + transition: opacity 180ms ease, transform 180ms ease; +} + +.map-status.is-error { color: rgba(216, 110, 91, 0.95); } +.map-status.is-ok { color: rgba(100, 140, 80, 0.95); } + +.canvas-attrib { + position: absolute; + right: 10px; + bottom: 10px; + padding: 3px 8px; + border-radius: 999px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.68); + backdrop-filter: blur(8px); + font-family: "Nunito", system-ui, sans-serif; + font-size: 0.72rem; + color: rgba(78, 64, 48, 0.85); + pointer-events: none; +} + +.map-overlay-badge { + margin-top: 10px; + align-self: flex-start; + padding: 4px 10px; + border-radius: 999px; + background: rgba(251, 244, 231, 0.95); + border: 1px solid var(--border-card); + font-size: 0.78rem; + font-family: "Nunito", system-ui, sans-serif; +} + +/* HUD */ +.hud { + position: absolute; + top: 12px; + right: 12px; + display: flex; + gap: 10px; + z-index: 600; +} + +.gauge { + width: 140px; + padding: 10px 10px 8px; + border-radius: 18px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.68); + backdrop-filter: blur(10px); + box-shadow: var(--shadow-soft); + font-family: "Nunito", system-ui, sans-serif; +} + +.gauge-title { + font-size: 0.72rem; + color: rgba(78, 64, 48, 0.8); + margin-bottom: 4px; +} + +.gauge-svg { + display: grid; + place-items: center; + margin-top: 4px; +} + +.gauge-track { + fill: none; + stroke: rgba(214, 196, 163, 0.55); + stroke-width: 10; + stroke-linecap: round; +} + +.gauge-progress { + fill: none; + stroke: rgba(124, 91, 57, 0.92); + stroke-width: 10; + stroke-linecap: round; + stroke-dasharray: 157; + stroke-dashoffset: 157; + transition: stroke-dashoffset 240ms ease; +} + +.gauge[data-gauge="eco"] .gauge-progress { stroke: rgba(120, 170, 110, 0.95); } +.gauge[data-gauge="joy"] .gauge-progress { stroke: rgba(231, 168, 104, 0.95); } + +.gauge-value { + text-align: center; + margin-top: -2px; + font-size: 1.1rem; + font-weight: 700; + color: rgba(78, 64, 48, 0.9); +} + +.gauge-unit { + font-size: 0.82rem; + font-weight: 600; + color: rgba(78, 64, 48, 0.7); + margin-left: 2px; +} + +@keyframes hudShake { + 0% { transform: translateY(0); } + 20% { transform: translateY(-1px) rotate(-0.6deg); } + 40% { transform: translateY(1px) rotate(0.6deg); } + 60% { transform: translateY(-1px) rotate(-0.4deg); } + 80% { transform: translateY(1px) rotate(0.4deg); } + 100% { transform: translateY(0); } +} + +.gauge.is-ping { animation: hudShake 320ms ease; } + +/* Floating dock */ +.dock { + position: absolute; + left: 50%; + bottom: 12px; + transform: translateX(-50%); + display: flex; + align-items: center; + gap: 8px; + padding: 8px; + border-radius: 18px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.66); + backdrop-filter: blur(12px); + box-shadow: var(--shadow-strong); + z-index: 650; +} + +.dock-split { + width: 1px; + height: 26px; + background: rgba(214, 196, 163, 0.8); + margin: 0 2px; +} + +.tool-button { + position: relative; + display: inline-flex; + align-items: center; + gap: 6px; + padding: 6px 10px; + border-radius: 999px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(253, 243, 222, 0.92); + font-size: 0.82rem; + cursor: pointer; + font-family: "Nunito", system-ui, sans-serif; + transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease; + user-select: none; +} + +.tool-button.is-active { + border-color: rgba(124, 91, 57, 0.92); + box-shadow: 0 10px 20px rgba(124, 91, 57, 0.22); + transform: translateY(-1px); +} + +.tool-button:hover { transform: translateY(-1px); } + +.tool-icon { font-size: 1rem; } + +/* Tooltip */ +.tool-button[data-tooltip]::after, +.dock-mini[data-tooltip]::after { + content: attr(data-tooltip); + position: absolute; + left: 50%; + top: -10px; + transform: translate(-50%, -100%); + white-space: nowrap; + opacity: 0; + pointer-events: none; + padding: 4px 8px; + border-radius: 10px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.78); + backdrop-filter: blur(8px); + box-shadow: var(--shadow-soft); + font-size: 0.72rem; + color: rgba(78, 64, 48, 0.9); +} + +.tool-button[data-tooltip]:hover::after, +.dock-mini[data-tooltip]:hover::after { opacity: 1; } + +.dock-mini { + position: relative; + width: 34px; + height: 34px; + border-radius: 12px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(253, 243, 222, 0.92); + cursor: pointer; + font-size: 1rem; + display: grid; + place-items: center; +} + +@keyframes duang { + 0% { transform: translateY(0) scale(1); } + 60% { transform: translateY(-2px) scale(1.06); } + 100% { transform: translateY(0) scale(1); } +} + +.dock.is-duang { animation: duang 220ms ease; } + +/* AI critic */ +.ai-critic { + position: absolute; + right: 12px; + bottom: 78px; + display: flex; + align-items: flex-end; + gap: 8px; + z-index: 640; + max-width: min(330px, calc(100% - 24px)); +} + +.ai-avatar { + width: 44px; + height: 44px; + border-radius: 16px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.72); + backdrop-filter: blur(8px); + display: grid; + place-items: center; + box-shadow: var(--shadow-soft); + font-size: 1.25rem; +} + +.ai-bubble { + border-radius: 18px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(255, 255, 255, 0.72); + backdrop-filter: blur(10px); + box-shadow: var(--shadow-soft); + padding: 10px 12px; + font-family: "Nunito", system-ui, sans-serif; +} + +.ai-name { + font-weight: 700; + font-size: 0.78rem; + color: rgba(78, 64, 48, 0.86); +} + +.ai-text { + margin-top: 4px; + font-size: 0.78rem; + color: rgba(78, 64, 48, 0.82); + line-height: 1.35; +} + +/* Right side panels */ +.side-panel { + display: flex; + flex-direction: column; + gap: 10px; + min-height: 0; + overflow: auto; + padding-right: 4px; +} + +.card { + border-radius: var(--radius-card); + border: 1px solid var(--border-card); + background: #fdf4e0; + box-shadow: var(--shadow-soft); + padding: 10px 12px; +} + +.card-header { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 6px; +} + +.card-header h2 { + margin: 0; + font-size: 0.92rem; + color: var(--accent-brown); + font-family: "Nunito", system-ui, sans-serif; +} + +.card-close-btn { + border: none; + background: transparent; + cursor: pointer; + font-size: 1rem; + color: var(--text-muted); +} + +.scenario-text { + font-size: 0.8rem; + margin: 5px 0; + line-height: 1.45; + font-family: "Nunito", system-ui, sans-serif; + color: rgba(78, 64, 48, 0.86); +} + +.score-tabs { + display: flex; + gap: 6px; +} + +.score-tab { + border-radius: 14px; + padding: 2px 8px; + border: 1px solid transparent; + background: transparent; + font-size: 0.74rem; + cursor: pointer; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +.score-tab--active { + background: #fbeedb; + border-color: var(--border-card); + color: var(--accent-brown); +} + +.scores-body { + margin-top: 4px; + font-size: 0.78rem; + font-family: "Nunito", system-ui, sans-serif; +} + +.is-hidden { display: none !important; } + +.score-row { + display: flex; + justify-content: space-between; + margin-bottom: 6px; +} + +.score-block-title { + font-size: 0.78rem; + font-weight: 700; + margin-bottom: 6px; +} + +.meter-row { + display: flex; + justify-content: space-between; + align-items: center; + font-size: 0.76rem; + margin-top: 8px; +} + +.meter-bar { + width: 100%; + height: 8px; + border-radius: 999px; + background: #f0e1c7; + overflow: hidden; + margin-top: 3px; +} + +.meter-fill { + height: 100%; + width: 0%; + background: var(--accent-green); + border-radius: 999px; + transition: width 240ms ease; +} + +.meter-fill--orange { background: var(--accent-orange); } +.meter-fill--red { background: var(--accent-red); } + +.primary-button { + border-radius: 999px; + border: 1px solid var(--accent-brown); + background: var(--accent-brown); + color: #fffdf6; + padding: 8px 12px; + font-size: 0.8rem; + cursor: pointer; + box-shadow: var(--shadow-soft); + font-family: "Nunito", system-ui, sans-serif; +} + +.wide-button { width: 100%; margin-top: 8px; } + +.design-score-text { + margin-top: 8px; + font-size: 0.78rem; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +.selected-desc { + margin-top: 6px; + padding: 8px 10px; + border-radius: 12px; + background: #fdf6ea; + border: 1px solid #e7d5b6; + color: var(--text-muted); + line-height: 1.35; + font-size: 0.75rem; +} + +.facility-list { + display: grid; + gap: 8px; + margin-top: 6px; +} + +.facility-prompt { + margin: 6px 0 2px 0; + font-size: 0.75rem; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +.facility-card { + padding: 8px 10px; + border-radius: 12px; + border: 1px solid #e3d3b3; + background: #fef8ed; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45); + cursor: pointer; + transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease; +} + +.facility-card:hover { + border-color: #d9c6a4; + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65), 0 2px 4px rgba(0, 0, 0, 0.04); +} + +.facility-card--active { + border-color: var(--accent-brown); + box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75), 0 2px 6px rgba(0, 0, 0, 0.08); + background: #fff9f1; +} + +.facility-card-title { + font-weight: 700; + font-size: 0.8rem; + color: var(--accent-brown); + margin: 0 0 2px 0; +} + +.facility-card-meta { + font-size: 0.75rem; + color: var(--text-muted); + margin: 0 0 4px 0; +} + +.facility-card-text { + font-size: 0.75rem; + color: var(--text-main); + line-height: 1.35; + margin: 0; +} + +.selected-desc { + margin-top: 6px; + padding: 8px 10px; + border-radius: 12px; + background: #fdf6ea; + border: 1px solid #e7d5b6; + color: var(--text-muted); + line-height: 1.35; + font-size: 0.75rem; +} + +/* Leaflet control styling */ +.leaflet-control-zoom a { + background: rgba(253, 243, 222, 0.95); + border: 1px solid rgba(193, 165, 128, 0.8); + color: var(--accent-brown); + border-radius: 999px; + width: 26px; + height: 26px; + line-height: 24px; + font-weight: 700; + box-shadow: var(--shadow-soft); +} + +.leaflet-top.leaflet-left .leaflet-control-zoom { + margin-top: 14px; + margin-left: 14px; +} + +/* Facility marker (divIcon) */ +.facility-marker { + width: 30px; + height: 30px; + border-radius: 12px; + border: 2px solid rgba(124, 91, 57, 0.75); + background: rgba(253, 243, 222, 0.92); + box-shadow: 0 10px 20px rgba(124, 91, 57, 0.18); + display: grid; + place-items: center; + font-size: 16px; + transform-origin: 50% 100%; +} + +.facility-marker.is-bounce { animation: duang 240ms ease; } + +.facility-marker--danger { + border-color: rgba(216, 110, 91, 0.95); + box-shadow: 0 12px 22px rgba(216, 110, 91, 0.22); +} + +/* Save brief dialog */ +.brief-modal { + border: none; + padding: 0; + background: transparent; +} + +.brief-modal::backdrop { + background: rgba(34, 25, 16, 0.28); + backdrop-filter: blur(2px); +} + +.brief-card { + width: min(720px, calc(100vw - 26px)); + border-radius: 22px; + border: 1px solid rgba(214, 196, 163, 0.9); + background: rgba(253, 244, 224, 0.98); + box-shadow: 0 22px 44px rgba(124, 91, 57, 0.22); + padding: 14px 14px 12px; +} + +.brief-header { + display: flex; + align-items: center; + justify-content: space-between; +} + +.brief-title { + margin: 0; + font-family: "Patrick Hand", cursive; + color: var(--accent-brown); +} + +.brief-content { + margin-top: 10px; + font-family: "Nunito", system-ui, sans-serif; + color: rgba(78, 64, 48, 0.9); + font-size: 0.92rem; + line-height: 1.5; + white-space: pre-wrap; +} + +.brief-actions { + margin-top: 12px; + display: flex; + justify-content: flex-end; + gap: 8px; +} + +/* Footer */ +.bottom-footer { + margin-top: 8px; + padding: 6px 10px; + border-radius: 18px; + border: 1px solid var(--border-card); + background: #f8edd8; + display: flex; + justify-content: flex-end; +} + +.toolbar-text { + font-size: 0.72rem; + color: var(--text-muted); + font-family: "Nunito", system-ui, sans-serif; +} + +/* Responsive */ +@media (max-width: 980px) { + .app-frame { height: auto; } + .app-main { grid-template-columns: 1fr; } + .side-panel { max-height: none; } + .ai-critic { bottom: 86px; } +} diff --git a/Homework3_engagement/data/Masai Mara.json b/Homework3_engagement/data/Masai Mara.json new file mode 100644 index 0000000..b9f265b --- /dev/null +++ b/Homework3_engagement/data/Masai Mara.json @@ -0,0 +1,3 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.32724461700002,-1.7229228670000225],[35.328521756999976,-1.7207456880000223],[35.32881487100002,-1.7200757869999848],[35.32881487100002,-1.7197199020000085],[35.327328362,-1.7175008550000257],[35.326700259000006,-1.7168518880000079],[35.326532765000024,-1.7165588070000126],[35.326511829000026,-1.7162238559999992],[35.32657463800001,-1.7154702180000072],[35.326595575,-1.7149049880000007],[35.32661651199999,-1.714632841000025],[35.32674247099999,-1.714323041],[35.328501155000026,-1.7101989619999927],[35.32873145899998,-1.7094662569999741],[35.32873145899998,-1.7089847660000146],[35.32873145799999,-1.7081473889999756],[35.328522091000025,-1.7073937509999837],[35.328270850000024,-1.7068285220000234],[35.32781024100001,-1.7062423589999867],[35.32734963299998,-1.7054887200000053],[35.32678434100001,-1.7043163929999992],[35.326219047999984,-1.7035627550000072],[35.325172210999995,-1.7015949209999803],[35.324397551000004,-1.7001085780000267],[35.322994789000006,-1.6983082190000118],[35.321871182999985,-1.6964450579999948],[35.321619941999984,-1.6960263689999806],[35.32150827999999,-1.6957472440000174],[35.32142453300003,-1.695300642999996],[35.32136870099998,-1.6949377799999752],[35.32136870099998,-1.6944353540000066],[35.32148036299998,-1.693821277999973],[35.32159202600002,-1.6932072019999964],[35.321647857000016,-1.6925093890000085],[35.32164785600003,-1.6911974989999976],[35.32173160299999,-1.6903322100000082],[35.32181534900002,-1.6894669210000188],[35.32201075900002,-1.6886853699999733],[35.322596987,-1.6873176550000153],[35.32326696199999,-1.6858662019999997],[35.324578996000014,-1.6844705739999881],[35.327733463000015,-1.6812885429999938],[35.328543017000015,-1.680032477999987],[35.328850088000024,-1.6795021390000215],[35.32890591900002,-1.6786926760000256],[35.32890591900002,-1.677408698000022],[35.32879425599998,-1.6770458350000013],[35.32798470199998,-1.675706032999983],[35.32778929199998,-1.6753431700000192],[35.32773346099998,-1.6750082199999952],[35.32829177299999,-1.673891717999993],[35.330022541000005,-1.6685604209999951],[35.330357529000025,-1.6678905200000145],[35.330636685,-1.667555569000001],[35.330999588,-1.667443918999993],[35.33278618999998,-1.6675555680000116],[35.333177008999996,-1.6675276550000149],[35.333484080999995,-1.6674997430000076],[35.33619189799998,-1.6659645519999913],[35.33736435499998,-1.665490037999973],[35.33772725900002,-1.665378388000022],[35.33845306500001,-1.6652667370000245],[35.339374281999994,-1.6653225619999716],[35.340351329999976,-1.665462123999987],[35.34096547399997,-1.6657691620000037],[35.343449967000026,-1.6672764379999876],[35.344231605000004,-1.6679184270000178],[35.34484574999999,-1.6690349279999737],[35.34534823199999,-1.6695652660000064],[35.34599029200001,-1.6700397789999784],[35.346576520999974,-1.670235166999987],[35.34707900199999,-1.6699839539999743],[35.34755356800002,-1.6692024019999963],[35.34766523000002,-1.6683371130000069],[35.34766523000002,-1.6674159990000135],[35.347581483,-1.666439060000016],[35.34766522899997,-1.6660761969999953],[35.348167710999974,-1.6657691589999786],[35.34889351800001,-1.6657691589999786],[35.35020555300002,-1.6658249829999932],[35.35162925100002,-1.6660482830000092],[35.352299227,-1.6662715830000252],[35.35282962399998,-1.6663274079999724],[35.353415853,-1.6660761950000165],[35.354085827999995,-1.665741244000003],[35.354309152999974,-1.6650434300000256],[35.354420815000026,-1.6641223159999754],[35.35515437599997,-1.6622707839999862],[35.35682931399998,-1.660596030000022],[35.359257974,-1.657937359000016],[35.35990701200001,-1.6569953110000029],[35.360283873000014,-1.6561998029999927],[35.36043043000001,-1.6554880329999833],[35.360472302999995,-1.6550065409999775],[35.36068167100001,-1.6545041159999982],[35.361058532000015,-1.6538132800000085],[35.362293797999996,-1.6524316079999721],[35.36298470999998,-1.6507359209999777],[35.36355000100002,-1.6495635940000284],[35.36380124200002,-1.647972578000008],[35.36405248199998,-1.646423432000006],[35.36386405000002,-1.644057843999974],[35.36386405000002,-1.6434298120000221],[35.36386405000002,-1.6431995329999722],[35.36386405000002,-1.642843647999996],[35.363989670000024,-1.642634304000012],[35.36558086100001,-1.6406246000000237],[35.36589491199999,-1.640205911999999],[35.36604146899998,-1.6400175019999779],[35.366271772999994,-1.639808157999994],[35.366439266999976,-1.6394104039999888],[35.366523013999995,-1.6390963879999845],[35.36750704000002,-1.6370657499999766],[35.369244788,-1.6348885699999869],[35.370438181,-1.6337371770000004],[35.37196656200001,-1.6321461609999801],[35.372824967999975,-1.6308900970000195],[35.37320182899998,-1.6300527199999806],[35.37332744899999,-1.6298433759999966],[35.373369321999974,-1.6292572120000273],[35.373369321999974,-1.6287547860000018],[35.373767120000025,-1.6281058199999734],[35.37431147500001,-1.6273731150000117],[35.37554674199998,-1.6264729349999811],[35.37661451500003,-1.626075180999976],[35.37774509899998,-1.6259495740000034],[35.37833132700001,-1.6259495740000034],[35.37858256800001,-1.6259077049999746],[35.379189732999976,-1.6255099510000264],[35.379796897999995,-1.6248400489999995],[35.382686166999974,-1.6225791319999985],[35.384319231999996,-1.6212811980000197],[35.385114826999995,-1.6206740999999738],[35.38655403400003,-1.619433540999978],[35.38695105599999,-1.6187884510000004],[35.386951055,-1.6168531810000104],[35.387050310999996,-1.6165554479999855],[35.387199194000004,-1.6158607350000125],[35.38734807600002,-1.6125856630000044],[35.387298448000024,-1.611096993999979],[35.38705030900002,-1.6108488820000275],[35.38690142500002,-1.6098068140000237],[35.38685179599997,-1.6084173899999996],[35.38690142399997,-1.606879097999979],[35.385958492999976,-1.60276044699998],[35.384965937000004,-1.6011725339999998],[35.384568914,-1.6004281990000209],[35.384370402,-1.5996838649999745],[35.384370402,-1.598492928999974],[35.38471779600002,-1.5978478389999964],[35.385908863,-1.5946720110000001],[35.386057745000016,-1.5931833419999748],[35.386157000000026,-1.591198449999979],[35.386107372000026,-1.5891143129999818],[35.38615699899998,-1.587179042999992],[35.38615699799999,-1.5860873519999927],[35.386554020000005,-1.5840032149999956],[35.386405137,-1.583506992000025],[35.386156997,-1.5832092580000108],[35.385809601999995,-1.5826137910000284],[35.385660718999986,-1.582167190000007],[35.38546220699999,-1.5801326760000052],[35.385511834,-1.579785319999985],[35.385511834,-1.5794875860000275],[35.38516443899999,-1.5787432509999917],[35.385015554999995,-1.5777011829999879],[35.384916299999986,-1.5770064710000042],[35.38486667199999,-1.5764110029999756],[35.385015554999995,-1.5758651579999992],[35.385065182000005,-1.5753193119999764],[35.385065182000005,-1.5749223340000071],[35.38491629800001,-1.5737313980000067],[35.38446964799999,-1.5734336649999818],[35.38392374199998,-1.57283819700001],[35.38367560299997,-1.57283819700001],[35.38332820800002,-1.57283819700001],[35.382534163,-1.5727389529999982],[35.382286023999995,-1.572590085999991],[35.36774506699999,-1.5563139750000232],[35.35121899699999,-1.5379041049999955],[35.32958126,-1.5134403150000253],[35.32346294500002,-1.5076700390000042],[35.322835551000026,-1.5076700390000042],[35.321580762999986,-1.5066244999999867],[35.32137163200002,-1.5053698520000012],[35.32137163200002,-1.504951635999987],[35.28581931100001,-1.4645938030000138],[35.28502526599999,-1.4639487129999793],[35.28428084799998,-1.4632043789999898],[35.283933452999975,-1.4630058899999767],[35.283586058000026,-1.4628074010000205],[35.28328829200001,-1.4630058899999767],[35.28135280700002,-1.4643953149999902],[35.280955785,-1.4646930490000045],[35.280806901000005,-1.464891539000007],[35.28060839,-1.4649907830000188],[35.28031062299999,-1.4649907830000188],[35.279963227999986,-1.464941161000013],[35.279615834000026,-1.464941161000013],[35.27946695000003,-1.464891539000007],[35.27921881100002,-1.4650404060000142],[35.27872253300001,-1.46558625199998],[35.277978115999986,-1.4660824750000074],[35.27723369900002,-1.4659832309999956],[35.276439654,-1.4660824759999969],[35.276092258999995,-1.4661320980000028],[35.27574486399999,-1.4661320980000028],[35.275298213999974,-1.4659336089999897],[35.27475230800002,-1.465983231999985],[35.27435528500001,-1.4660824759999969],[35.274007891,-1.4660824759999969],[35.27375975199999,-1.466032853999991],[35.27346198499998,-1.4656358760000217],[35.27316421699999,-1.464990785999987],[35.27266793899997,-1.4635517390000246],[35.272469426999976,-1.463105138000003],[35.272270916000025,-1.462857026999984],[35.27192352100002,-1.4626585380000279],[35.271476871000004,-1.4626585380000279],[35.27088133699999,-1.4627577829999723],[35.27038505899998,-1.4629562719999853],[35.26973989700002,-1.4632043839999938],[35.26919399100001,-1.4632540059999997],[35.268747340999994,-1.4630058949999807],[35.26830068999999,-1.4627081610000232],[35.267605901000024,-1.4624600500000042],[35.26720887800002,-1.4624600500000042],[35.266861484,-1.4628074060000245],[35.26641483399999,-1.4634028739999962],[35.26616669499998,-1.463948720000019],[35.265769671999976,-1.4645441879999908],[35.26537265000002,-1.4650404110000181],[35.264727488999995,-1.4656855009999958],[35.26408232699998,-1.4659832350000102],[35.26368530399998,-1.4658343689999924],[35.26333791000002,-1.4651892790000147],[35.26333790899997,-1.4644945659999848],[35.26308977000002,-1.4640479660000096],[35.26269274700002,-1.4638494760000071],[35.262196469,-1.463452497999981],[35.26174981899999,-1.463402875999975],[35.26100540099998,-1.463402875999975],[35.26045949500002,-1.4632540090000248],[35.260112101000004,-1.4632540100000142],[35.25986396100001,-1.4628074089999927],[35.25966545,-1.4622615640000163],[35.25941731099999,-1.4616164739999817],[35.25897065999999,-1.461219495000023],[35.25862326499998,-1.4608721390000028],[35.258126987000026,-1.4605744049999885],[35.25768033700001,-1.460574405999978],[35.256985547,-1.460772894999991],[35.25668777999999,-1.4610706290000053],[35.25624112999998,-1.4609217619999981],[35.25564559600002,-1.4606736509999791],[35.25524857300002,-1.4603262950000158],[35.254752295,-1.4600781839999968],[35.25415676099999,-1.4600781839999968],[35.253461972000025,-1.460177428999998],[35.25306495000001,-1.4605247850000183],[35.252717555000004,-1.460921763999977],[35.252469416,-1.461169874999996],[35.25207239299999,-1.461169874999996],[35.251675370999976,-1.461169874999996],[35.25103020900002,-1.4606736530000148],[35.25083169800001,-1.4605247860000077],[35.25053393100001,-1.4602766739999993],[35.250136908,-1.4600781849999862],[35.24964062999999,-1.4600781849999862],[35.24914435199997,-1.4603262969999946],[35.24866771799998,-1.4604232450000154],[35.24848161400001,-1.460237161000009],[35.247737196,-1.4596416929999805],[35.247364987000026,-1.4592695260000141],[35.246955558000025,-1.4592695260000141],[35.246620570000005,-1.4592695270000036],[35.24636002400001,-1.459790560999977],[35.246397245000026,-1.4604232450000154],[35.246397246000015,-1.4615025310000078],[35.24624836300001,-1.4623957320000045],[35.24602503699998,-1.462730683000018],[35.245094515999995,-1.4620979989999796],[35.244461761000025,-1.461465314999998],[35.24405233099998,-1.4606093300000111],[35.24360567999997,-1.459604478000017],[35.243233470999996,-1.4589345769999795],[35.24271237900001,-1.458636843000022],[35.24222850799998,-1.458413543000006],[35.24167019499998,-1.4584879770000043],[35.240962998999976,-1.4588601440000275],[35.240144139999984,-1.4594928289999984],[35.239362502000006,-1.460051080000028],[35.23891585199999,-1.4602743809999765],[35.23843197999997,-1.4601999480000245],[35.23802255099997,-1.4598277810000013],[35.237501458999986,-1.4598277810000013],[35.237240912999994,-1.4600882980000165],[35.237240912999994,-1.4606465489999891],[35.23720369199998,-1.4611675830000195],[35.23720369199998,-1.4616514009999833],[35.237017588000015,-1.4621352180000144],[35.236719822,-1.4628795529999934],[35.23631039200001,-1.4631028539999988],[35.23597540399999,-1.4630656369999997],[35.235603196,-1.4630656369999997],[35.23519376600001,-1.4623213030000102],[35.235156544999995,-1.4616141849999735],[35.235156544999995,-1.4609815000000026],[35.235082103000025,-1.4604604659999723],[35.23485877799999,-1.460311599000022],[35.23456101099998,-1.4602743830000122],[35.23415158099999,-1.4604976830000282],[35.23392825600001,-1.4609070669999937],[35.23359326899998,-1.4613908850000144],[35.23333272299999,-1.4617630519999807],[35.23277440999999,-1.461949135999987],[35.23210443400001,-1.461651403000019],[35.23173222499997,-1.4606465510000248],[35.23121113299999,-1.459790565999981],[35.23072726100003,-1.4597533500000281],[35.22994562299999,-1.4599394339999776],[35.22938731099998,-1.4610187189999806],[35.228717335,-1.4616886210000075],[35.22841956899998,-1.4619491380000227],[35.22786125599998,-1.4620235709999747],[35.22760070999999,-1.4617258380000067],[35.227302942999984,-1.4614281039999923],[35.227079617000015,-1.4609070700000188],[35.226632967,-1.4603116019999902],[35.226074654,-1.4601255189999733],[35.225628003,-1.4600883019999742],[35.22525579500001,-1.460051084999975],[35.22473470199998,-1.4597161350000079],[35.22443693500003,-1.4594928349999918],[35.22372973900002,-1.4594928349999918],[35.22332030899997,-1.459418401999983],[35.22291087999997,-1.4593811849999838],[35.22261311300002,-1.4596044859999893],[35.22235256699997,-1.4599022200000036],[35.221794253999974,-1.4598650030000044],[35.221310383,-1.4596044859999893],[35.22075207,-1.4591578850000246],[35.220044873000006,-1.458897368999999],[35.219635444000005,-1.458897368999999],[35.21900268899998,-1.4590834530000052],[35.21818382999999,-1.4590834530000052],[35.21699276200002,-1.4590462369999955],[35.216471669999976,-1.4587857199999803],[35.21643444900002,-1.4584879860000228],[35.21636000699999,-1.4580041680000022],[35.21636000699999,-1.4572970500000224],[35.21636000699999,-1.4565899319999858],[35.21632278599998,-1.4561433310000211],[35.21576447299998,-1.4560316810000131],[35.21535504299999,-1.4560688980000123],[35.21490839299997,-1.4559572480000043],[35.21438730099999,-1.4556595149999794],[35.21438730099999,-1.4551384800000164],[35.214685067000005,-1.4546546629999852],[35.21516893799998,-1.4542824949999726],[35.21554114700001,-1.4536870270000009],[35.215355042,-1.4533148599999777],[35.215094496000006,-1.4529054760000122],[35.214685067000005,-1.4526821759999962],[35.21449896199999,-1.4521611420000227],[35.214350078999985,-1.451677324000002],[35.214685066000015,-1.4510818559999734],[35.215652808000016,-1.4505236050000008],[35.216397226000026,-1.4501514369999882],[35.216434445999994,-1.4496676200000138],[35.21636000400002,-1.448997717999987],[35.216025016,-1.4484766840000134],[35.21569002799998,-1.4481789509999885],[35.215317819999996,-1.4481789509999885],[35.214685065000026,-1.44862555200001],[35.213940648000005,-1.4491838029999826],[35.21356843900003,-1.4491093699999738],[35.21293568499999,-1.4488116360000163],[35.21278680099999,-1.448290601999986],[35.213121788000024,-1.4468763660000263],[35.21371732199998,-1.4462064639999994],[35.21375454299999,-1.4453876960000116],[35.213828983999974,-1.4442711940000095],[35.213605658999995,-1.4439362439999854],[35.21301012499998,-1.44371294299998],[35.21226570800002,-1.4441595440000015],[35.211670174000005,-1.444494495000015],[35.21118630299998,-1.4449038789999804],[35.210404665,-1.4449038800000267],[35.20992079299998,-1.4447922300000187],[35.20951136399998,-1.4441595449999909],[35.209697468,-1.443117476999987],[35.209399700000006,-1.4421870580000018],[35.209213595999984,-1.4419265409999866],[35.20887860800002,-1.4413310740000043],[35.20880416599999,-1.440921689999982],[35.20872972400002,-1.4401401380000038],[35.20891582799999,-1.4393585870000152],[35.209213594000005,-1.4377210499999933],[35.209213594000005,-1.4369022820000055],[35.208915827,-1.436306815000023],[35.208357514,-1.4360090810000088],[35.20742699200002,-1.4358602140000016],[35.20664535399999,-1.436157948000016],[35.205342624000025,-1.4367906329999869],[35.204188778,-1.4372000179999986],[35.203630465,-1.4372000179999986],[35.20322103500001,-1.4368278509999755],[35.20325825600003,-1.4361951660000045],[35.20333269700001,-1.4355252650000239],[35.20333269700001,-1.4351530980000007],[35.20292326700002,-1.4348553639999864],[35.20214162899998,-1.4346320640000272],[35.20147165399999,-1.4346320640000272],[35.20129933499999,-1.4342971130000137],[35.20094642599997,-1.4339442439999743],[35.200593517000016,-1.4339442439999743],[35.20015238100001,-1.4345617660000016],[35.19953478999997,-1.435002854000004],[35.19874074500001,-1.4348264189999895],[35.19812315500002,-1.4348264189999895],[35.19750556399998,-1.4350910719999774],[35.196976200999984,-1.4356203770000207],[35.19627038300001,-1.4359732469999926],[35.19565279300002,-1.436237898999991],[35.195035201999985,-1.436149682000007],[35.19468229300003,-1.4355321599999797],[35.194329384000014,-1.4351792900000078],[35.19335888400002,-1.4351792909999972],[35.19291774800001,-1.4351792909999972],[35.19282952100002,-1.4349146389999987],[35.19247661200001,-1.4348264210000252],[35.19203547500001,-1.4348264210000252],[35.19177079399998,-1.4349146389999987],[35.19141788500002,-1.4353557260000116],[35.19106497600001,-1.435443943999985],[35.19053561300001,-1.435443943999985],[35.19009447600001,-1.4350028569999722],[35.19035915799998,-1.4341206820000139],[35.190712066,-1.4330620729999737],[35.19062383900001,-1.4324445510000032],[35.19009447500002,-1.431827028999976],[35.18991802099998,-1.4317388110000024],[35.18991802099998,-1.4311212889999751],[35.188305352999976,-1.431066154000007],[35.187412053,-1.4311157770000023],[35.186419495999985,-1.4311653990000082],[35.18582396199997,-1.4307187989999761],[35.18612172899998,-1.4301233310000043],[35.186518750999994,-1.42982559699999],[35.18676689,-1.4294286179999744],[35.186717262,-1.4289820170000098],[35.18612172799999,-1.4283865500000275],[35.18512917200002,-1.4282376830000203],[35.18413661599999,-1.428634661999979],[35.18284629300001,-1.4289820189999887],[35.182151503,-1.42908126399999],[35.18130782999998,-1.4287339080000265],[35.180662668000025,-1.4283865520000063],[35.18051378500002,-1.4277910839999777],[35.18046415700002,-1.4268482599999857],[35.18066266699998,-1.4256077019999793],[35.18120857299999,-1.4247144999999932],[35.18230038500002,-1.4245160109999802],[35.18537730999998,-1.4235731859999987],[35.188603117000014,-1.4222830040000076],[35.191580785999975,-1.4217867799999908],[35.196890962,-1.4197522640000102],[35.197982774000025,-1.4183132160000014],[35.19803240099998,-1.416874168999982],[35.19733761100002,-1.415137388000005],[35.197188727000025,-1.4144426760000215],[35.197287983000024,-1.413797585999987],[35.198330166000005,-1.4122096710000278],[35.19887607200002,-1.4111179799999718],[35.199124211000026,-1.4105721349999953],[35.19907458199998,-1.4071978169999966],[35.19907458199998,-1.4059076369999843],[35.19907458099999,-1.4050640579999936],[35.199670115,-1.4036250099999847],[35.20011676500002,-1.402781430999994],[35.20021602000003,-1.4020867190000104],[35.20006713599997,-1.4011935170000243],[35.19986862500002,-1.4002010710000263],[35.19922346300001,-1.3983154229999855],[35.19907457900001,-1.3979184450000162],[35.19912420600002,-1.3969756210000241],[35.19947160100003,-1.3962312859999884],[35.200017506999984,-1.3948418609999749],[35.20096043500001,-1.3939486589999888],[35.20215150199999,-1.3921126330000106],[35.204682520000006,-1.3893834049999896],[35.20512917000002,-1.3885894470000153],[35.20532768100003,-1.3875970010000174],[35.20527805299997,-1.386406065000017],[35.20532767999998,-1.3839745719999996],[35.20552619,-1.3822377910000228],[35.20567507300001,-1.3811461000000236],[35.20552619,-1.3801040309999735],[35.205228422000005,-1.3791115849999755],[35.20478177199999,-1.378416872999992],[35.19440955499999,-1.3698322160000203],[35.17798274299997,-1.357029663999981],[35.16790829299998,-1.3492389630000048],[35.14403730599997,-1.3299855120000075],[35.116245719999995,-1.3080524559999844],[35.09187845399998,-1.288898248999999],[35.07014146400002,-1.271927421999976],[35.04939703000002,-1.255055839000022],[35.04190322699998,-1.2494485189999978],[35.04130769400001,-1.249498141999993],[35.04031513699999,-1.2488530520000154],[35.039421835999974,-1.2480094719999784],[35.039173697000024,-1.2479102280000234],[35.03877667400002,-1.2479102280000234],[35.03842927900001,-1.2478606060000175],[35.03842927900001,-1.2475132499999972],[35.03842927900001,-1.2471162709999817],[35.03862779000002,-1.2463223139999968],[35.038280395000015,-1.245726846000025],[35.037734489,-1.245329867999999],[35.03718858299999,-1.2449825119999787],[35.036245655000016,-1.2448832669999774],[35.035650121,-1.245329867999999],[35.034707191999985,-1.2463223149999862],[35.034607936999976,-1.247165893999977],[35.03460793800002,-1.2486545639999918],[35.03510421599998,-1.2498454999999922],[35.03560049499998,-1.2507883239999842],[35.03565012299998,-1.2514334140000187],[35.03506990599999,-1.2525765650000267],[35.03365827099998,-1.2528902280000125],[34.99021125799999,-1.2543017200000008],[34.98927016800002,-1.2541448889999742],[34.98770168300001,-1.2543017209999903],[34.986760592999985,-1.2539880589999939],[34.985505805,-1.2541448900000205],[34.98503265599999,-1.2543122889999836],[34.98480933100001,-1.2550566240000194],[34.98406491399999,-1.2567685949999827],[34.98339493899999,-1.2574384960000202],[34.982836625999994,-1.2578478799999857],[34.982278312999995,-1.2577362299999777],[34.98105002400001,-1.256954678999989],[34.980119503000026,-1.256098694000002],[34.979263421999974,-1.2556148770000277],[34.978370122,-1.2555032270000197],[34.977811809,-1.255689311000026],[34.97699295000001,-1.2562475619999987],[34.97617409100002,-1.2570291139999767],[34.97490858200001,-1.2600064540000062],[34.974387491000016,-1.2607507889999852],[34.97394084000001,-1.261383474000013],[34.973419749000016,-1.263579261000018],[34.97312198200001,-1.2655517489999966],[34.973010320000014,-1.2664077339999835],[34.97293587899998,-1.2669287680000139],[34.97274977400002,-1.2674125859999776],[34.97230312400001,-1.267598669999984],[34.971558706999986,-1.267598669999984],[34.970888731,-1.2673753700000248],[34.97036763900002,-1.267300937000016],[34.969920989,-1.2672637200000167],[34.968916025,-1.2677475379999805],[34.96750163299998,-1.269161773999997],[34.966980541,-1.2701294099999814],[34.966943320999974,-1.271580862999997],[34.967464413000016,-1.2730695320000223],[34.968246051999984,-1.2739627340000084],[34.96902769000002,-1.2744465509999827],[34.970181536999974,-1.2744465509999827],[34.971335382999996,-1.273962733000019],[34.97211702200002,-1.2738138660000118],[34.97308476400002,-1.2741860329999781],[34.973196427000005,-1.2747815010000068],[34.97260089299999,-1.2756002689999946],[34.97185647600003,-1.2768284219999941],[34.97088873400003,-1.2787264759999744],[34.97021875899998,-1.28017792899999],[34.969660447000024,-1.2809222640000257],[34.968878808,-1.2809594810000249],[34.968357716000014,-1.2804384469999945],[34.968357716000014,-1.2795824620000076],[34.968767145000015,-1.2782798759999991],[34.96895324899998,-1.2773122400000148],[34.96861826100002,-1.2764562550000278],[34.96817161000001,-1.2760096549999957],[34.96738997199998,-1.2756374869999831],[34.96597557899997,-1.2762701730000003],[34.96534282499999,-1.277721626000016],[34.965661248,-1.2794418230000133],[34.965921793999996,-1.2821958619999805],[34.96547514500003,-1.2843172159999767],[34.964023532,-1.2867735219999759],[34.961827502000006,-1.2906812800000012],[34.959892017000016,-1.2927654179999877],[34.958626509,-1.2951472899999885],[34.95810541700001,-1.2979385460000117],[34.95788209199998,-1.299092265000013],[34.95721211699998,-1.2996505159999856],[34.95367613600001,-1.3028511570000205],[34.953043380999986,-1.3037071420000075],[34.95229896400002,-1.3046003439999936],[34.95177787199998,-1.3052330290000214],[34.951591768000014,-1.3062750980000146],[34.95136844299998,-1.3069449989999953],[34.951033456000005,-1.307614899999976],[34.94329151699998,-1.3131229800000028],[34.93904833900001,-1.3155792869999914],[34.93808059700001,-1.31617475500002],[34.937224517000004,-1.3165469219999864],[34.93603344899998,-1.3163236220000272],[34.93499126500001,-1.316063105000012],[34.934172406000016,-1.3162491890000183],[34.93294411800002,-1.3176634260000242],[34.93197637600002,-1.319114878999983],[34.930748086999984,-1.3205663319999985],[34.929333695000025,-1.3220177860000035],[34.92903592800002,-1.3223899530000267],[34.92840317399998,-1.322538819999977],[34.92739820999998,-1.322985421999988],[34.92643046799998,-1.3236925400000246],[34.92486719200002,-1.3250695599999744],[34.924159996000014,-1.325888328000019],[34.923155033,-1.3265954469999883],[34.920921781000004,-1.326855964999993],[34.919470166999986,-1.3272653490000152],[34.91790689099997,-1.3280841179999925],[34.91701359000001,-1.3290145369999777],[34.91507810600001,-1.3304659899999933],[34.91187711200001,-1.3321407450000038],[34.90897388500002,-1.3333688980000034],[34.905810110999994,-1.334522617999994],[34.903163294000024,-1.3358458810000116],[34.90166343200002,-1.3372573600000237],[34.89998711499999,-1.3390217099999973],[34.899016614999994,-1.3398156669999821],[34.89734029800002,-1.3405214079999723],[34.89636979800002,-1.3405214079999723],[34.89469348099999,-1.3412271479999731],[34.893017164000014,-1.3420211060000042],[34.89081148299999,-1.3440501079999763],[34.88878225799999,-1.3460791100000051],[34.88737062199999,-1.3468730679999794],[34.88595898599999,-1.3472259380000082],[34.884282669000015,-1.3473141559999817],[34.882871033000015,-1.3475788090000265],[34.881547624999996,-1.3486374189999992],[34.87995953500001,-1.3504017689999728],[34.878900808000026,-1.351460378000013],[34.87740094600002,-1.3522543359999872],[34.87651867300002,-1.3524307710000016],[34.87484235599999,-1.3531365110000024],[34.87298958399998,-1.3549890790000063],[34.87246022099998,-1.3564887750000025],[34.87184263099999,-1.3572827329999768],[34.87104858599997,-1.3577238199999897],[34.86972517700002,-1.3570180809999783],[34.869107585999984,-1.3565769940000223],[34.868048859,-1.3564005590000079],[34.86681367800003,-1.3565769950000117],[34.865754950999985,-1.3569298649999837],[34.851109232,-1.3640754840000113],[34.850138732000005,-1.3644283539999833],[34.84890355099998,-1.365486964000013],[34.847580143000016,-1.3668102259999841],[34.84643318899998,-1.3676924009999993],[34.844756872000005,-1.3680452710000282],[34.84360991699998,-1.3679570539999872],[34.842727645000025,-1.3672513149999759],[34.84158069099999,-1.3669866629999774],[34.84016905499999,-1.3678688379999926],[34.83981614700002,-1.3694567520000192],[34.83972791999997,-1.3709564490000048],[34.837434013000006,-1.3749262349999753],[34.835934150000014,-1.3766023680000217],[34.834610741999995,-1.377572760000021],[34.833375561000025,-1.3776609779999944],[34.83090519799998,-1.3776609789999839],[34.828875971,-1.3780138490000127],[34.82711142699998,-1.3786313719999725],[34.825788019000015,-1.380483938999987],[34.824905747,-1.3814543309999863],[34.824376383000015,-1.3819836359999726],[34.82120020299999,-1.3827775940000038],[34.81925920399999,-1.383483334999994],[34.817759341,-1.3844537269999933],[34.81449493399998,-1.3882470789999957],[34.81317152700001,-1.390452515999982],[34.811848118,-1.390805386000011],[34.810789391000014,-1.3910700389999988],[34.80955420999999,-1.3921286490000284],[34.80717207599997,-1.3952162609999732],[34.806289804000016,-1.3965395230000013],[34.80558398599999,-1.3971570449999717],[34.804701713999975,-1.397598132999974],[34.80364298699999,-1.397598132999974],[34.80240780499997,-1.397598132999974],[34.80108439700001,-1.3993624830000044],[34.799496308000016,-1.4010386150000045],[34.798261126,-1.4009503980000204],[34.79746708099998,-1.4013032679999924],[34.79623190000001,-1.4024500959999955],[34.79561431000002,-1.4038615750000076],[34.79490849199999,-1.4051848369999789],[34.79402621999998,-1.4064198820000229],[34.792614585000024,-1.4070374049999828],[34.79173231200002,-1.4071256220000237],[34.79076181300002,-1.408007796999982],[34.78979131300002,-1.4088899719999972],[34.78864435999998,-1.411271843999998],[34.78758563399998,-1.413389063000011],[34.78608577199998,-1.4160355870000103],[35.32716608300001,-1.7229343189999895],[35.32724461700002,-1.7229228670000225]]]},"properties":{"SITE_ID":1297,"SITE_PID":"1297","SITE_TYPE":"PA","NAME_ENG":"Masai Mara","NAME":"Masai Mara","DESIG":"National Reserve","DESIG_ENG":"National Reserve","DESIG_TYPE":"National","IUCN_CAT":"II","INT_CRIT":"Not Applicable","REALM":"Terrestrial","REP_M_AREA":0,"GIS_M_AREA":0,"REP_AREA":1510,"GIS_AREA":1511.06988382067,"NO_TAKE":"Not Applicable","NO_TK_AREA":0,"STATUS":"Designated","STATUS_YR":1974,"GOV_TYPE":"Federal or national ministry or agency","GOVSUBTYPE":"Not Applicable","OWN_TYPE":"State","OWNSUBTYPE":"Not Applicable","MANG_AUTH":"Kenya Wildlife Service","MANG_PLAN":"Not Reported","VERIF":"State Verified","METADATAID":933,"PRNT_ISO3":"KEN","ISO3":"KEN","SUPP_INFO":"Not Applicable","CONS_OBJ":"Not Applicable","INLND_WTRS":"Not Reported","OECM_ASMT":"Not Applicable"}} +]} \ No newline at end of file diff --git a/Homework3_engagement/data/Serengeti National Park.json b/Homework3_engagement/data/Serengeti National Park.json new file mode 100644 index 0000000..ff67b0f --- /dev/null +++ b/Homework3_engagement/data/Serengeti National Park.json @@ -0,0 +1,3 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.25690357299999,-1.684097974999986],[34.780766583,-1.417963450000002],[34.77977962199998,-1.4198089689999733],[34.77780530199999,-1.4215105669999843],[34.775546324000004,-1.4210872950000066],[34.771172820000004,-1.4233694960000207],[34.76792938599999,-1.4266365130000054],[34.75762930100001,-1.430903710999985],[34.75311442399999,-1.433466366999994],[34.732512636000024,-1.4403006590000018],[34.70005831100002,-1.4529677589999892],[34.69303091799998,-1.4924653229999763],[34.70291514600001,-1.4972867719999954],[34.69882644900002,-1.5036835789999827],[34.69885452599999,-1.5396216610000124],[34.69237232699999,-1.553273235000006],[34.69053746999998,-1.5532747099999824],[34.68602339,-1.5565429889999791],[34.67699349200001,-1.562374176999981],[34.66344018699999,-1.5591203110000151],[34.66019332399998,-1.559122885000022],[34.65638811600002,-1.5669394820000093],[34.65413151000001,-1.5692111960000261],[34.649052487999995,-1.5727693329999965],[34.645521298999995,-1.5697877619999758],[34.64382868400003,-1.5714892880000093],[34.64354929299998,-1.5747632769999882],[34.64552618699997,-1.5760368510000262],[34.64552897599998,-1.5795909639999763],[34.641298339,-1.584993336000025],[34.64158543999997,-1.5908171639999864],[34.64059826800002,-1.5918127460000164],[34.66927796700003,-1.6221846149999806],[34.67097251400003,-1.6228976410000087],[34.672527134000006,-1.6248859030000062],[34.70375149900002,-1.657813377000025],[34.708270545000005,-1.6603687030000174],[34.717309580000006,-1.6659043210000277],[34.725647658000014,-1.6765498519999937],[34.72692273299998,-1.6818027990000246],[34.74558430299999,-1.7137533669999812],[34.762385660999996,-1.7172827580000103],[34.77142737999998,-1.7253768339999738],[34.786552470000004,-1.7478070139999886],[34.78712179199999,-1.752345986000023],[34.79617156799998,-1.7685329700000239],[34.80704895600002,-1.7769049980000204],[34.82769240699997,-1.8111200769999982],[34.829673180999976,-1.8153771539999752],[34.82997349499999,-1.8335615959999814],[34.82236673099999,-1.8490504549999969],[34.82548054199998,-1.8571494619999953],[34.828735384000026,-1.8652392459999874],[34.831987174000005,-1.8697842870000159],[34.835800667,-1.871624976000021],[34.84060675500001,-1.8778683369999953],[34.84611578800002,-1.8811268599999948],[34.84329549300003,-1.8842585840000083],[34.841323218000014,-1.8878144120000115],[34.84062195500002,-1.892354532000013],[34.84260333399999,-1.8969008299999928],[34.84260814700002,-1.9014492370000085],[34.84134483499997,-1.9082686919999787],[34.84332328400001,-1.9105362459999924],[34.84332813399999,-1.9150846489999935],[34.85068310499997,-1.9282878129999972],[34.852669866999975,-1.937662725999985],[34.86304720800001,-2.002422399000011],[34.86361510400002,-2.005405757999995],[34.86561229,-2.0234431349999795],[34.86463983099998,-2.0370802589999926],[34.862117872,-2.0538388539999914],[34.863671334,-2.0545513870000036],[34.86016156699998,-2.071455856],[34.860448933999976,-2.0755788779999875],[34.857909095000025,-2.0768568670000036],[34.839326899000014,-2.1229053530000215],[34.83452302400002,-2.1203520359999857],[34.83226265899998,-2.119079720000002],[34.830286795999996,-2.1199320719999832],[34.80340336699999,-2.190849791000005],[34.79888647500002,-2.192274958999974],[34.78985201500001,-2.194130568999981],[34.78533008300002,-2.190871539999989],[34.78052668700002,-2.189032542999996],[34.77021265799999,-2.1835015159999784],[34.766965391999975,-2.1835053550000225],[34.76287382300001,-2.186494348999986],[34.753839664,-2.188774770000009],[34.74932186000001,-2.1890694470000085],[34.74480314800002,-2.1890747369999985],[34.740565541000024,-2.187795574000006],[34.735764287999984,-2.18737613899998],[34.731243511,-2.185111570999993],[34.72714918700001,-2.1858216690000063],[34.72390095999998,-2.1855450830000223],[34.722915296999986,-2.1878160439999874],[34.72037569499997,-2.189663772000017],[34.71882328800001,-2.190090590000011],[34.716141773000004,-2.1916581429999837],[34.71035300199998,-2.1919541789999926],[34.708798410999975,-2.190961211000001],[34.707528346000004,-2.1916680350000206],[34.70526809400002,-2.190675870000007],[34.70357393400002,-2.1909671889999913],[34.70173745599999,-2.1901101799999765],[34.699477763000004,-2.190112756000019],[34.699194611999985,-2.1891273649999903],[34.695946649999996,-2.1891310600000224],[34.693967559999976,-2.186854406000009],[34.69114321699999,-2.1868576059999896],[34.68464894099998,-2.187859706999973],[34.680412682999986,-2.1878644810000196],[34.67815557799997,-2.1897118599999885],[34.67660209000002,-2.189713605999998],[34.676603194999984,-2.1907083730000068],[34.67533231099998,-2.1907098010000254],[34.67434435400003,-2.191000298000006],[34.673073147000025,-2.1907123380000257],[34.669261586000005,-2.1917113810000046],[34.66728367899998,-2.191008210000007],[34.665308211000024,-2.192005191000021],[34.65852869700001,-2.190728584999988],[34.656975509999995,-2.191019701000016],[34.65570366999998,-2.1901619870000104],[34.64963070900001,-2.1891829780000194],[34.64864055300001,-2.187474855000005],[34.64736965399999,-2.1874762570000144],[34.64609674500002,-2.1856327899999997],[34.64510799300001,-2.185208835000026],[34.63734201800003,-2.1856424059999995],[34.63480128200001,-2.186639975999981],[34.63352930100001,-2.1856465779999894],[34.630987026000014,-2.1852243069999986],[34.62957416699999,-2.184366710000006],[34.625760980999985,-2.183945811000001],[34.62378382100002,-2.1839479590000224],[34.622511841999994,-2.1829545439999833],[34.62067626700002,-2.182956532999981],[34.615736519999984,-2.1856659169999944],[34.61489030400003,-2.1866616309999927],[34.61390093599999,-2.1856678999999986],[34.61192568299998,-2.1869451850000132],[34.60910016399998,-2.1859534289999942],[34.606422425000005,-2.190785625999979],[34.603880874000026,-2.1910777589999952],[34.60388193099999,-2.192072562000021],[34.602611000000024,-2.192073929000003],[34.60162588999998,-2.195620111999972],[34.597813342999984,-2.1953438560000222],[34.59230759299999,-2.196914321999998],[34.591037701999994,-2.1979104920000054],[34.59004832599999,-2.196916740000006],[34.589484588000005,-2.1983372089999875],[34.582987774,-2.1973493290000192],[34.58044587500001,-2.1973520330000156],[34.576916684000025,-2.1983505979999904],[34.573951721000014,-2.1989235010000243],[34.57240156,-2.2021899580000195],[34.570143899000016,-2.2037569299999973],[34.56492005199999,-2.2047572760000094],[34.56054246299999,-2.2047618930000112],[34.559837216999995,-2.205757461000019],[34.556024303000015,-2.2057614710000166],[34.55404760900001,-2.2057635470000037],[34.55376601400002,-2.2067586699999993],[34.55249503900001,-2.2067600029999994],[34.55150801100001,-2.208036228000026],[34.54981234500002,-2.207043175000024],[34.54571839800002,-2.2086120550000032],[34.543742416999976,-2.2093195460000175],[34.54303774300001,-2.210884882000016],[34.54148486499997,-2.211600974000021],[34.54120543900001,-2.214160702000015],[34.538242137,-2.216433827000003],[34.53767760300002,-2.2171398450000197],[34.538666826999986,-2.2174282189999985],[34.541211159,-2.2196955890000254],[34.539942223000025,-2.2216865859999757],[34.538248151000005,-2.2222581280000213],[34.536977154,-2.222259457000007],[34.53500425599998,-2.226521226999978],[34.53217945099999,-2.2258187499999735],[34.53118919399998,-2.2245355370000084],[34.53217286500001,-2.2194246619999944],[34.53316123100001,-2.2194236330000194],[34.53372388399998,-2.2174333720000163],[34.534431203999986,-2.2184274730000197],[34.534427548,-2.2148731949999956],[34.533153927,-2.212315074000003],[34.53541255499999,-2.2116072989999793],[34.53442317399998,-2.210613489000025],[34.53639989300001,-2.2106114349999757],[34.53724750700002,-2.2108909159999826],[34.538659214999996,-2.2100393150000173],[34.53696310700002,-2.208621177999987],[34.538655859000016,-2.206774451000001],[34.538231177,-2.2057800570000268],[34.539924799000005,-2.2047834630000125],[34.539216468999996,-2.202794529000016],[34.538227819999975,-2.2025061479999977],[34.53893223900002,-2.2012302200000136],[34.53892991399999,-2.198960188000001],[34.54019987100003,-2.1979640389999986],[34.54146822400003,-2.1954032869999764],[34.541466920000005,-2.1941280930000175],[34.544434846,-2.196395043999985],[34.547258390000025,-2.1953972790000194],[34.548527311999976,-2.193406297000024],[34.54880806599999,-2.192130813999995],[34.54979799099999,-2.193124614999988],[34.551068369999996,-2.1925535259999833],[34.551493634999986,-2.194117678999987],[34.55248226499998,-2.1943970089999993],[34.55248460500002,-2.1966670250000107],[34.55403790600002,-2.1963850430000207],[34.55502287600001,-2.1931191699999886],[34.55685793499998,-2.192547488999992],[34.55784216500001,-2.188567154999987],[34.560101429999975,-2.1879950320000034],[34.561368714000025,-2.1844394699999725],[34.561085365999986,-2.1837343440000154],[34.56489689799997,-2.1824551799999767],[34.565317902000004,-2.179895332000001],[34.565881553,-2.1788999209999815],[34.50191340800001,-2.181524846000002],[34.49894876000002,-2.1825226700000258],[34.48325947500001,-2.167895752999982],[34.48099737899997,-2.1650580979999745],[34.48028889099999,-2.1627886979999857],[34.47901790899999,-2.162789943000007],[34.478028592999976,-2.161796047999985],[34.476757340999995,-2.161516919999997],[34.47477760300001,-2.158959336999999],[34.47392932399998,-2.157965298000022],[34.47294056300001,-2.157541180999999],[34.472939059,-2.1559765299999754],[34.471949876,-2.155697119000024],[34.47166685600001,-2.154702527999973],[34.469689312000014,-2.1544150299999956],[34.467147350999994,-2.154417491000004],[34.46644067300002,-2.153423305999979],[34.465170640999986,-2.15441940300002],[34.46135674200002,-2.1534282119999943],[34.46008670399999,-2.15442430600001],[34.45683466600002,-2.1504479409999817],[34.456833184999994,-2.148883278000028],[34.45513706899999,-2.147329281999987],[34.41631822699998,-2.1648398130000146],[34.401772521,-2.165133774000026],[34.400779317,-2.1598798289999763],[34.398940426000024,-2.157041547999995],[34.398938354999984,-2.1547713740000063],[34.39724068300001,-2.151498817000004],[34.39342445800003,-2.1473870529999886],[34.38607836800003,-2.1451145290000113],[34.380286125,-2.142424496999979],[34.37802621200001,-2.1418567310000185],[34.374068892000025,-2.1388755739999965],[34.37378719600002,-2.1393009249999864],[34.37124477499998,-2.1388781119999862],[34.36573537700002,-2.1370379370000023],[34.363476717000026,-2.1378901520000113],[34.36121655400001,-2.1370419680000055],[34.35924059000001,-2.1386084549999964],[34.355426631,-2.1376169270000105],[34.350343377,-2.138616345999992],[34.34681291499999,-2.1386194620000083],[34.34511684099999,-2.1370562170000085],[34.341868084,-2.136633969000002],[34.33452486599998,-2.137065499000016],[34.33254611199999,-2.1347969839999905],[34.329437606,-2.1328098330000103],[34.328023013999996,-2.130531770999994],[34.32675112599998,-2.1295379449999814],[34.32576030500002,-2.126698729999987],[34.32350087200001,-2.1267006790000096],[34.322934507000014,-2.1254258480000203],[34.317707633,-2.123440472000027],[34.31587079899998,-2.122166720999985],[34.31262203799997,-2.121735340999976],[34.31064560599998,-2.1221711779999737],[34.307538438999984,-2.1217396659999963],[34.30612616100001,-2.1221750189999966],[34.30330056700001,-2.1204679289999717],[34.302029878999974,-2.1208941119999736],[34.30104055999999,-2.120469839000009],[34.299769516000026,-2.1204709119999734],[34.29779247699997,-2.120192185999997],[34.29623831700002,-2.1196236640000166],[34.29525038600002,-2.120194325],[34.29369752299999,-2.1211905709999996],[34.29044907100001,-2.1204787460000034],[34.28875469000002,-2.1209052759999736],[34.28847040400001,-2.118915625999989],[34.286492447,-2.118211771999995],[34.285645405000025,-2.1179230390000043],[34.28437353700002,-2.116929153000001],[34.27843860399997,-2.1128186149999806],[34.277589378000016,-2.110539980999988],[34.275328306000006,-2.1085519470000236],[34.274339575,-2.1088422000000264],[34.273068292000005,-2.1085538049999855],[34.27179805100002,-2.1095497989999785],[34.27052643000002,-2.1088453309999977],[34.270525968000015,-2.1082754970000224],[34.269820203999984,-2.108276074999992],[34.26882986099997,-2.1065764229999786],[34.266852355000026,-2.105718763000027],[34.266569946000004,-2.106008433999989],[34.26558096399998,-2.1052946840000004],[34.26275576400002,-2.104727147999995],[34.26176655699999,-2.103732997999998],[34.259224457000016,-2.103735061000009],[34.258799753000005,-2.1024600530000157],[34.259504486000026,-2.1004695720000086],[34.25795057099998,-2.1001904319999767],[34.25625526900001,-2.099477243000024],[34.254419497000015,-2.0994787230000043],[34.253008197999975,-2.1004748180000092],[34.247215633999986,-2.0979197130000102],[34.24537907000001,-2.096926221999979],[34.24410679099998,-2.095371479999983],[34.24368232400002,-2.094376856999986],[34.10415093199998,-2.0985975859999826],[34.103444567999986,-2.0985980859999813],[34.101467248999995,-2.0980296160000194],[34.09920800200001,-2.0993156839999756],[34.09737162800002,-2.098602378999999],[34.097653890000004,-2.098032307999972],[34.096099417999994,-2.0970383889999766],[34.094122133999974,-2.097329237999986],[34.09115667100002,-2.0980368740000017],[34.085082338999996,-2.096051081999974],[34.084091924000006,-2.093211447999977],[34.08409124100001,-2.092216430999997],[34.08253658699999,-2.090942075999976],[34.076462280999976,-2.0889562309999974],[34.073214904999986,-2.0899534839999774],[34.069965615,-2.088960687999986],[34.06770516400002,-2.0876867939999784],[34.063184084,-2.085699823000027],[34.06191105200003,-2.0828512950000118],[34.05965118,-2.082427676000009],[34.057674534,-2.0828541569999857],[34.05640293900001,-2.082149448999985],[34.054849622999996,-2.082856058999994],[34.052871846000016,-2.0824322390000134],[34.04425343499997,-2.077607575000002],[34.001752830999976,-2.0951118169999745],[33.99878679599999,-2.095113719999972],[33.99878437199999,-2.09127827399999],[33.997231562000024,-2.091993890000026],[33.99299329799999,-2.0902869189999933],[33.99525196500002,-2.088729591999993],[33.99440327999997,-2.0867400390000057],[33.99341604,-2.0887307589999864],[33.99242710200002,-2.088016761999995],[33.99299124999999,-2.087021357000026],[33.992425680999986,-2.0857462469999746],[33.991437254000004,-2.0867419200000086],[33.99016432000002,-2.083893269999976],[33.988611418000005,-2.084464141000012],[33.98917556800001,-2.0834687369999756],[33.987196884000014,-2.081624621000003],[33.98493759799999,-2.0821959319999905],[33.98408980900001,-2.0816265720000047],[33.98267777699999,-2.0819078810000065],[33.981829731999994,-2.0809224060000133],[33.97787582400002,-2.08191087900002],[33.97604108600001,-2.084761489000016],[33.975052593999976,-2.084762103999992],[33.97561561499998,-2.0819122859999766],[33.973356927,-2.083478635000006],[33.970249056,-2.0822050830000194],[33.96700017400002,-2.081917617999977],[33.966717469,-2.0809317829999827],[33.96629469499999,-2.0824879479999936],[33.96530512300001,-2.081638236999993],[33.96572763400002,-2.0796478670000056],[33.963184712999976,-2.078654372000017],[33.960501943,-2.0796510700000113],[33.96049997199998,-2.0763854759999845],[33.95724986900001,-2.073121857999979],[33.95597896700002,-2.07354779100001],[33.95470755500003,-2.073123399999986],[33.95371739400002,-2.0712695720000056],[33.95315373,-2.073124340999982],[33.952870296000015,-2.0718399819999718],[33.95117567300002,-2.07226616600002],[33.949904484,-2.0712718730000006],[33.949622921000014,-2.0731264720000127],[33.947645625999996,-2.0735528239999894],[33.947080090999975,-2.0722686319999752],[33.94637421300001,-2.0731284259999825],[33.94482043800002,-2.0722699859999807],[33.944821531,-2.0741153729999837],[33.942137007999975,-2.0731309650000185],[33.940866598000014,-2.074407212999972],[33.93959543300002,-2.0744079720000173],[33.93832433199998,-2.0735584029999927],[33.93832541799998,-2.0754037919999746],[33.93634811099997,-2.075830133000011],[33.93776183900002,-2.078389317000017],[33.93606769799999,-2.0796658180000236],[33.93507861299997,-2.0786713429999963],[33.93408994800001,-2.078391504000024],[33.93281819499998,-2.0773971940000138],[33.92999335100001,-2.0776792940000064],[33.928297713000006,-2.076404802000013],[33.92702670599999,-2.07668597899999],[33.92829903699999,-2.0786753610000233],[33.92702803399999,-2.0789655849999917],[33.92745291799997,-2.080955467000024],[33.92872392300001,-2.080665242000009],[33.928724504,-2.081660306999993],[33.92392263900001,-2.081943568999975],[33.922932815000024,-2.0796735879999915],[33.92166123300001,-2.078968740999983],[33.92166353499999,-2.08293996499998],[33.92025222500001,-2.085500833000026],[33.91841568799998,-2.084506841999996],[33.91643941199999,-2.0857925419999788],[33.91587299700001,-2.0839384259999747],[33.91389647400001,-2.0847989580000217],[33.91389598000001,-2.083939579999992],[33.915872751999984,-2.083513260000018],[33.91587217799997,-2.0825181910000197],[33.913612735000015,-2.0829446750000216],[33.91135247400001,-2.0819509190000076],[33.90909206200001,-2.0816718010000272],[33.903867004999995,-2.082950320000009],[33.902030473000025,-2.0819563050000056],[33.902031926999996,-2.084516355000005],[33.90061968499998,-2.0845171670000013],[33.89977166400001,-2.083522581000011],[33.89878315200002,-2.0845182219999856],[33.89680628799999,-2.084808829999986],[33.89553437500001,-2.083525006000002],[33.89270876699999,-2.0825315409999803],[33.89270956500002,-2.0839517850000107],[33.89073285500001,-2.0845228169999928],[33.88974377699998,-2.084523379000018],[33.88974473600001,-2.0862331000000154],[33.887768021,-2.0868041300000186],[33.88776746399998,-2.0858090529999913],[33.88649650899998,-2.086234941999976],[33.885507028999996,-2.085520855000027],[33.88522579099998,-2.0870859999999993],[33.88240128199999,-2.088082672999974],[33.880424086000005,-2.0878033550000055],[33.88042495000002,-2.0893592969999872],[33.87887076599998,-2.0887993079999774],[33.877459219,-2.0900756109999747],[33.875198384999976,-2.0890817989999846],[33.87393112299998,-2.095188683999993],[33.872659919,-2.0951893960000234],[33.87209566500002,-2.0971798740000054],[33.869836478000025,-2.098176217999992],[33.86786066000002,-2.10145204600002],[33.867863166999996,-2.105993237000007],[33.871116992,-2.1149471439999843],[33.87168433099998,-2.119497057999979],[33.86889811100002,-2.18728175199999],[33.869889236000006,-2.191686666999999],[33.867350018000025,-2.1975138939999965],[33.983748745000014,-2.211082647000012],[33.993074138,-2.2153370120000204],[34.007357850000005,-2.241478803000007],[34.01216739099999,-2.251841968000008],[34.014712223000004,-2.2551147699999774],[34.01443619700001,-2.263925572000005],[34.01245903,-2.26477726600001],[34.01769122600001,-2.2732947189999777],[34.018541454,-2.2771385770000165],[34.020802258,-2.2784124259999885],[34.02574941400002,-2.2826694500000144],[34.030130489999976,-2.2859318210000197],[34.034368583,-2.2864986420000264],[34.04341864999998,-2.300132999000027],[34.06136500000002,-2.309500053000022],[34.07492830199999,-2.313750299999981],[34.095279620999975,-2.3272396790000016],[34.26854853200001,-2.432097026000008],[34.30233721500002,-2.4614695160000224],[34.351614985000026,-2.578639083999974],[34.375218372000006,-2.589557613000011],[34.385823174999985,-2.5983553770000185],[34.39008293699999,-2.618094828999972],[34.397159879000014,-2.630450725000003],[34.405520224999975,-2.6527448830000253],[34.41259247199997,-2.6605511650000153],[34.426161588000014,-2.66636004999998],[34.43959276099997,-2.6752982070000257],[34.44411852500002,-2.6798421390000158],[34.448644875000014,-2.684376991000022],[34.45318147099999,-2.6980103050000253],[34.457707949999985,-2.702554111999973],[34.47708405499998,-2.7202932999999803],[34.484718988,-2.7251134439999873],[34.488962919000016,-2.7296483160000093],[34.50735070500002,-2.747532460000002],[34.51611630999997,-2.752350803000013],[34.527294396,-2.7658300209999993],[34.54315854700002,-2.79735438900002],[34.556781340999976,-2.8426547729999925],[34.583809766,-2.8740084429999797],[34.637038158999985,-2.94666934899999],[34.655749732000004,-2.987843003000023],[34.66509151600002,-2.9984818159999804],[34.67873580000003,-3.0505950439999765],[34.682593397999995,-3.0777276189999725],[34.693263074000015,-3.1227364520000265],[34.690190812000026,-3.1454758890000107],[34.692477164000024,-3.1612343499999724],[34.69856432900002,-3.167762532999973],[34.70139508300002,-3.170317065000006],[34.710166077999986,-3.1761262780000266],[34.71625107199998,-3.1812254550000034],[34.72149609500002,-3.190738952000004],[34.77613214399997,-3.3217560429999935],[34.776134437999985,-3.3230401029999825],[34.83265187699999,-3.237132824000014],[34.887596085999974,-3.2224014120000106],[34.881675504999976,-2.9067938829999775],[34.986357376,-2.9891371780000213],[34.988645744999985,-3.004756998000005],[34.98865397899999,-3.0093049349999887],[34.99346127199999,-3.011565570000016],[35.00222387399998,-3.0133939199999986],[35.00703587100003,-3.0182132140000135],[35.01580290499999,-3.0227448040000127],[35.00470226700003,-2.977883109000004],[35.02051133399999,-2.9707565539999905],[35.03237825999997,-2.9713043040000002],[35.05622994999999,-2.9593254779999825],[35.06426226799999,-2.948659914000018],[35.125370035,-2.9189987889999998],[35.13820603900001,-2.9096080609999717],[35.18545892899999,-2.7234716749999848],[35.187421142999995,-2.715087509],[35.190918864000025,-2.696900640000024],[35.20420542800002,-2.624308804000009],[35.21857428200002,-2.5227417439999726],[35.22235659299997,-2.5049890259999756],[35.207929062000005,-2.4896718840000176],[35.16076040500002,-2.395021483999983],[35.264611968999986,-2.3592078199999946],[35.26579828199999,-2.306520087000024],[35.26194789200002,-2.281819526999982],[35.256087130000026,-2.2346842140000263],[35.258255427999984,-2.1744642460000136],[35.260786997000025,-2.1682136840000226],[35.211381303999985,-2.068308397999999],[35.252837532,-1.7071101660000068],[35.25690357299999,-1.684097974999986]]]},"properties":{"SITE_ID":916,"SITE_PID":"916","SITE_TYPE":"PA","NAME_ENG":"Serengeti National Park","NAME":"Serengeti National Park","DESIG":"National Park","DESIG_ENG":"National Park","DESIG_TYPE":"National","IUCN_CAT":"II","INT_CRIT":"Not Applicable","REALM":"Terrestrial","REP_M_AREA":0,"GIS_M_AREA":0,"REP_AREA":13069,"GIS_AREA":13067.5051776765,"NO_TAKE":"Not Applicable","NO_TK_AREA":0,"STATUS":"Designated","STATUS_YR":1951,"GOV_TYPE":"Federal or national ministry or agency","GOVSUBTYPE":"Not Applicable","OWN_TYPE":"State","OWNSUBTYPE":"Not Applicable","MANG_AUTH":"Tanzania National Parks (TANAPA)","MANG_PLAN":"Not Reported","VERIF":"State Verified","METADATAID":1744,"PRNT_ISO3":"TZA","ISO3":"TZA","SUPP_INFO":"Not Applicable","CONS_OBJ":"Not Applicable","INLND_WTRS":"Not Reported","OECM_ASMT":"Not Applicable"}} +]} \ No newline at end of file diff --git a/Homework3_engagement/data/combined_wildebeest_tsavo_points_sampled.geojson b/Homework3_engagement/data/combined_wildebeest_tsavo_points_sampled.geojson new file mode 100644 index 0000000..c998c07 --- /dev/null +++ b/Homework3_engagement/data/combined_wildebeest_tsavo_points_sampled.geojson @@ -0,0 +1,123953 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.268135, + -1.285720004 + ] + }, + "properties": { + "timestamp": "2017-03-13T03:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26775667, + -1.285028338 + ] + }, + "properties": { + "timestamp": "2017-03-14T19:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26273667, + -1.288963338 + ] + }, + "properties": { + "timestamp": "2017-03-17T03:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.260915, + -1.294555004 + ] + }, + "properties": { + "timestamp": "2017-03-19T15:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25060667, + -1.292848338 + ] + }, + "properties": { + "timestamp": "2017-03-22T03:31:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24719333, + -1.295033338 + ] + }, + "properties": { + "timestamp": "2017-03-24T15:31:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26280167, + -1.290108338 + ] + }, + "properties": { + "timestamp": "2017-03-27T03:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25797, + -1.295086671 + ] + }, + "properties": { + "timestamp": "2017-03-29T15:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.288165, + -1.335466671 + ] + }, + "properties": { + "timestamp": "2017-04-01T03:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.269595, + -1.337788338 + ] + }, + "properties": { + "timestamp": "2017-04-03T15:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24019, + -1.319631671 + ] + }, + "properties": { + "timestamp": "2017-04-06T03:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23960833, + -1.353610004 + ] + }, + "properties": { + "timestamp": "2017-04-08T15:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24822833, + -1.352280004 + ] + }, + "properties": { + "timestamp": "2017-04-11T03:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25454333, + -1.324310004 + ] + }, + "properties": { + "timestamp": "2017-04-13T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21461667, + -1.314206671 + ] + }, + "properties": { + "timestamp": "2017-04-16T07:31:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27254833, + -1.325818338 + ] + }, + "properties": { + "timestamp": "2017-04-18T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27665167, + -1.334910004 + ] + }, + "properties": { + "timestamp": "2017-04-21T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36717667, + -1.352398337 + ] + }, + "properties": { + "timestamp": "2017-04-23T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34874, + -1.387003337 + ] + }, + "properties": { + "timestamp": "2017-04-26T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35880667, + -1.387501671 + ] + }, + "properties": { + "timestamp": "2017-04-28T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.371745, + -1.405625004 + ] + }, + "properties": { + "timestamp": "2017-05-01T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40147167, + -1.401586671 + ] + }, + "properties": { + "timestamp": "2017-05-03T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45581833, + -1.351515004 + ] + }, + "properties": { + "timestamp": "2017-05-06T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59121167, + -1.265281671 + ] + }, + "properties": { + "timestamp": "2017-05-12T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59933667, + -1.263450004 + ] + }, + "properties": { + "timestamp": "2017-05-15T07:31:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59935167, + -1.278963337 + ] + }, + "properties": { + "timestamp": "2017-05-17T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58037, + -1.342143337 + ] + }, + "properties": { + "timestamp": "2017-05-20T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49780167, + -1.331408337 + ] + }, + "properties": { + "timestamp": "2017-05-22T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28318333, + -1.343883338 + ] + }, + "properties": { + "timestamp": "2017-05-25T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.236435, + -1.311451671 + ] + }, + "properties": { + "timestamp": "2017-05-27T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27966167, + -1.339943338 + ] + }, + "properties": { + "timestamp": "2017-05-30T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23629333, + -1.337440004 + ] + }, + "properties": { + "timestamp": "2017-06-01T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19983667, + -1.307041671 + ] + }, + "properties": { + "timestamp": "2017-06-03T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14365667, + -1.341973338 + ] + }, + "properties": { + "timestamp": "2017-06-04T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11433833, + -1.316736671 + ] + }, + "properties": { + "timestamp": "2017-06-06T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09882167, + -1.315043338 + ] + }, + "properties": { + "timestamp": "2017-06-08T07:31:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11171333, + -1.269590004 + ] + }, + "properties": { + "timestamp": "2017-06-09T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10090833, + -1.269511671 + ] + }, + "properties": { + "timestamp": "2017-06-11T15:31:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07539833, + -1.285910004 + ] + }, + "properties": { + "timestamp": "2017-06-13T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10194167, + -1.274518338 + ] + }, + "properties": { + "timestamp": "2017-06-14T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08529, + -1.257010005 + ] + }, + "properties": { + "timestamp": "2017-06-16T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.100975, + -1.330681671 + ] + }, + "properties": { + "timestamp": "2017-06-18T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10747667, + -1.342880004 + ] + }, + "properties": { + "timestamp": "2017-06-19T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.106415, + -1.361010004 + ] + }, + "properties": { + "timestamp": "2017-06-21T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10112833, + -1.354663338 + ] + }, + "properties": { + "timestamp": "2017-06-23T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09421667, + -1.333620004 + ] + }, + "properties": { + "timestamp": "2017-06-24T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10124167, + -1.341441671 + ] + }, + "properties": { + "timestamp": "2017-06-26T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07883167, + -1.348106671 + ] + }, + "properties": { + "timestamp": "2017-06-28T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.073085, + -1.322506671 + ] + }, + "properties": { + "timestamp": "2017-06-29T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09722, + -1.288480004 + ] + }, + "properties": { + "timestamp": "2017-07-01T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16506833, + -1.356296671 + ] + }, + "properties": { + "timestamp": "2017-07-03T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22141, + -1.361191671 + ] + }, + "properties": { + "timestamp": "2017-07-04T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37707833, + -1.405276671 + ] + }, + "properties": { + "timestamp": "2017-07-06T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40819667, + -1.417296671 + ] + }, + "properties": { + "timestamp": "2017-07-08T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40694333, + -1.436393337 + ] + }, + "properties": { + "timestamp": "2017-07-09T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40059333, + -1.403191671 + ] + }, + "properties": { + "timestamp": "2017-07-11T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40434, + -1.418133337 + ] + }, + "properties": { + "timestamp": "2017-07-13T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37603667, + -1.399881671 + ] + }, + "properties": { + "timestamp": "2017-07-14T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30897333, + -1.366595004 + ] + }, + "properties": { + "timestamp": "2017-07-16T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24778667, + -1.334461671 + ] + }, + "properties": { + "timestamp": "2017-07-18T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19110667, + -1.280151671 + ] + }, + "properties": { + "timestamp": "2017-07-19T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13393667, + -1.235965005 + ] + }, + "properties": { + "timestamp": "2017-07-21T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16041833, + -1.272166671 + ] + }, + "properties": { + "timestamp": "2017-07-23T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26594667, + -1.287093338 + ] + }, + "properties": { + "timestamp": "2017-07-24T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28085833, + -1.361495004 + ] + }, + "properties": { + "timestamp": "2017-07-26T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39563667, + -1.382348337 + ] + }, + "properties": { + "timestamp": "2017-07-28T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41903667, + -1.411175004 + ] + }, + "properties": { + "timestamp": "2017-07-29T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41443, + -1.413538337 + ] + }, + "properties": { + "timestamp": "2017-07-31T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37771833, + -1.402041671 + ] + }, + "properties": { + "timestamp": "2017-08-02T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30291333, + -1.373066671 + ] + }, + "properties": { + "timestamp": "2017-08-05T07:31:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09328833, + -1.279215004 + ] + }, + "properties": { + "timestamp": "2017-08-07T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.111085, + -1.266125004 + ] + }, + "properties": { + "timestamp": "2017-08-10T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11304, + -1.279698338 + ] + }, + "properties": { + "timestamp": "2017-08-12T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09024167, + -1.295451671 + ] + }, + "properties": { + "timestamp": "2017-08-15T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08945333, + -1.323046671 + ] + }, + "properties": { + "timestamp": "2017-08-17T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11544167, + -1.332790004 + ] + }, + "properties": { + "timestamp": "2017-08-20T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10203, + -1.297021671 + ] + }, + "properties": { + "timestamp": "2017-08-22T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.111155, + -1.267528338 + ] + }, + "properties": { + "timestamp": "2017-08-25T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12138667, + -1.255513338 + ] + }, + "properties": { + "timestamp": "2017-08-27T23:31:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15649833, + -1.265585004 + ] + }, + "properties": { + "timestamp": "2017-08-30T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15235, + -1.232880005 + ] + }, + "properties": { + "timestamp": "2017-09-01T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.172395, + -1.235073338 + ] + }, + "properties": { + "timestamp": "2017-09-04T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17971833, + -1.211040005 + ] + }, + "properties": { + "timestamp": "2017-09-06T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18666667, + -1.182828338 + ] + }, + "properties": { + "timestamp": "2017-09-09T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17932833, + -1.189448338 + ] + }, + "properties": { + "timestamp": "2017-09-11T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18036667, + -1.198018338 + ] + }, + "properties": { + "timestamp": "2017-09-14T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17877333, + -1.186180005 + ] + }, + "properties": { + "timestamp": "2017-09-16T23:31:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20597833, + -1.154670005 + ] + }, + "properties": { + "timestamp": "2017-09-19T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.214605, + -1.177991671 + ] + }, + "properties": { + "timestamp": "2017-09-21T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17063667, + -1.227043338 + ] + }, + "properties": { + "timestamp": "2017-09-24T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18349167, + -1.187085005 + ] + }, + "properties": { + "timestamp": "2017-09-26T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1468, + -1.220731671 + ] + }, + "properties": { + "timestamp": "2017-09-29T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11900833, + -1.374866671 + ] + }, + "properties": { + "timestamp": "2017-10-01T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06814, + -1.410566671 + ] + }, + "properties": { + "timestamp": "2017-10-04T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08205167, + -1.460560004 + ] + }, + "properties": { + "timestamp": "2017-10-06T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07133167, + -1.547995004 + ] + }, + "properties": { + "timestamp": "2017-10-09T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09233667, + -1.569986671 + ] + }, + "properties": { + "timestamp": "2017-10-11T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.066665, + -1.562890004 + ] + }, + "properties": { + "timestamp": "2017-10-14T07:31:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08149333, + -1.577405004 + ] + }, + "properties": { + "timestamp": "2017-10-16T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09234833, + -1.564898337 + ] + }, + "properties": { + "timestamp": "2017-10-19T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18512833, + -1.374550004 + ] + }, + "properties": { + "timestamp": "2017-10-21T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23849, + -1.322165004 + ] + }, + "properties": { + "timestamp": "2017-10-24T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17121, + -1.338200004 + ] + }, + "properties": { + "timestamp": "2017-10-26T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10041667, + -1.288468338 + ] + }, + "properties": { + "timestamp": "2017-10-29T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04190833, + -1.247020005 + ] + }, + "properties": { + "timestamp": "2017-10-31T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04296, + -1.255478338 + ] + }, + "properties": { + "timestamp": "2017-11-03T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04239, + -1.247908338 + ] + }, + "properties": { + "timestamp": "2017-11-05T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09096, + -1.318416671 + ] + }, + "properties": { + "timestamp": "2017-11-08T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11290167, + -1.270838338 + ] + }, + "properties": { + "timestamp": "2017-11-10T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13854833, + -1.238751671 + ] + }, + "properties": { + "timestamp": "2017-11-13T07:31:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08129667, + -1.207160005 + ] + }, + "properties": { + "timestamp": "2017-11-15T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08494, + -1.190821671 + ] + }, + "properties": { + "timestamp": "2017-11-18T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09674333, + -1.255283338 + ] + }, + "properties": { + "timestamp": "2017-11-20T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10956, + -1.271630004 + ] + }, + "properties": { + "timestamp": "2017-11-23T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13453333, + -1.285800004 + ] + }, + "properties": { + "timestamp": "2017-11-25T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14896333, + -1.272240004 + ] + }, + "properties": { + "timestamp": "2017-11-28T07:31:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14644667, + -1.294003338 + ] + }, + "properties": { + "timestamp": "2017-11-30T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17132667, + -1.328536671 + ] + }, + "properties": { + "timestamp": "2017-12-03T07:31:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18576667, + -1.295256671 + ] + }, + "properties": { + "timestamp": "2017-12-05T23:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23415167, + -1.329703338 + ] + }, + "properties": { + "timestamp": "2017-12-08T07:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28484333, + -1.353035004 + ] + }, + "properties": { + "timestamp": "2017-12-10T23:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2856, + -1.364173337 + ] + }, + "properties": { + "timestamp": "2017-12-13T07:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.201685, + -1.314398338 + ] + }, + "properties": { + "timestamp": "2017-12-15T23:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.237075, + -1.266220004 + ] + }, + "properties": { + "timestamp": "2017-12-18T07:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18048, + -1.226851671 + ] + }, + "properties": { + "timestamp": "2017-12-20T23:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15988833, + -1.251860004 + ] + }, + "properties": { + "timestamp": "2017-12-23T07:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16417333, + -1.194380005 + ] + }, + "properties": { + "timestamp": "2017-12-25T23:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13368333, + -1.178503338 + ] + }, + "properties": { + "timestamp": "2017-12-28T07:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10755833, + -1.246790005 + ] + }, + "properties": { + "timestamp": "2017-12-30T23:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14123667, + -1.263063338 + ] + }, + "properties": { + "timestamp": "2018-01-02T07:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20577333, + -1.269735004 + ] + }, + "properties": { + "timestamp": "2018-01-04T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34616833, + -1.383503337 + ] + }, + "properties": { + "timestamp": "2018-01-07T07:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38005167, + -1.345878337 + ] + }, + "properties": { + "timestamp": "2018-01-09T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42360333, + -1.375976671 + ] + }, + "properties": { + "timestamp": "2018-01-12T07:31:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.490245, + -1.328345004 + ] + }, + "properties": { + "timestamp": "2018-01-14T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50878833, + -1.321181671 + ] + }, + "properties": { + "timestamp": "2018-01-17T07:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59520333, + -1.283613337 + ] + }, + "properties": { + "timestamp": "2018-01-19T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5925, + -1.276583337 + ] + }, + "properties": { + "timestamp": "2018-01-22T07:31:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.574995, + -1.301693337 + ] + }, + "properties": { + "timestamp": "2018-01-24T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59192833, + -1.340101671 + ] + }, + "properties": { + "timestamp": "2018-01-27T07:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51576333, + -1.361513337 + ] + }, + "properties": { + "timestamp": "2018-01-29T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45376667, + -1.371543337 + ] + }, + "properties": { + "timestamp": "2018-02-01T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43643, + -1.355275004 + ] + }, + "properties": { + "timestamp": "2018-02-03T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40809833, + -1.368421671 + ] + }, + "properties": { + "timestamp": "2018-02-04T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39748333, + -1.361776671 + ] + }, + "properties": { + "timestamp": "2018-02-06T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35993167, + -1.353885004 + ] + }, + "properties": { + "timestamp": "2018-02-08T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35202667, + -1.357566671 + ] + }, + "properties": { + "timestamp": "2018-02-09T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37914167, + -1.398646671 + ] + }, + "properties": { + "timestamp": "2018-02-11T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36285667, + -1.364195004 + ] + }, + "properties": { + "timestamp": "2018-02-13T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.299585, + -1.405785004 + ] + }, + "properties": { + "timestamp": "2018-02-14T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28691333, + -1.392256671 + ] + }, + "properties": { + "timestamp": "2018-02-16T11:31:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.283155, + -1.389266671 + ] + }, + "properties": { + "timestamp": "2018-02-18T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29704833, + -1.405628337 + ] + }, + "properties": { + "timestamp": "2018-02-19T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.318315, + -1.415761671 + ] + }, + "properties": { + "timestamp": "2018-02-21T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26507, + -1.382995004 + ] + }, + "properties": { + "timestamp": "2018-02-23T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23506, + -1.364703338 + ] + }, + "properties": { + "timestamp": "2018-02-24T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.218915, + -1.318841671 + ] + }, + "properties": { + "timestamp": "2018-02-26T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23737167, + -1.325195004 + ] + }, + "properties": { + "timestamp": "2018-02-28T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.288715, + -1.357511671 + ] + }, + "properties": { + "timestamp": "2018-03-01T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.294055, + -1.399753337 + ] + }, + "properties": { + "timestamp": "2018-03-03T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30130833, + -1.401585004 + ] + }, + "properties": { + "timestamp": "2018-03-05T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30327333, + -1.415125004 + ] + }, + "properties": { + "timestamp": "2018-03-06T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39329833, + -1.349625004 + ] + }, + "properties": { + "timestamp": "2018-03-08T11:31:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38969, + -1.362793337 + ] + }, + "properties": { + "timestamp": "2018-03-10T03:31:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39945167, + -1.327835004 + ] + }, + "properties": { + "timestamp": "2018-03-11T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40915, + -1.334668337 + ] + }, + "properties": { + "timestamp": "2018-03-13T11:31:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40755333, + -1.326476671 + ] + }, + "properties": { + "timestamp": "2018-03-15T03:31:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44914167, + -1.311416671 + ] + }, + "properties": { + "timestamp": "2018-03-17T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47815167, + -1.356911671 + ] + }, + "properties": { + "timestamp": "2018-03-20T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48912167, + -1.339331671 + ] + }, + "properties": { + "timestamp": "2018-03-22T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46374333, + -1.368591671 + ] + }, + "properties": { + "timestamp": "2018-03-25T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42598167, + -1.402030004 + ] + }, + "properties": { + "timestamp": "2018-03-27T23:31:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.421935, + -1.403156671 + ] + }, + "properties": { + "timestamp": "2018-03-30T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.435985, + -1.398993337 + ] + }, + "properties": { + "timestamp": "2018-04-01T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44515667, + -1.377825004 + ] + }, + "properties": { + "timestamp": "2018-04-04T07:31:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.425625, + -1.396385004 + ] + }, + "properties": { + "timestamp": "2018-04-07T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36930333, + -1.368558337 + ] + }, + "properties": { + "timestamp": "2018-04-09T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3879, + -1.345675004 + ] + }, + "properties": { + "timestamp": "2018-04-12T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39362167, + -1.348116671 + ] + }, + "properties": { + "timestamp": "2018-04-14T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37375333, + -1.363078337 + ] + }, + "properties": { + "timestamp": "2018-04-17T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40407667, + -1.332295004 + ] + }, + "properties": { + "timestamp": "2018-04-19T15:31:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40689167, + -1.333140004 + ] + }, + "properties": { + "timestamp": "2018-04-22T03:31:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41221, + -1.363218337 + ] + }, + "properties": { + "timestamp": "2018-04-24T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44010833, + -1.388505004 + ] + }, + "properties": { + "timestamp": "2018-04-27T07:31:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49730333, + -1.335121671 + ] + }, + "properties": { + "timestamp": "2018-04-29T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.427835, + -1.378001671 + ] + }, + "properties": { + "timestamp": "2018-05-02T07:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42645833, + -1.352240004 + ] + }, + "properties": { + "timestamp": "2018-05-04T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43998667, + -1.365621671 + ] + }, + "properties": { + "timestamp": "2018-05-07T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43615667, + -1.360450004 + ] + }, + "properties": { + "timestamp": "2018-05-09T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43849167, + -1.367218337 + ] + }, + "properties": { + "timestamp": "2018-05-12T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43478833, + -1.355070004 + ] + }, + "properties": { + "timestamp": "2018-05-14T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43924333, + -1.366016671 + ] + }, + "properties": { + "timestamp": "2018-05-17T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.443125, + -1.361886671 + ] + }, + "properties": { + "timestamp": "2018-05-20T03:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.480605, + -1.332890004 + ] + }, + "properties": { + "timestamp": "2018-05-22T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46250167, + -1.337798337 + ] + }, + "properties": { + "timestamp": "2018-05-25T03:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46020333, + -1.337045004 + ] + }, + "properties": { + "timestamp": "2018-05-27T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43392833, + -1.347128337 + ] + }, + "properties": { + "timestamp": "2018-05-30T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43532333, + -1.337638337 + ] + }, + "properties": { + "timestamp": "2018-06-01T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40340833, + -1.325791671 + ] + }, + "properties": { + "timestamp": "2018-06-03T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3994, + -1.322915004 + ] + }, + "properties": { + "timestamp": "2018-06-04T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38526167, + -1.349380004 + ] + }, + "properties": { + "timestamp": "2018-06-06T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38239833, + -1.351721671 + ] + }, + "properties": { + "timestamp": "2018-06-08T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38398833, + -1.351541671 + ] + }, + "properties": { + "timestamp": "2018-06-09T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37530333, + -1.353188337 + ] + }, + "properties": { + "timestamp": "2018-06-11T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.383405, + -1.354563337 + ] + }, + "properties": { + "timestamp": "2018-06-13T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.381405, + -1.353418337 + ] + }, + "properties": { + "timestamp": "2018-06-14T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38429, + -1.354110004 + ] + }, + "properties": { + "timestamp": "2018-06-16T15:31:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38747333, + -1.347388337 + ] + }, + "properties": { + "timestamp": "2018-06-18T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37293333, + -1.355468337 + ] + }, + "properties": { + "timestamp": "2018-06-20T03:31:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34352833, + -1.359943337 + ] + }, + "properties": { + "timestamp": "2018-06-21T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.348565, + -1.353405004 + ] + }, + "properties": { + "timestamp": "2018-06-23T11:31:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35606, + -1.355305004 + ] + }, + "properties": { + "timestamp": "2018-06-25T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35979833, + -1.387943337 + ] + }, + "properties": { + "timestamp": "2018-06-26T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31446, + -1.381240004 + ] + }, + "properties": { + "timestamp": "2018-06-28T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30265, + -1.348378338 + ] + }, + "properties": { + "timestamp": "2018-06-30T03:31:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31771167, + -1.382230004 + ] + }, + "properties": { + "timestamp": "2018-07-01T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30668333, + -1.385573337 + ] + }, + "properties": { + "timestamp": "2018-07-03T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30869167, + -1.387320004 + ] + }, + "properties": { + "timestamp": "2018-07-05T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30427333, + -1.384620004 + ] + }, + "properties": { + "timestamp": "2018-07-06T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29578667, + -1.392615004 + ] + }, + "properties": { + "timestamp": "2018-07-08T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30722667, + -1.386658337 + ] + }, + "properties": { + "timestamp": "2018-07-10T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26125, + -1.319128338 + ] + }, + "properties": { + "timestamp": "2018-07-11T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25589167, + -1.295146671 + ] + }, + "properties": { + "timestamp": "2018-07-13T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26077667, + -1.311165004 + ] + }, + "properties": { + "timestamp": "2018-07-15T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.252795, + -1.292068338 + ] + }, + "properties": { + "timestamp": "2018-07-16T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2613, + -1.291648338 + ] + }, + "properties": { + "timestamp": "2018-07-18T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26108833, + -1.293328338 + ] + }, + "properties": { + "timestamp": "2018-07-20T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24585833, + -1.290441671 + ] + }, + "properties": { + "timestamp": "2018-07-21T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24143, + -1.291525004 + ] + }, + "properties": { + "timestamp": "2018-07-23T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26153667, + -1.285990004 + ] + }, + "properties": { + "timestamp": "2018-07-25T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26375, + -1.301405004 + ] + }, + "properties": { + "timestamp": "2018-07-26T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25893, + -1.270660004 + ] + }, + "properties": { + "timestamp": "2018-07-28T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25491333, + -1.248730004 + ] + }, + "properties": { + "timestamp": "2018-07-30T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20227667, + -1.245786671 + ] + }, + "properties": { + "timestamp": "2018-07-31T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17836333, + -1.224500005 + ] + }, + "properties": { + "timestamp": "2018-08-03T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15995667, + -1.238148338 + ] + }, + "properties": { + "timestamp": "2018-08-05T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16231833, + -1.261578338 + ] + }, + "properties": { + "timestamp": "2018-08-08T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.126915, + -1.322270004 + ] + }, + "properties": { + "timestamp": "2018-08-10T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15295667, + -1.350905004 + ] + }, + "properties": { + "timestamp": "2018-08-13T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14457333, + -1.365110004 + ] + }, + "properties": { + "timestamp": "2018-08-15T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.137895, + -1.321330004 + ] + }, + "properties": { + "timestamp": "2018-08-18T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12372167, + -1.256860005 + ] + }, + "properties": { + "timestamp": "2018-08-20T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14992667, + -1.294085004 + ] + }, + "properties": { + "timestamp": "2018-08-23T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.180565, + -1.320853338 + ] + }, + "properties": { + "timestamp": "2018-08-25T15:31:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24871333, + -1.374385004 + ] + }, + "properties": { + "timestamp": "2018-08-28T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31250167, + -1.376753337 + ] + }, + "properties": { + "timestamp": "2018-08-30T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29681333, + -1.355743338 + ] + }, + "properties": { + "timestamp": "2018-09-02T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30287667, + -1.386045004 + ] + }, + "properties": { + "timestamp": "2018-09-04T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28833833, + -1.336436671 + ] + }, + "properties": { + "timestamp": "2018-09-07T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25932, + -1.295481671 + ] + }, + "properties": { + "timestamp": "2018-09-09T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25334, + -1.290866671 + ] + }, + "properties": { + "timestamp": "2018-09-12T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25536667, + -1.296130004 + ] + }, + "properties": { + "timestamp": "2018-09-14T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24578333, + -1.290398338 + ] + }, + "properties": { + "timestamp": "2018-09-17T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24808, + -1.289913338 + ] + }, + "properties": { + "timestamp": "2018-09-19T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21027667, + -1.266023338 + ] + }, + "properties": { + "timestamp": "2018-09-22T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16425, + -1.269578338 + ] + }, + "properties": { + "timestamp": "2018-09-24T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07335667, + -1.281586671 + ] + }, + "properties": { + "timestamp": "2018-09-27T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08387667, + -1.274005004 + ] + }, + "properties": { + "timestamp": "2018-09-29T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07421667, + -1.221776671 + ] + }, + "properties": { + "timestamp": "2018-10-02T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.077245, + -1.196946671 + ] + }, + "properties": { + "timestamp": "2018-10-04T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08268167, + -1.205701671 + ] + }, + "properties": { + "timestamp": "2018-10-07T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09127667, + -1.216586671 + ] + }, + "properties": { + "timestamp": "2018-10-09T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09579667, + -1.303610004 + ] + }, + "properties": { + "timestamp": "2018-10-12T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07979, + -1.284198338 + ] + }, + "properties": { + "timestamp": "2018-10-14T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09531667, + -1.316408338 + ] + }, + "properties": { + "timestamp": "2018-10-17T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11039333, + -1.290865004 + ] + }, + "properties": { + "timestamp": "2018-10-19T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.083925, + -1.252333338 + ] + }, + "properties": { + "timestamp": "2018-10-22T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04927667, + -1.242513338 + ] + }, + "properties": { + "timestamp": "2018-10-24T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.02833167, + -1.326963338 + ] + }, + "properties": { + "timestamp": "2018-10-27T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.072615, + -1.247756671 + ] + }, + "properties": { + "timestamp": "2018-10-29T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08921667, + -1.246701671 + ] + }, + "properties": { + "timestamp": "2018-11-01T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08425, + -1.274408338 + ] + }, + "properties": { + "timestamp": "2018-11-03T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04573, + -1.265820005 + ] + }, + "properties": { + "timestamp": "2018-11-06T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.05552, + -1.246216671 + ] + }, + "properties": { + "timestamp": "2018-11-08T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07938, + -1.261810005 + ] + }, + "properties": { + "timestamp": "2018-11-12T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10680167, + -1.321738338 + ] + }, + "properties": { + "timestamp": "2018-11-15T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.111235, + -1.352690004 + ] + }, + "properties": { + "timestamp": "2018-11-17T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09870333, + -1.350300004 + ] + }, + "properties": { + "timestamp": "2018-11-20T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W68", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.272395, + -1.379791671 + ] + }, + "properties": { + "timestamp": "2017-03-14T15:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31012333, + -1.390783337 + ] + }, + "properties": { + "timestamp": "2017-03-16T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27339, + -1.350861671 + ] + }, + "properties": { + "timestamp": "2017-03-19T07:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25517333, + -1.326426671 + ] + }, + "properties": { + "timestamp": "2017-03-21T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22290167, + -1.300206671 + ] + }, + "properties": { + "timestamp": "2017-03-24T07:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18042833, + -1.292401671 + ] + }, + "properties": { + "timestamp": "2017-03-26T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18470167, + -1.306815004 + ] + }, + "properties": { + "timestamp": "2017-03-29T07:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18913167, + -1.274031671 + ] + }, + "properties": { + "timestamp": "2017-04-01T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.167335, + -1.291063338 + ] + }, + "properties": { + "timestamp": "2017-04-03T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17099333, + -1.319576671 + ] + }, + "properties": { + "timestamp": "2017-04-06T07:31:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.166575, + -1.319406671 + ] + }, + "properties": { + "timestamp": "2017-04-08T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17816167, + -1.304681671 + ] + }, + "properties": { + "timestamp": "2017-04-11T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.139235, + -1.290480004 + ] + }, + "properties": { + "timestamp": "2017-04-13T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14011833, + -1.268596671 + ] + }, + "properties": { + "timestamp": "2017-04-16T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13662167, + -1.281926671 + ] + }, + "properties": { + "timestamp": "2017-04-18T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15316667, + -1.340358338 + ] + }, + "properties": { + "timestamp": "2017-04-21T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18015667, + -1.289348338 + ] + }, + "properties": { + "timestamp": "2017-04-23T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.306695, + -1.370226671 + ] + }, + "properties": { + "timestamp": "2017-04-26T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31362333, + -1.386023337 + ] + }, + "properties": { + "timestamp": "2017-04-28T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30716833, + -1.404316671 + ] + }, + "properties": { + "timestamp": "2017-05-01T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34959, + -1.418770004 + ] + }, + "properties": { + "timestamp": "2017-05-03T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35521167, + -1.421298337 + ] + }, + "properties": { + "timestamp": "2017-05-06T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35259, + -1.419205004 + ] + }, + "properties": { + "timestamp": "2017-05-08T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35257333, + -1.419748337 + ] + }, + "properties": { + "timestamp": "2017-05-11T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35022167, + -1.419473337 + ] + }, + "properties": { + "timestamp": "2017-05-13T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35490167, + -1.422031671 + ] + }, + "properties": { + "timestamp": "2017-05-16T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38829833, + -1.344866671 + ] + }, + "properties": { + "timestamp": "2017-05-18T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.309375, + -1.385228337 + ] + }, + "properties": { + "timestamp": "2017-05-19T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30869833, + -1.385651671 + ] + }, + "properties": { + "timestamp": "2017-05-20T19:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30379, + -1.386958337 + ] + }, + "properties": { + "timestamp": "2017-05-21T15:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.305205, + -1.384551671 + ] + }, + "properties": { + "timestamp": "2017-05-22T11:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29529167, + -1.389440004 + ] + }, + "properties": { + "timestamp": "2017-05-23T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.298125, + -1.386328337 + ] + }, + "properties": { + "timestamp": "2017-05-24T03:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30214167, + -1.387271671 + ] + }, + "properties": { + "timestamp": "2017-05-24T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.271565, + -1.379545004 + ] + }, + "properties": { + "timestamp": "2017-05-25T19:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27149833, + -1.378671671 + ] + }, + "properties": { + "timestamp": "2017-05-26T15:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26306333, + -1.376455004 + ] + }, + "properties": { + "timestamp": "2017-05-27T11:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.271665, + -1.378545004 + ] + }, + "properties": { + "timestamp": "2017-05-28T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.260075, + -1.380108337 + ] + }, + "properties": { + "timestamp": "2017-05-29T03:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27205, + -1.382336671 + ] + }, + "properties": { + "timestamp": "2017-05-29T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27416167, + -1.379445004 + ] + }, + "properties": { + "timestamp": "2017-05-30T19:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.264235, + -1.378886671 + ] + }, + "properties": { + "timestamp": "2017-05-31T15:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27291, + -1.378883337 + ] + }, + "properties": { + "timestamp": "2017-06-01T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.209115, + -1.370523338 + ] + }, + "properties": { + "timestamp": "2017-06-03T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21062333, + -1.361991671 + ] + }, + "properties": { + "timestamp": "2017-06-05T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20495, + -1.369825004 + ] + }, + "properties": { + "timestamp": "2017-06-06T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14563667, + -1.363488338 + ] + }, + "properties": { + "timestamp": "2017-06-08T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16329167, + -1.335510004 + ] + }, + "properties": { + "timestamp": "2017-06-10T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10470667, + -1.284125004 + ] + }, + "properties": { + "timestamp": "2017-06-11T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06674333, + -1.254866671 + ] + }, + "properties": { + "timestamp": "2017-06-13T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06251, + -1.276820004 + ] + }, + "properties": { + "timestamp": "2017-06-15T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06916667, + -1.271871671 + ] + }, + "properties": { + "timestamp": "2017-06-16T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.048585, + -1.250685005 + ] + }, + "properties": { + "timestamp": "2017-06-18T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04275, + -1.250101671 + ] + }, + "properties": { + "timestamp": "2017-06-20T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06530333, + -1.244225005 + ] + }, + "properties": { + "timestamp": "2017-06-21T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.116895, + -1.334486671 + ] + }, + "properties": { + "timestamp": "2017-06-23T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14420167, + -1.355146671 + ] + }, + "properties": { + "timestamp": "2017-06-25T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16262833, + -1.311438338 + ] + }, + "properties": { + "timestamp": "2017-06-26T23:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.167275, + -1.296713338 + ] + }, + "properties": { + "timestamp": "2017-06-28T15:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17219833, + -1.324686671 + ] + }, + "properties": { + "timestamp": "2017-06-30T07:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18572667, + -1.284240004 + ] + }, + "properties": { + "timestamp": "2017-07-01T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19780167, + -1.291553338 + ] + }, + "properties": { + "timestamp": "2017-07-03T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21985, + -1.306436671 + ] + }, + "properties": { + "timestamp": "2017-07-05T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23762667, + -1.307446671 + ] + }, + "properties": { + "timestamp": "2017-07-06T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19132333, + -1.305250004 + ] + }, + "properties": { + "timestamp": "2017-07-08T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24149, + -1.348761671 + ] + }, + "properties": { + "timestamp": "2017-07-10T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23444, + -1.322910004 + ] + }, + "properties": { + "timestamp": "2017-07-11T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19333167, + -1.277803338 + ] + }, + "properties": { + "timestamp": "2017-07-13T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18652167, + -1.290220004 + ] + }, + "properties": { + "timestamp": "2017-07-15T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18353833, + -1.334153338 + ] + }, + "properties": { + "timestamp": "2017-07-16T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2381, + -1.334485004 + ] + }, + "properties": { + "timestamp": "2017-07-18T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23991333, + -1.302341671 + ] + }, + "properties": { + "timestamp": "2017-07-20T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23444833, + -1.268050004 + ] + }, + "properties": { + "timestamp": "2017-07-21T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24450667, + -1.253008338 + ] + }, + "properties": { + "timestamp": "2017-07-23T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25452333, + -1.274498338 + ] + }, + "properties": { + "timestamp": "2017-07-25T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32772333, + -1.414728337 + ] + }, + "properties": { + "timestamp": "2017-07-26T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.407305, + -1.399136671 + ] + }, + "properties": { + "timestamp": "2017-07-28T15:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44945167, + -1.365436671 + ] + }, + "properties": { + "timestamp": "2017-07-30T07:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.439925, + -1.388216671 + ] + }, + "properties": { + "timestamp": "2017-07-31T23:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43121333, + -1.369771671 + ] + }, + "properties": { + "timestamp": "2017-08-03T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42283667, + -1.403043337 + ] + }, + "properties": { + "timestamp": "2017-08-05T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46541833, + -1.442395004 + ] + }, + "properties": { + "timestamp": "2017-08-08T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47489667, + -1.454518337 + ] + }, + "properties": { + "timestamp": "2017-08-10T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46901167, + -1.458008337 + ] + }, + "properties": { + "timestamp": "2017-08-13T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48162833, + -1.486673337 + ] + }, + "properties": { + "timestamp": "2017-08-15T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47468, + -1.48870667 + ] + }, + "properties": { + "timestamp": "2017-08-18T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45636, + -1.479973337 + ] + }, + "properties": { + "timestamp": "2017-08-20T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49594, + -1.531630004 + ] + }, + "properties": { + "timestamp": "2017-08-23T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.513785, + -1.518945004 + ] + }, + "properties": { + "timestamp": "2017-08-25T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53335, + -1.506433337 + ] + }, + "properties": { + "timestamp": "2017-08-28T07:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.405245, + -1.423850004 + ] + }, + "properties": { + "timestamp": "2017-08-30T23:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43177, + -1.383973337 + ] + }, + "properties": { + "timestamp": "2017-09-03T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32533833, + -1.412591671 + ] + }, + "properties": { + "timestamp": "2017-09-06T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.214095, + -1.340373338 + ] + }, + "properties": { + "timestamp": "2017-09-08T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.164555, + -1.333301671 + ] + }, + "properties": { + "timestamp": "2017-09-11T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16798667, + -1.278688338 + ] + }, + "properties": { + "timestamp": "2017-09-13T23:31:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10577333, + -1.219356671 + ] + }, + "properties": { + "timestamp": "2017-09-16T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11960167, + -1.200908338 + ] + }, + "properties": { + "timestamp": "2017-09-18T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.138585, + -1.249950005 + ] + }, + "properties": { + "timestamp": "2017-09-21T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17544333, + -1.340951671 + ] + }, + "properties": { + "timestamp": "2017-09-23T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16115667, + -1.407241671 + ] + }, + "properties": { + "timestamp": "2017-09-26T07:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17944, + -1.398381671 + ] + }, + "properties": { + "timestamp": "2017-09-28T23:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15973, + -1.420603337 + ] + }, + "properties": { + "timestamp": "2017-10-01T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.127035, + -1.430378337 + ] + }, + "properties": { + "timestamp": "2017-10-03T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06362333, + -1.458821671 + ] + }, + "properties": { + "timestamp": "2017-10-06T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09312, + -1.538826671 + ] + }, + "properties": { + "timestamp": "2017-10-08T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16961333, + -1.554338337 + ] + }, + "properties": { + "timestamp": "2017-10-11T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1661, + -1.542068337 + ] + }, + "properties": { + "timestamp": "2017-10-13T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09842833, + -1.479046671 + ] + }, + "properties": { + "timestamp": "2017-10-16T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16483333, + -1.443968337 + ] + }, + "properties": { + "timestamp": "2017-10-18T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18822333, + -1.337435004 + ] + }, + "properties": { + "timestamp": "2017-10-21T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.386385, + -1.347376671 + ] + }, + "properties": { + "timestamp": "2017-10-23T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37103167, + -1.367166671 + ] + }, + "properties": { + "timestamp": "2017-10-26T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37408, + -1.346738337 + ] + }, + "properties": { + "timestamp": "2017-10-28T23:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35282333, + -1.374326671 + ] + }, + "properties": { + "timestamp": "2017-10-31T07:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38849333, + -1.344788337 + ] + }, + "properties": { + "timestamp": "2017-11-02T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37112667, + -1.364768337 + ] + }, + "properties": { + "timestamp": "2017-11-05T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37245167, + -1.355175004 + ] + }, + "properties": { + "timestamp": "2017-11-07T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2681, + -1.355520004 + ] + }, + "properties": { + "timestamp": "2017-11-10T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19625667, + -1.293166671 + ] + }, + "properties": { + "timestamp": "2017-11-12T23:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.091435, + -1.229573338 + ] + }, + "properties": { + "timestamp": "2017-11-15T07:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08897, + -1.258973338 + ] + }, + "properties": { + "timestamp": "2017-11-18T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04576, + -1.248573338 + ] + }, + "properties": { + "timestamp": "2017-11-20T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04510333, + -1.256720005 + ] + }, + "properties": { + "timestamp": "2017-11-23T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10226667, + -1.246898338 + ] + }, + "properties": { + "timestamp": "2017-11-25T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24554167, + -1.330443338 + ] + }, + "properties": { + "timestamp": "2017-11-28T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22721333, + -1.301505004 + ] + }, + "properties": { + "timestamp": "2017-11-30T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24440667, + -1.313571671 + ] + }, + "properties": { + "timestamp": "2017-12-03T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21466667, + -1.302370004 + ] + }, + "properties": { + "timestamp": "2017-12-05T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24764167, + -1.328841671 + ] + }, + "properties": { + "timestamp": "2017-12-08T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24739167, + -1.320250004 + ] + }, + "properties": { + "timestamp": "2017-12-10T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23344, + -1.320011671 + ] + }, + "properties": { + "timestamp": "2017-12-13T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.198565, + -1.252325004 + ] + }, + "properties": { + "timestamp": "2017-12-15T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25073833, + -1.264263338 + ] + }, + "properties": { + "timestamp": "2017-12-18T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15809, + -1.183921671 + ] + }, + "properties": { + "timestamp": "2017-12-20T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18557333, + -1.176871671 + ] + }, + "properties": { + "timestamp": "2017-12-23T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20174333, + -1.184330005 + ] + }, + "properties": { + "timestamp": "2017-12-25T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20715833, + -1.180955005 + ] + }, + "properties": { + "timestamp": "2017-12-28T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09341667, + -1.193353338 + ] + }, + "properties": { + "timestamp": "2017-12-30T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.074405, + -1.189790005 + ] + }, + "properties": { + "timestamp": "2018-01-02T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18332167, + -1.178861671 + ] + }, + "properties": { + "timestamp": "2018-01-04T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24577333, + -1.267223338 + ] + }, + "properties": { + "timestamp": "2018-01-07T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.241905, + -1.270438338 + ] + }, + "properties": { + "timestamp": "2018-01-09T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293075, + -1.337535004 + ] + }, + "properties": { + "timestamp": "2018-01-12T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35615833, + -1.382261671 + ] + }, + "properties": { + "timestamp": "2018-01-14T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35204, + -1.382681671 + ] + }, + "properties": { + "timestamp": "2018-01-17T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44370167, + -1.358203337 + ] + }, + "properties": { + "timestamp": "2018-01-19T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47189333, + -1.365903337 + ] + }, + "properties": { + "timestamp": "2018-01-22T07:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42061833, + -1.411478337 + ] + }, + "properties": { + "timestamp": "2018-01-24T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41943167, + -1.380663337 + ] + }, + "properties": { + "timestamp": "2018-01-27T07:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43878667, + -1.355415004 + ] + }, + "properties": { + "timestamp": "2018-01-29T23:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.445685, + -1.358733337 + ] + }, + "properties": { + "timestamp": "2018-02-01T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43448667, + -1.353381671 + ] + }, + "properties": { + "timestamp": "2018-02-02T23:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41133167, + -1.375168337 + ] + }, + "properties": { + "timestamp": "2018-02-04T15:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40845667, + -1.390213337 + ] + }, + "properties": { + "timestamp": "2018-02-06T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36823333, + -1.348481671 + ] + }, + "properties": { + "timestamp": "2018-02-08T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30718, + -1.371185004 + ] + }, + "properties": { + "timestamp": "2018-02-09T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25561, + -1.302973338 + ] + }, + "properties": { + "timestamp": "2018-02-11T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25854667, + -1.323551671 + ] + }, + "properties": { + "timestamp": "2018-02-13T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25921333, + -1.310033338 + ] + }, + "properties": { + "timestamp": "2018-02-14T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22218, + -1.343111671 + ] + }, + "properties": { + "timestamp": "2018-02-16T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22059, + -1.364768338 + ] + }, + "properties": { + "timestamp": "2018-02-18T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18441333, + -1.346375004 + ] + }, + "properties": { + "timestamp": "2018-02-19T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22562167, + -1.364025004 + ] + }, + "properties": { + "timestamp": "2018-02-21T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31036667, + -1.416918337 + ] + }, + "properties": { + "timestamp": "2018-02-23T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32000333, + -1.411950004 + ] + }, + "properties": { + "timestamp": "2018-02-24T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33903833, + -1.424701671 + ] + }, + "properties": { + "timestamp": "2018-02-26T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23263667, + -1.348661671 + ] + }, + "properties": { + "timestamp": "2018-02-28T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27116333, + -1.337346671 + ] + }, + "properties": { + "timestamp": "2018-03-01T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29925667, + -1.369618337 + ] + }, + "properties": { + "timestamp": "2018-03-03T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33276667, + -1.367835004 + ] + }, + "properties": { + "timestamp": "2018-03-05T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.410525, + -1.323333338 + ] + }, + "properties": { + "timestamp": "2018-03-06T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39885667, + -1.345446671 + ] + }, + "properties": { + "timestamp": "2018-03-08T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39177333, + -1.342548337 + ] + }, + "properties": { + "timestamp": "2018-03-10T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43532, + -1.355866671 + ] + }, + "properties": { + "timestamp": "2018-03-11T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44685167, + -1.356730004 + ] + }, + "properties": { + "timestamp": "2018-03-13T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52184333, + -1.323710004 + ] + }, + "properties": { + "timestamp": "2018-03-15T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.433265, + -1.393155004 + ] + }, + "properties": { + "timestamp": "2018-03-17T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40916167, + -1.412496671 + ] + }, + "properties": { + "timestamp": "2018-03-20T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41716333, + -1.397156671 + ] + }, + "properties": { + "timestamp": "2018-03-22T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.432865, + -1.360846671 + ] + }, + "properties": { + "timestamp": "2018-03-25T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.440415, + -1.364510004 + ] + }, + "properties": { + "timestamp": "2018-03-27T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42932833, + -1.363940004 + ] + }, + "properties": { + "timestamp": "2018-03-30T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4402, + -1.356330004 + ] + }, + "properties": { + "timestamp": "2018-04-01T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42131667, + -1.355863337 + ] + }, + "properties": { + "timestamp": "2018-04-04T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46151667, + -1.338391671 + ] + }, + "properties": { + "timestamp": "2018-04-06T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46780167, + -1.364283337 + ] + }, + "properties": { + "timestamp": "2018-04-09T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64365833, + -1.276708337 + ] + }, + "properties": { + "timestamp": "2018-04-11T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.607535, + -1.325643337 + ] + }, + "properties": { + "timestamp": "2018-04-14T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48222833, + -1.363220004 + ] + }, + "properties": { + "timestamp": "2018-04-16T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.442505, + -1.328390004 + ] + }, + "properties": { + "timestamp": "2018-04-19T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.433105, + -1.346573337 + ] + }, + "properties": { + "timestamp": "2018-04-21T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42641667, + -1.359738337 + ] + }, + "properties": { + "timestamp": "2018-04-24T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46195, + -1.335591671 + ] + }, + "properties": { + "timestamp": "2018-04-26T15:31:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46303, + -1.324385004 + ] + }, + "properties": { + "timestamp": "2018-04-29T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43888, + -1.363598337 + ] + }, + "properties": { + "timestamp": "2018-05-01T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45565667, + -1.321448337 + ] + }, + "properties": { + "timestamp": "2018-05-04T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.457655, + -1.336200004 + ] + }, + "properties": { + "timestamp": "2018-05-06T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44343167, + -1.325556671 + ] + }, + "properties": { + "timestamp": "2018-05-09T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43318167, + -1.337750004 + ] + }, + "properties": { + "timestamp": "2018-05-11T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43455667, + -1.332465004 + ] + }, + "properties": { + "timestamp": "2018-05-14T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43426, + -1.337221671 + ] + }, + "properties": { + "timestamp": "2018-05-16T15:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45596333, + -1.325108337 + ] + }, + "properties": { + "timestamp": "2018-05-19T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43877833, + -1.363603337 + ] + }, + "properties": { + "timestamp": "2018-05-21T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44218667, + -1.354415004 + ] + }, + "properties": { + "timestamp": "2018-05-24T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.442145, + -1.354113337 + ] + }, + "properties": { + "timestamp": "2018-05-26T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43735667, + -1.349061671 + ] + }, + "properties": { + "timestamp": "2018-05-29T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43581667, + -1.354540004 + ] + }, + "properties": { + "timestamp": "2018-05-31T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44365167, + -1.356915004 + ] + }, + "properties": { + "timestamp": "2018-06-02T11:31:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44309833, + -1.355798337 + ] + }, + "properties": { + "timestamp": "2018-06-04T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43881667, + -1.353300004 + ] + }, + "properties": { + "timestamp": "2018-06-05T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43877167, + -1.359161671 + ] + }, + "properties": { + "timestamp": "2018-06-07T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44432, + -1.356528337 + ] + }, + "properties": { + "timestamp": "2018-06-09T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.439385, + -1.355780004 + ] + }, + "properties": { + "timestamp": "2018-06-11T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.443655, + -1.353183337 + ] + }, + "properties": { + "timestamp": "2018-06-12T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44499167, + -1.354393337 + ] + }, + "properties": { + "timestamp": "2018-06-14T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44655, + -1.355896671 + ] + }, + "properties": { + "timestamp": "2018-06-16T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43639667, + -1.353863337 + ] + }, + "properties": { + "timestamp": "2018-06-17T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.442605, + -1.353471671 + ] + }, + "properties": { + "timestamp": "2018-06-19T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44465, + -1.354426671 + ] + }, + "properties": { + "timestamp": "2018-06-21T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.444155, + -1.352246671 + ] + }, + "properties": { + "timestamp": "2018-06-22T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.444335, + -1.354508337 + ] + }, + "properties": { + "timestamp": "2018-06-24T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44631667, + -1.355601671 + ] + }, + "properties": { + "timestamp": "2018-06-26T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.446135, + -1.351593337 + ] + }, + "properties": { + "timestamp": "2018-06-27T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44222333, + -1.353111671 + ] + }, + "properties": { + "timestamp": "2018-06-29T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44148167, + -1.353551671 + ] + }, + "properties": { + "timestamp": "2018-07-01T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.445935, + -1.350896671 + ] + }, + "properties": { + "timestamp": "2018-07-02T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44975, + -1.354056671 + ] + }, + "properties": { + "timestamp": "2018-07-04T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44867333, + -1.352448337 + ] + }, + "properties": { + "timestamp": "2018-07-06T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44655833, + -1.351538337 + ] + }, + "properties": { + "timestamp": "2018-07-07T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44810333, + -1.352598337 + ] + }, + "properties": { + "timestamp": "2018-07-09T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39320333, + -1.366568337 + ] + }, + "properties": { + "timestamp": "2018-07-11T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30121667, + -1.387046671 + ] + }, + "properties": { + "timestamp": "2018-07-12T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31281167, + -1.403075004 + ] + }, + "properties": { + "timestamp": "2018-07-14T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30735833, + -1.407430004 + ] + }, + "properties": { + "timestamp": "2018-07-16T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29808333, + -1.404825004 + ] + }, + "properties": { + "timestamp": "2018-07-17T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27561, + -1.383110004 + ] + }, + "properties": { + "timestamp": "2018-07-19T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29517333, + -1.401756671 + ] + }, + "properties": { + "timestamp": "2018-07-21T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30232167, + -1.410016671 + ] + }, + "properties": { + "timestamp": "2018-07-22T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30161, + -1.408971671 + ] + }, + "properties": { + "timestamp": "2018-07-24T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29431, + -1.404543337 + ] + }, + "properties": { + "timestamp": "2018-07-26T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29968167, + -1.415085004 + ] + }, + "properties": { + "timestamp": "2018-07-28T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30012167, + -1.414045004 + ] + }, + "properties": { + "timestamp": "2018-07-29T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30549167, + -1.423283337 + ] + }, + "properties": { + "timestamp": "2018-07-31T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17134833, + -1.359571671 + ] + }, + "properties": { + "timestamp": "2018-08-02T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13581667, + -1.332721671 + ] + }, + "properties": { + "timestamp": "2018-08-05T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10131, + -1.249493338 + ] + }, + "properties": { + "timestamp": "2018-08-07T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09503167, + -1.242608338 + ] + }, + "properties": { + "timestamp": "2018-08-10T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10190667, + -1.252341671 + ] + }, + "properties": { + "timestamp": "2018-08-12T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09650833, + -1.298623338 + ] + }, + "properties": { + "timestamp": "2018-08-15T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17278667, + -1.365295004 + ] + }, + "properties": { + "timestamp": "2018-08-17T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18219167, + -1.383405004 + ] + }, + "properties": { + "timestamp": "2018-08-20T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.224105, + -1.374233338 + ] + }, + "properties": { + "timestamp": "2018-08-22T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26097333, + -1.356018338 + ] + }, + "properties": { + "timestamp": "2018-08-25T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26235333, + -1.336735004 + ] + }, + "properties": { + "timestamp": "2018-08-28T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29632667, + -1.339695004 + ] + }, + "properties": { + "timestamp": "2018-08-30T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31691833, + -1.373626671 + ] + }, + "properties": { + "timestamp": "2018-09-02T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.408815, + -1.368855004 + ] + }, + "properties": { + "timestamp": "2018-09-04T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.437885, + -1.371378337 + ] + }, + "properties": { + "timestamp": "2018-09-07T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43451, + -1.354128337 + ] + }, + "properties": { + "timestamp": "2018-09-09T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41980167, + -1.376343337 + ] + }, + "properties": { + "timestamp": "2018-09-12T07:31:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43846, + -1.367186671 + ] + }, + "properties": { + "timestamp": "2018-09-14T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42047, + -1.374080004 + ] + }, + "properties": { + "timestamp": "2018-09-17T07:31:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.284885, + -1.351145004 + ] + }, + "properties": { + "timestamp": "2018-09-19T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23188, + -1.348358338 + ] + }, + "properties": { + "timestamp": "2018-09-22T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19407333, + -1.356946671 + ] + }, + "properties": { + "timestamp": "2018-09-24T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.180285, + -1.373433338 + ] + }, + "properties": { + "timestamp": "2018-09-27T07:31:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.234315, + -1.364150004 + ] + }, + "properties": { + "timestamp": "2018-09-29T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26554833, + -1.381925004 + ] + }, + "properties": { + "timestamp": "2018-10-02T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28639167, + -1.388543337 + ] + }, + "properties": { + "timestamp": "2018-10-04T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27935833, + -1.392256671 + ] + }, + "properties": { + "timestamp": "2018-10-07T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27223833, + -1.330595004 + ] + }, + "properties": { + "timestamp": "2018-10-09T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18036167, + -1.265093338 + ] + }, + "properties": { + "timestamp": "2018-10-12T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19436, + -1.171438338 + ] + }, + "properties": { + "timestamp": "2018-10-14T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20184833, + -1.169421671 + ] + }, + "properties": { + "timestamp": "2018-10-17T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10743167, + -1.278650004 + ] + }, + "properties": { + "timestamp": "2018-10-19T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11998333, + -1.235623338 + ] + }, + "properties": { + "timestamp": "2018-10-22T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10111167, + -1.256518338 + ] + }, + "properties": { + "timestamp": "2018-10-24T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08579, + -1.245411671 + ] + }, + "properties": { + "timestamp": "2018-10-27T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.082695, + -1.203825005 + ] + }, + "properties": { + "timestamp": "2018-10-29T23:31:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10216833, + -1.213725005 + ] + }, + "properties": { + "timestamp": "2018-11-01T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08633167, + -1.215305005 + ] + }, + "properties": { + "timestamp": "2018-11-03T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08344833, + -1.253155005 + ] + }, + "properties": { + "timestamp": "2018-11-06T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08556667, + -1.210525005 + ] + }, + "properties": { + "timestamp": "2018-11-08T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09078, + -1.266591671 + ] + }, + "properties": { + "timestamp": "2018-11-11T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10467167, + -1.362136671 + ] + }, + "properties": { + "timestamp": "2018-11-14T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04864167, + -1.516873337 + ] + }, + "properties": { + "timestamp": "2018-11-16T23:31:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10225, + -1.57537667 + ] + }, + "properties": { + "timestamp": "2018-11-20T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22562167, + -1.550940004 + ] + }, + "properties": { + "timestamp": "2018-11-24T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20683, + -1.549868337 + ] + }, + "properties": { + "timestamp": "2018-11-27T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13639333, + -1.559866671 + ] + }, + "properties": { + "timestamp": "2018-11-29T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11641, + -1.57185167 + ] + }, + "properties": { + "timestamp": "2018-12-02T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04029, + -1.651653337 + ] + }, + "properties": { + "timestamp": "2018-12-04T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.83670833, + -1.670033337 + ] + }, + "properties": { + "timestamp": "2018-12-07T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.89786167, + -1.76076667 + ] + }, + "properties": { + "timestamp": "2018-12-09T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.03596, + -1.960185003 + ] + }, + "properties": { + "timestamp": "2018-12-12T07:31:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08049333, + -2.116468336 + ] + }, + "properties": { + "timestamp": "2018-12-14T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07747333, + -2.283300002 + ] + }, + "properties": { + "timestamp": "2018-12-17T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20802833, + -2.471335002 + ] + }, + "properties": { + "timestamp": "2018-12-19T23:31:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22098667, + -2.639140002 + ] + }, + "properties": { + "timestamp": "2018-12-22T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06529333, + -2.931090001 + ] + }, + "properties": { + "timestamp": "2018-12-28T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13735333, + -2.913125001 + ] + }, + "properties": { + "timestamp": "2019-01-01T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04255, + -2.981341668 + ] + }, + "properties": { + "timestamp": "2019-01-04T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.9728, + -3.197663334 + ] + }, + "properties": { + "timestamp": "2019-01-06T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.97439167, + -3.186381667 + ] + }, + "properties": { + "timestamp": "2019-01-09T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04363167, + -3.206601667 + ] + }, + "properties": { + "timestamp": "2019-01-11T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07745167, + -3.254730001 + ] + }, + "properties": { + "timestamp": "2019-01-14T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.89812333, + -3.254826667 + ] + }, + "properties": { + "timestamp": "2019-01-16T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09810667, + -3.046226668 + ] + }, + "properties": { + "timestamp": "2019-01-19T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26448167, + -2.817598335 + ] + }, + "properties": { + "timestamp": "2019-01-21T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22709333, + -2.579200002 + ] + }, + "properties": { + "timestamp": "2019-01-24T15:31:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26560333, + -2.491711669 + ] + }, + "properties": { + "timestamp": "2019-01-27T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09607167, + -2.867950001 + ] + }, + "properties": { + "timestamp": "2019-01-29T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.008255, + -2.955530001 + ] + }, + "properties": { + "timestamp": "2019-02-01T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.94074, + -3.104443334 + ] + }, + "properties": { + "timestamp": "2019-02-02T19:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.89507833, + -3.091801668 + ] + }, + "properties": { + "timestamp": "2019-02-04T11:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.86045, + -3.071428334 + ] + }, + "properties": { + "timestamp": "2019-02-06T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.84226167, + -3.073008334 + ] + }, + "properties": { + "timestamp": "2019-02-07T19:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.84240667, + -3.103591668 + ] + }, + "properties": { + "timestamp": "2019-02-09T11:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.96577167, + -3.250623334 + ] + }, + "properties": { + "timestamp": "2019-02-11T11:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.901285, + -3.198555001 + ] + }, + "properties": { + "timestamp": "2019-02-13T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.84316, + -3.191345001 + ] + }, + "properties": { + "timestamp": "2019-02-14T19:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.95955, + -3.245123334 + ] + }, + "properties": { + "timestamp": "2019-02-16T11:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.92431333, + -3.220696667 + ] + }, + "properties": { + "timestamp": "2019-02-18T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.96660667, + -3.180160001 + ] + }, + "properties": { + "timestamp": "2019-02-20T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.96243833, + -3.188533334 + ] + }, + "properties": { + "timestamp": "2019-02-22T11:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.973595, + -3.195258334 + ] + }, + "properties": { + "timestamp": "2019-02-24T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.03906333, + -3.205061667 + ] + }, + "properties": { + "timestamp": "2019-02-26T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04534333, + -3.208051667 + ] + }, + "properties": { + "timestamp": "2019-02-28T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.02237333, + -3.093573334 + ] + }, + "properties": { + "timestamp": "2019-03-01T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.95387167, + -3.012228334 + ] + }, + "properties": { + "timestamp": "2019-03-05T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.97639167, + -2.902110001 + ] + }, + "properties": { + "timestamp": "2019-03-06T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.03884167, + -2.944903334 + ] + }, + "properties": { + "timestamp": "2019-03-08T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.02758167, + -2.947643334 + ] + }, + "properties": { + "timestamp": "2019-03-10T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07054667, + -3.128195001 + ] + }, + "properties": { + "timestamp": "2019-03-11T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.03572, + -3.225861667 + ] + }, + "properties": { + "timestamp": "2019-03-14T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.96805833, + -3.301785001 + ] + }, + "properties": { + "timestamp": "2019-03-18T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.87630667, + -3.316073334 + ] + }, + "properties": { + "timestamp": "2019-03-21T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.91249, + -3.299346667 + ] + }, + "properties": { + "timestamp": "2019-03-24T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.914805, + -3.307995001 + ] + }, + "properties": { + "timestamp": "2019-03-26T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.90518, + -3.345985 + ] + }, + "properties": { + "timestamp": "2019-03-29T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.852895, + -3.222573334 + ] + }, + "properties": { + "timestamp": "2019-03-31T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.875925, + -3.181620001 + ] + }, + "properties": { + "timestamp": "2019-04-02T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.82594, + -3.108856668 + ] + }, + "properties": { + "timestamp": "2019-04-06T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.77735667, + -3.034078334 + ] + }, + "properties": { + "timestamp": "2019-04-08T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.775635, + -2.969356668 + ] + }, + "properties": { + "timestamp": "2019-04-11T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.87878667, + -3.085513334 + ] + }, + "properties": { + "timestamp": "2019-04-13T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.892195, + -3.079420001 + ] + }, + "properties": { + "timestamp": "2019-04-16T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.83445, + -3.007740001 + ] + }, + "properties": { + "timestamp": "2019-04-18T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.71647167, + -2.851810001 + ] + }, + "properties": { + "timestamp": "2019-04-21T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.803725, + -2.926555001 + ] + }, + "properties": { + "timestamp": "2019-04-23T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.02169833, + -2.943635001 + ] + }, + "properties": { + "timestamp": "2019-04-26T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12360833, + -2.954195001 + ] + }, + "properties": { + "timestamp": "2019-04-28T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17790667, + -2.912038334 + ] + }, + "properties": { + "timestamp": "2019-05-01T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20208667, + -2.892646668 + ] + }, + "properties": { + "timestamp": "2019-05-03T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29921167, + -2.820096668 + ] + }, + "properties": { + "timestamp": "2019-05-07T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32800667, + -2.716590001 + ] + }, + "properties": { + "timestamp": "2019-05-09T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30423167, + -2.768626668 + ] + }, + "properties": { + "timestamp": "2019-05-12T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31497833, + -2.775066668 + ] + }, + "properties": { + "timestamp": "2019-05-14T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30789667, + -2.753475001 + ] + }, + "properties": { + "timestamp": "2019-05-19T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12176167, + -2.364405002 + ] + }, + "properties": { + "timestamp": "2019-05-23T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08283333, + -2.148620003 + ] + }, + "properties": { + "timestamp": "2019-05-26T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.99584167, + -2.061183336 + ] + }, + "properties": { + "timestamp": "2019-05-28T23:31:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.78070333, + -2.037755003 + ] + }, + "properties": { + "timestamp": "2019-05-31T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.75798, + -2.082828336 + ] + }, + "properties": { + "timestamp": "2019-06-02T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.88910833, + -2.227646669 + ] + }, + "properties": { + "timestamp": "2019-06-03T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 34.99054667, + -2.278678336 + ] + }, + "properties": { + "timestamp": "2019-06-05T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.015235, + -2.309850002 + ] + }, + "properties": { + "timestamp": "2019-06-07T11:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04833333, + -2.364503336 + ] + }, + "properties": { + "timestamp": "2019-06-09T03:31:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.120225, + -2.435513335 + ] + }, + "properties": { + "timestamp": "2019-06-10T19:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10702667, + -2.401506669 + ] + }, + "properties": { + "timestamp": "2019-06-12T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1065, + -2.394941669 + ] + }, + "properties": { + "timestamp": "2019-06-14T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10598167, + -2.394808335 + ] + }, + "properties": { + "timestamp": "2019-06-15T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08001833, + -2.363003336 + ] + }, + "properties": { + "timestamp": "2019-06-17T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06621333, + -2.303651669 + ] + }, + "properties": { + "timestamp": "2019-06-19T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07840667, + -2.193918336 + ] + }, + "properties": { + "timestamp": "2019-06-21T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12606, + -2.126305003 + ] + }, + "properties": { + "timestamp": "2019-06-23T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22626, + -2.107333336 + ] + }, + "properties": { + "timestamp": "2019-06-24T19:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24457833, + -2.234405002 + ] + }, + "properties": { + "timestamp": "2019-06-26T11:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24665, + -2.309241669 + ] + }, + "properties": { + "timestamp": "2019-06-28T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30027833, + -2.371101669 + ] + }, + "properties": { + "timestamp": "2019-06-30T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31286, + -2.365405002 + ] + }, + "properties": { + "timestamp": "2019-07-01T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23774333, + -2.315403336 + ] + }, + "properties": { + "timestamp": "2019-07-03T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22777667, + -2.249335002 + ] + }, + "properties": { + "timestamp": "2019-07-05T07:31:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18010667, + -2.185525003 + ] + }, + "properties": { + "timestamp": "2019-07-06T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17768833, + -1.927313336 + ] + }, + "properties": { + "timestamp": "2019-07-08T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19972667, + -1.793975003 + ] + }, + "properties": { + "timestamp": "2019-07-10T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15726667, + -1.735413337 + ] + }, + "properties": { + "timestamp": "2019-07-11T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10948, + -1.71995167 + ] + }, + "properties": { + "timestamp": "2019-07-13T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09495667, + -1.68258667 + ] + }, + "properties": { + "timestamp": "2019-07-15T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11331167, + -1.62792667 + ] + }, + "properties": { + "timestamp": "2019-07-18T11:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.105535, + -1.572790004 + ] + }, + "properties": { + "timestamp": "2019-07-20T11:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.116495, + -1.563671671 + ] + }, + "properties": { + "timestamp": "2019-07-22T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17285667, + -1.570258337 + ] + }, + "properties": { + "timestamp": "2019-07-24T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19247833, + -1.56954167 + ] + }, + "properties": { + "timestamp": "2019-07-25T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22514833, + -1.569520004 + ] + }, + "properties": { + "timestamp": "2019-07-27T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.236165, + -1.552998337 + ] + }, + "properties": { + "timestamp": "2019-07-29T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22921667, + -1.495578337 + ] + }, + "properties": { + "timestamp": "2019-08-01T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.172395, + -1.425061671 + ] + }, + "properties": { + "timestamp": "2019-08-05T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18519833, + -1.389398338 + ] + }, + "properties": { + "timestamp": "2019-08-08T15:31:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16685333, + -1.386475004 + ] + }, + "properties": { + "timestamp": "2019-08-11T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16544167, + -1.341386671 + ] + }, + "properties": { + "timestamp": "2019-08-13T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18818333, + -1.291506671 + ] + }, + "properties": { + "timestamp": "2019-08-17T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1159, + -1.278035004 + ] + }, + "properties": { + "timestamp": "2019-08-20T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.130185, + -1.223903338 + ] + }, + "properties": { + "timestamp": "2019-08-23T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.069895, + -1.189710005 + ] + }, + "properties": { + "timestamp": "2019-08-26T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.088685, + -1.205905005 + ] + }, + "properties": { + "timestamp": "2019-08-29T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.0911, + -1.206925005 + ] + }, + "properties": { + "timestamp": "2019-09-01T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13296167, + -1.301441671 + ] + }, + "properties": { + "timestamp": "2019-09-03T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32059, + -1.393366671 + ] + }, + "properties": { + "timestamp": "2019-09-07T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34747, + -1.409985004 + ] + }, + "properties": { + "timestamp": "2019-09-10T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34313833, + -1.423861671 + ] + }, + "properties": { + "timestamp": "2019-09-13T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36675333, + -1.413678337 + ] + }, + "properties": { + "timestamp": "2019-09-15T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34608833, + -1.400896671 + ] + }, + "properties": { + "timestamp": "2019-09-18T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3143, + -1.387621671 + ] + }, + "properties": { + "timestamp": "2019-09-20T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.311915, + -1.380743337 + ] + }, + "properties": { + "timestamp": "2019-09-23T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29827, + -1.415610004 + ] + }, + "properties": { + "timestamp": "2019-09-25T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35297, + -1.386325004 + ] + }, + "properties": { + "timestamp": "2019-09-28T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24330333, + -1.323561671 + ] + }, + "properties": { + "timestamp": "2019-09-30T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22626667, + -1.307721671 + ] + }, + "properties": { + "timestamp": "2019-10-03T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23657667, + -1.260736671 + ] + }, + "properties": { + "timestamp": "2019-10-05T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17312333, + -1.216023338 + ] + }, + "properties": { + "timestamp": "2019-10-08T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.167115, + -1.192920005 + ] + }, + "properties": { + "timestamp": "2019-10-10T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16168833, + -1.186095005 + ] + }, + "properties": { + "timestamp": "2019-10-13T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.178535, + -1.188195005 + ] + }, + "properties": { + "timestamp": "2019-10-15T23:31:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17313333, + -1.180266671 + ] + }, + "properties": { + "timestamp": "2019-10-18T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.175545, + -1.190410005 + ] + }, + "properties": { + "timestamp": "2019-10-20T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18547, + -1.197016671 + ] + }, + "properties": { + "timestamp": "2019-10-23T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18548667, + -1.185308338 + ] + }, + "properties": { + "timestamp": "2019-10-25T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18503, + -1.175745005 + ] + }, + "properties": { + "timestamp": "2019-10-28T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.226315, + -1.236580004 + ] + }, + "properties": { + "timestamp": "2019-10-30T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32442833, + -1.397258337 + ] + }, + "properties": { + "timestamp": "2019-11-02T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45222, + -1.386835004 + ] + }, + "properties": { + "timestamp": "2019-11-04T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44734833, + -1.391263337 + ] + }, + "properties": { + "timestamp": "2019-11-07T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44413167, + -1.356648337 + ] + }, + "properties": { + "timestamp": "2019-11-09T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.435895, + -1.356430004 + ] + }, + "properties": { + "timestamp": "2019-11-12T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43445167, + -1.353216671 + ] + }, + "properties": { + "timestamp": "2019-11-14T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42615167, + -1.375706671 + ] + }, + "properties": { + "timestamp": "2019-11-17T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38075167, + -1.352961671 + ] + }, + "properties": { + "timestamp": "2019-11-19T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21960667, + -1.380781671 + ] + }, + "properties": { + "timestamp": "2019-11-22T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.243075, + -1.379383337 + ] + }, + "properties": { + "timestamp": "2019-11-24T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.313345, + -1.420616671 + ] + }, + "properties": { + "timestamp": "2019-11-27T07:31:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29445833, + -1.414998337 + ] + }, + "properties": { + "timestamp": "2019-11-29T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30545167, + -1.421960004 + ] + }, + "properties": { + "timestamp": "2019-12-02T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29729833, + -1.410773337 + ] + }, + "properties": { + "timestamp": "2019-12-04T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.297425, + -1.408693337 + ] + }, + "properties": { + "timestamp": "2019-12-07T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29656333, + -1.405176671 + ] + }, + "properties": { + "timestamp": "2019-12-09T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.296435, + -1.403081671 + ] + }, + "properties": { + "timestamp": "2019-12-12T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29917333, + -1.400050004 + ] + }, + "properties": { + "timestamp": "2019-12-15T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29623833, + -1.396298337 + ] + }, + "properties": { + "timestamp": "2019-12-17T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29866667, + -1.405778337 + ] + }, + "properties": { + "timestamp": "2019-12-20T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29659833, + -1.400938337 + ] + }, + "properties": { + "timestamp": "2019-12-22T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29542, + -1.405008337 + ] + }, + "properties": { + "timestamp": "2019-12-25T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29577833, + -1.400933337 + ] + }, + "properties": { + "timestamp": "2019-12-27T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29646667, + -1.407643337 + ] + }, + "properties": { + "timestamp": "2019-12-30T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29757667, + -1.404220004 + ] + }, + "properties": { + "timestamp": "2020-01-01T15:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3009, + -1.407873337 + ] + }, + "properties": { + "timestamp": "2020-07-02T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29754167, + -1.404958337 + ] + }, + "properties": { + "timestamp": "2020-07-04T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.298405, + -1.405090004 + ] + }, + "properties": { + "timestamp": "2020-07-05T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29383167, + -1.402070004 + ] + }, + "properties": { + "timestamp": "2020-07-07T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.298745, + -1.406285004 + ] + }, + "properties": { + "timestamp": "2020-07-09T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30171333, + -1.410588337 + ] + }, + "properties": { + "timestamp": "2020-07-10T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293865, + -1.402071671 + ] + }, + "properties": { + "timestamp": "2020-07-12T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.297885, + -1.408800004 + ] + }, + "properties": { + "timestamp": "2020-07-14T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29943667, + -1.410803337 + ] + }, + "properties": { + "timestamp": "2020-07-15T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29991, + -1.400893337 + ] + }, + "properties": { + "timestamp": "2020-07-17T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.299445, + -1.410625004 + ] + }, + "properties": { + "timestamp": "2020-07-19T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29760833, + -1.409751671 + ] + }, + "properties": { + "timestamp": "2020-07-20T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2938, + -1.405061671 + ] + }, + "properties": { + "timestamp": "2020-07-22T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30305333, + -1.407275004 + ] + }, + "properties": { + "timestamp": "2020-07-24T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29983833, + -1.410951671 + ] + }, + "properties": { + "timestamp": "2020-07-25T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.295685, + -1.398698337 + ] + }, + "properties": { + "timestamp": "2020-07-27T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.299635, + -1.410703337 + ] + }, + "properties": { + "timestamp": "2020-07-29T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29599333, + -1.402396671 + ] + }, + "properties": { + "timestamp": "2020-07-30T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.299895, + -1.410396671 + ] + }, + "properties": { + "timestamp": "2020-08-01T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29486333, + -1.401481671 + ] + }, + "properties": { + "timestamp": "2020-08-04T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.299525, + -1.410740004 + ] + }, + "properties": { + "timestamp": "2020-08-07T23:31:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29701833, + -1.408913337 + ] + }, + "properties": { + "timestamp": "2020-08-10T15:31:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29533333, + -1.401253337 + ] + }, + "properties": { + "timestamp": "2020-08-13T15:31:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.300135, + -1.413191671 + ] + }, + "properties": { + "timestamp": "2020-08-16T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29466333, + -1.405308337 + ] + }, + "properties": { + "timestamp": "2020-08-18T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29984, + -1.410040004 + ] + }, + "properties": { + "timestamp": "2020-08-21T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29679, + -1.408815004 + ] + }, + "properties": { + "timestamp": "2020-08-23T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30225167, + -1.405038337 + ] + }, + "properties": { + "timestamp": "2020-08-26T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29447, + -1.408430004 + ] + }, + "properties": { + "timestamp": "2020-08-28T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29903667, + -1.410633337 + ] + }, + "properties": { + "timestamp": "2020-08-31T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29970167, + -1.410588337 + ] + }, + "properties": { + "timestamp": "2020-09-02T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30400333, + -1.406785004 + ] + }, + "properties": { + "timestamp": "2020-09-05T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29957833, + -1.410571671 + ] + }, + "properties": { + "timestamp": "2020-09-07T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29523333, + -1.411206671 + ] + }, + "properties": { + "timestamp": "2020-09-10T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29334333, + -1.405568337 + ] + }, + "properties": { + "timestamp": "2020-09-13T07:31:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29763167, + -1.415058337 + ] + }, + "properties": { + "timestamp": "2020-09-16T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29490667, + -1.411673337 + ] + }, + "properties": { + "timestamp": "2020-09-20T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29406833, + -1.404886671 + ] + }, + "properties": { + "timestamp": "2020-09-22T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29512333, + -1.405041671 + ] + }, + "properties": { + "timestamp": "2020-09-25T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29184833, + -1.405543337 + ] + }, + "properties": { + "timestamp": "2020-09-27T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29412833, + -1.403756671 + ] + }, + "properties": { + "timestamp": "2020-09-30T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29631167, + -1.401548337 + ] + }, + "properties": { + "timestamp": "2020-10-02T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.297715, + -1.399411671 + ] + }, + "properties": { + "timestamp": "2020-10-05T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.302205, + -1.404003337 + ] + }, + "properties": { + "timestamp": "2020-10-07T15:31:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30232333, + -1.406356671 + ] + }, + "properties": { + "timestamp": "2020-10-10T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293945, + -1.405355004 + ] + }, + "properties": { + "timestamp": "2020-10-12T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.306025, + -1.403970004 + ] + }, + "properties": { + "timestamp": "2020-10-15T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29543, + -1.408330004 + ] + }, + "properties": { + "timestamp": "2020-10-17T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29665, + -1.409028337 + ] + }, + "properties": { + "timestamp": "2020-10-20T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29490333, + -1.403261671 + ] + }, + "properties": { + "timestamp": "2020-10-22T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29469667, + -1.408531671 + ] + }, + "properties": { + "timestamp": "2020-10-25T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29723167, + -1.402640004 + ] + }, + "properties": { + "timestamp": "2020-10-27T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.294265, + -1.404351671 + ] + }, + "properties": { + "timestamp": "2020-10-30T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.296465, + -1.408850004 + ] + }, + "properties": { + "timestamp": "2020-11-01T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29199833, + -1.413113337 + ] + }, + "properties": { + "timestamp": "2020-11-04T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29389833, + -1.412623337 + ] + }, + "properties": { + "timestamp": "2020-11-06T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29468, + -1.403281671 + ] + }, + "properties": { + "timestamp": "2020-11-09T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29440333, + -1.416726671 + ] + }, + "properties": { + "timestamp": "2020-11-11T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29745167, + -1.409061671 + ] + }, + "properties": { + "timestamp": "2020-11-14T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29397333, + -1.403373337 + ] + }, + "properties": { + "timestamp": "2020-11-16T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29313667, + -1.411213337 + ] + }, + "properties": { + "timestamp": "2020-11-19T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29397667, + -1.403051671 + ] + }, + "properties": { + "timestamp": "2020-11-21T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29613, + -1.408958337 + ] + }, + "properties": { + "timestamp": "2020-11-24T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29379833, + -1.403033337 + ] + }, + "properties": { + "timestamp": "2020-11-26T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29741833, + -1.394845004 + ] + }, + "properties": { + "timestamp": "2020-11-29T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29490333, + -1.403311671 + ] + }, + "properties": { + "timestamp": "2020-12-01T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29192833, + -1.397926671 + ] + }, + "properties": { + "timestamp": "2020-12-04T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29459, + -1.408235004 + ] + }, + "properties": { + "timestamp": "2020-12-06T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30567333, + -1.403968337 + ] + }, + "properties": { + "timestamp": "2020-12-09T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29915667, + -1.398548337 + ] + }, + "properties": { + "timestamp": "2020-12-12T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30600667, + -1.378633337 + ] + }, + "properties": { + "timestamp": "2020-12-14T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29762333, + -1.401608337 + ] + }, + "properties": { + "timestamp": "2020-12-17T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29577, + -1.401620004 + ] + }, + "properties": { + "timestamp": "2020-12-19T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29757, + -1.400121671 + ] + }, + "properties": { + "timestamp": "2020-12-22T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293845, + -1.403345004 + ] + }, + "properties": { + "timestamp": "2020-12-24T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29677333, + -1.399956671 + ] + }, + "properties": { + "timestamp": "2020-12-27T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.299045, + -1.399045004 + ] + }, + "properties": { + "timestamp": "2020-12-29T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29272833, + -1.404905004 + ] + }, + "properties": { + "timestamp": "2021-01-01T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30393167, + -1.389056671 + ] + }, + "properties": { + "timestamp": "2021-01-03T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.298825, + -1.396883337 + ] + }, + "properties": { + "timestamp": "2021-01-06T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29791167, + -1.399455004 + ] + }, + "properties": { + "timestamp": "2021-01-08T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35526833, + -1.393045004 + ] + }, + "properties": { + "timestamp": "2021-01-11T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43407333, + -1.357326671 + ] + }, + "properties": { + "timestamp": "2021-01-13T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29421333, + -1.403728337 + ] + }, + "properties": { + "timestamp": "2021-01-16T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29469167, + -1.402706671 + ] + }, + "properties": { + "timestamp": "2021-01-19T03:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29433333, + -1.403493337 + ] + }, + "properties": { + "timestamp": "2021-01-21T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29733667, + -1.399785004 + ] + }, + "properties": { + "timestamp": "2021-01-24T03:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30836667, + -1.399198337 + ] + }, + "properties": { + "timestamp": "2021-01-26T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29971167, + -1.398048337 + ] + }, + "properties": { + "timestamp": "2021-01-29T03:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.294865, + -1.403850004 + ] + }, + "properties": { + "timestamp": "2021-01-31T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29399, + -1.403505004 + ] + }, + "properties": { + "timestamp": "2021-02-02T11:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29682833, + -1.400013337 + ] + }, + "properties": { + "timestamp": "2021-02-04T03:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29949833, + -1.410506671 + ] + }, + "properties": { + "timestamp": "2021-02-05T19:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29593167, + -1.399515004 + ] + }, + "properties": { + "timestamp": "2021-02-07T11:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29968, + -1.391038337 + ] + }, + "properties": { + "timestamp": "2021-02-09T03:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29451333, + -1.403541671 + ] + }, + "properties": { + "timestamp": "2021-02-10T19:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293595, + -1.403673337 + ] + }, + "properties": { + "timestamp": "2021-02-12T11:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29705, + -1.400218337 + ] + }, + "properties": { + "timestamp": "2021-02-14T03:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29712333, + -1.400251671 + ] + }, + "properties": { + "timestamp": "2021-02-15T19:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29411167, + -1.402198337 + ] + }, + "properties": { + "timestamp": "2021-02-17T11:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29421333, + -1.404575004 + ] + }, + "properties": { + "timestamp": "2021-02-19T03:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29513667, + -1.403645004 + ] + }, + "properties": { + "timestamp": "2021-02-20T19:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29137333, + -1.402780004 + ] + }, + "properties": { + "timestamp": "2021-02-22T11:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29790667, + -1.398080004 + ] + }, + "properties": { + "timestamp": "2021-02-24T03:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29364833, + -1.395788337 + ] + }, + "properties": { + "timestamp": "2021-02-25T19:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28964333, + -1.400888337 + ] + }, + "properties": { + "timestamp": "2021-02-27T11:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29670833, + -1.399813337 + ] + }, + "properties": { + "timestamp": "2021-03-01T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29679667, + -1.400395004 + ] + }, + "properties": { + "timestamp": "2021-03-02T19:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29379333, + -1.402096671 + ] + }, + "properties": { + "timestamp": "2021-03-04T11:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29871667, + -1.405680004 + ] + }, + "properties": { + "timestamp": "2021-03-06T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29727333, + -1.402400004 + ] + }, + "properties": { + "timestamp": "2021-03-07T19:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29353833, + -1.401340004 + ] + }, + "properties": { + "timestamp": "2021-03-09T11:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29708, + -1.401620004 + ] + }, + "properties": { + "timestamp": "2021-03-11T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29716167, + -1.402820004 + ] + }, + "properties": { + "timestamp": "2021-03-12T19:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.294325, + -1.400788337 + ] + }, + "properties": { + "timestamp": "2021-03-14T11:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30180667, + -1.384411671 + ] + }, + "properties": { + "timestamp": "2021-03-16T15:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29722167, + -1.402488337 + ] + }, + "properties": { + "timestamp": "2021-03-19T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29911667, + -1.406151671 + ] + }, + "properties": { + "timestamp": "2021-03-21T15:31:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29642667, + -1.393163337 + ] + }, + "properties": { + "timestamp": "2021-03-24T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2986, + -1.406171671 + ] + }, + "properties": { + "timestamp": "2021-03-26T23:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.294995, + -1.400490004 + ] + }, + "properties": { + "timestamp": "2021-04-02T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29495833, + -1.405018337 + ] + }, + "properties": { + "timestamp": "2021-04-05T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30053167, + -1.387046671 + ] + }, + "properties": { + "timestamp": "2021-04-07T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29774667, + -1.400193337 + ] + }, + "properties": { + "timestamp": "2021-04-10T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29814667, + -1.405028337 + ] + }, + "properties": { + "timestamp": "2021-04-12T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29719167, + -1.402700004 + ] + }, + "properties": { + "timestamp": "2021-04-15T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29091167, + -1.404298337 + ] + }, + "properties": { + "timestamp": "2021-04-17T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.297625, + -1.405370004 + ] + }, + "properties": { + "timestamp": "2021-04-20T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29339333, + -1.405395004 + ] + }, + "properties": { + "timestamp": "2021-04-22T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29498667, + -1.405171671 + ] + }, + "properties": { + "timestamp": "2021-04-25T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29807, + -1.398978337 + ] + }, + "properties": { + "timestamp": "2021-04-27T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29487167, + -1.403565004 + ] + }, + "properties": { + "timestamp": "2021-04-30T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29263667, + -1.405153337 + ] + }, + "properties": { + "timestamp": "2021-05-02T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30079167, + -1.408675004 + ] + }, + "properties": { + "timestamp": "2021-05-05T03:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293605, + -1.400861671 + ] + }, + "properties": { + "timestamp": "2021-05-07T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29327667, + -1.404496671 + ] + }, + "properties": { + "timestamp": "2021-05-10T03:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.290525, + -1.400501671 + ] + }, + "properties": { + "timestamp": "2021-05-12T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29673167, + -1.393341671 + ] + }, + "properties": { + "timestamp": "2021-05-15T03:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29537667, + -1.404015004 + ] + }, + "properties": { + "timestamp": "2021-05-17T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30171833, + -1.408000004 + ] + }, + "properties": { + "timestamp": "2021-05-20T03:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29257167, + -1.404336671 + ] + }, + "properties": { + "timestamp": "2021-05-22T15:31:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30041667, + -1.403150004 + ] + }, + "properties": { + "timestamp": "2021-05-25T03:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29465833, + -1.403935004 + ] + }, + "properties": { + "timestamp": "2021-05-27T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.301605, + -1.400838337 + ] + }, + "properties": { + "timestamp": "2021-05-30T03:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.293415, + -1.404820004 + ] + }, + "properties": { + "timestamp": "2021-06-01T11:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29440833, + -1.408208337 + ] + }, + "properties": { + "timestamp": "2021-06-03T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29851167, + -1.410296671 + ] + }, + "properties": { + "timestamp": "2021-06-04T19:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29137667, + -1.406651671 + ] + }, + "properties": { + "timestamp": "2021-06-06T11:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29363167, + -1.409436671 + ] + }, + "properties": { + "timestamp": "2021-06-08T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29835333, + -1.410733337 + ] + }, + "properties": { + "timestamp": "2021-06-09T19:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29001333, + -1.405213337 + ] + }, + "properties": { + "timestamp": "2021-06-11T11:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30154333, + -1.400718337 + ] + }, + "properties": { + "timestamp": "2021-06-13T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29854167, + -1.410726671 + ] + }, + "properties": { + "timestamp": "2021-06-14T19:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.294775, + -1.408501671 + ] + }, + "properties": { + "timestamp": "2021-06-16T11:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29528, + -1.411238337 + ] + }, + "properties": { + "timestamp": "2021-06-18T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29482833, + -1.403940004 + ] + }, + "properties": { + "timestamp": "2021-06-19T19:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29520333, + -1.401530004 + ] + }, + "properties": { + "timestamp": "2021-06-21T11:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29604, + -1.401130004 + ] + }, + "properties": { + "timestamp": "2021-06-23T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29715333, + -1.402125004 + ] + }, + "properties": { + "timestamp": "2021-06-24T19:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30006833, + -1.398408337 + ] + }, + "properties": { + "timestamp": "2021-06-26T11:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29930667, + -1.410870004 + ] + }, + "properties": { + "timestamp": "2021-06-28T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29934167, + -1.410860004 + ] + }, + "properties": { + "timestamp": "2021-06-29T19:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30014667, + -1.398505004 + ] + }, + "properties": { + "timestamp": "2021-07-01T11:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30437, + -1.405658337 + ] + }, + "properties": { + "timestamp": "2021-07-03T03:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29956167, + -1.410820004 + ] + }, + "properties": { + "timestamp": "2021-07-04T19:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28936333, + -1.401785004 + ] + }, + "properties": { + "timestamp": "2021-07-06T11:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29895333, + -1.410585004 + ] + }, + "properties": { + "timestamp": "2021-07-08T03:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29897667, + -1.410833337 + ] + }, + "properties": { + "timestamp": "2021-07-09T19:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29350167, + -1.403888337 + ] + }, + "properties": { + "timestamp": "2021-07-11T11:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30483667, + -1.406928337 + ] + }, + "properties": { + "timestamp": "2021-07-13T03:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29869, + -1.410161671 + ] + }, + "properties": { + "timestamp": "2021-07-14T19:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29092667, + -1.404868337 + ] + }, + "properties": { + "timestamp": "2021-07-16T11:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.295825, + -1.400033337 + ] + }, + "properties": { + "timestamp": "2021-07-18T15:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30350333, + -1.401481671 + ] + }, + "properties": { + "timestamp": "2021-07-20T07:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30582333, + -1.405180004 + ] + }, + "properties": { + "timestamp": "2021-07-21T23:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29454, + -1.401845004 + ] + }, + "properties": { + "timestamp": "2021-07-23T15:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29500833, + -1.403976671 + ] + }, + "properties": { + "timestamp": "2021-07-26T07:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29830667, + -1.407780004 + ] + }, + "properties": { + "timestamp": "2021-07-27T23:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.298645, + -1.410115004 + ] + }, + "properties": { + "timestamp": "2021-07-30T19:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29684833, + -1.403746671 + ] + }, + "properties": { + "timestamp": "2021-08-01T15:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.298835, + -1.410131671 + ] + }, + "properties": { + "timestamp": "2021-08-04T23:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30007167, + -1.412431671 + ] + }, + "properties": { + "timestamp": "2021-08-07T15:31:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30986833, + -1.405345004 + ] + }, + "properties": { + "timestamp": "2021-08-10T07:31:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29528333, + -1.413081671 + ] + }, + "properties": { + "timestamp": "2021-08-12T23:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29677667, + -1.409528337 + ] + }, + "properties": { + "timestamp": "2021-08-20T03:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.292795, + -1.400476671 + ] + }, + "properties": { + "timestamp": "2021-08-23T07:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29234833, + -1.409446671 + ] + }, + "properties": { + "timestamp": "2021-08-27T15:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29405667, + -1.409883337 + ] + }, + "properties": { + "timestamp": "2021-08-30T03:30:00", + "year": 2021, + "month": 8, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.292605, + -1.410021671 + ] + }, + "properties": { + "timestamp": "2021-09-01T15:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.289785, + -1.398146671 + ] + }, + "properties": { + "timestamp": "2021-09-05T07:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29764667, + -1.403083337 + ] + }, + "properties": { + "timestamp": "2021-09-07T23:31:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.297585, + -1.405300004 + ] + }, + "properties": { + "timestamp": "2021-09-10T23:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29624833, + -1.402546671 + ] + }, + "properties": { + "timestamp": "2021-09-13T07:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29789333, + -1.405071671 + ] + }, + "properties": { + "timestamp": "2021-09-15T23:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29523833, + -1.405350004 + ] + }, + "properties": { + "timestamp": "2021-09-18T23:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29329167, + -1.404653337 + ] + }, + "properties": { + "timestamp": "2021-09-21T07:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29959833, + -1.410655004 + ] + }, + "properties": { + "timestamp": "2021-09-23T23:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29865333, + -1.399176671 + ] + }, + "properties": { + "timestamp": "2021-09-26T07:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29476, + -1.408563337 + ] + }, + "properties": { + "timestamp": "2021-09-28T23:30:00", + "year": 2021, + "month": 9, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.296955, + -1.409508337 + ] + }, + "properties": { + "timestamp": "2021-10-03T23:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29326833, + -1.406851671 + ] + }, + "properties": { + "timestamp": "2021-10-07T03:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29334833, + -1.404380004 + ] + }, + "properties": { + "timestamp": "2021-10-10T07:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29854, + -1.407516671 + ] + }, + "properties": { + "timestamp": "2021-10-12T23:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29849667, + -1.398721671 + ] + }, + "properties": { + "timestamp": "2021-10-15T15:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29624833, + -1.402173337 + ] + }, + "properties": { + "timestamp": "2021-10-18T03:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29067167, + -1.399580004 + ] + }, + "properties": { + "timestamp": "2021-10-22T07:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29914333, + -1.397895004 + ] + }, + "properties": { + "timestamp": "2021-10-24T23:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28529333, + -1.395293337 + ] + }, + "properties": { + "timestamp": "2021-10-27T07:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29970333, + -1.410941671 + ] + }, + "properties": { + "timestamp": "2021-10-29T23:30:00", + "year": 2021, + "month": 10, + "species": "Wildebeest", + "individual_id": "W69", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39403833, + -1.332633337 + ] + }, + "properties": { + "timestamp": "2017-03-13T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30876167, + -1.318750004 + ] + }, + "properties": { + "timestamp": "2017-03-15T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32142833, + -1.327931671 + ] + }, + "properties": { + "timestamp": "2017-03-18T07:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.260605, + -1.314895004 + ] + }, + "properties": { + "timestamp": "2017-03-20T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24551, + -1.287976671 + ] + }, + "properties": { + "timestamp": "2017-03-23T07:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25027333, + -1.262256671 + ] + }, + "properties": { + "timestamp": "2017-03-25T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24765, + -1.280961671 + ] + }, + "properties": { + "timestamp": "2017-03-28T07:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26193333, + -1.331506671 + ] + }, + "properties": { + "timestamp": "2017-03-30T23:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29409167, + -1.363290004 + ] + }, + "properties": { + "timestamp": "2017-04-02T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24248833, + -1.326160004 + ] + }, + "properties": { + "timestamp": "2017-04-04T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22977333, + -1.324326671 + ] + }, + "properties": { + "timestamp": "2017-04-07T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23431833, + -1.365176671 + ] + }, + "properties": { + "timestamp": "2017-04-09T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19902333, + -1.376920004 + ] + }, + "properties": { + "timestamp": "2017-04-12T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20939167, + -1.361686671 + ] + }, + "properties": { + "timestamp": "2017-04-14T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16288333, + -1.327538338 + ] + }, + "properties": { + "timestamp": "2017-04-17T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18953167, + -1.282575004 + ] + }, + "properties": { + "timestamp": "2017-04-19T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24652333, + -1.279010004 + ] + }, + "properties": { + "timestamp": "2017-04-22T07:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.274815, + -1.330438338 + ] + }, + "properties": { + "timestamp": "2017-04-24T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24201333, + -1.325435004 + ] + }, + "properties": { + "timestamp": "2017-04-27T07:31:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29066667, + -1.331423338 + ] + }, + "properties": { + "timestamp": "2017-04-29T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37009167, + -1.350513337 + ] + }, + "properties": { + "timestamp": "2017-05-02T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45102833, + -1.305136671 + ] + }, + "properties": { + "timestamp": "2017-05-04T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.458555, + -1.321301671 + ] + }, + "properties": { + "timestamp": "2017-05-07T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.462655, + -1.258891671 + ] + }, + "properties": { + "timestamp": "2017-05-09T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56312, + -1.274591671 + ] + }, + "properties": { + "timestamp": "2017-05-12T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56966667, + -1.242536671 + ] + }, + "properties": { + "timestamp": "2017-05-18T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.571535, + -1.226916671 + ] + }, + "properties": { + "timestamp": "2017-05-19T21:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56303333, + -1.207678338 + ] + }, + "properties": { + "timestamp": "2017-05-20T17:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58657, + -1.233060004 + ] + }, + "properties": { + "timestamp": "2017-05-21T13:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57122833, + -1.238555004 + ] + }, + "properties": { + "timestamp": "2017-05-22T09:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56490167, + -1.209235004 + ] + }, + "properties": { + "timestamp": "2017-05-23T05:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.567085, + -1.237485004 + ] + }, + "properties": { + "timestamp": "2017-05-24T01:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57582, + -1.247010004 + ] + }, + "properties": { + "timestamp": "2017-05-24T21:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56628667, + -1.230663338 + ] + }, + "properties": { + "timestamp": "2017-05-25T17:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57282833, + -1.201573338 + ] + }, + "properties": { + "timestamp": "2017-05-26T13:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52234167, + -1.219925004 + ] + }, + "properties": { + "timestamp": "2017-05-27T09:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.474195, + -1.247228338 + ] + }, + "properties": { + "timestamp": "2017-05-28T05:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44492167, + -1.317560004 + ] + }, + "properties": { + "timestamp": "2017-05-29T01:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35480167, + -1.387481671 + ] + }, + "properties": { + "timestamp": "2017-05-29T21:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34491667, + -1.411130004 + ] + }, + "properties": { + "timestamp": "2017-05-30T17:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34565667, + -1.405145004 + ] + }, + "properties": { + "timestamp": "2017-05-31T13:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30735667, + -1.382026671 + ] + }, + "properties": { + "timestamp": "2017-06-01T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23026833, + -1.348153338 + ] + }, + "properties": { + "timestamp": "2017-06-03T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21025, + -1.304260004 + ] + }, + "properties": { + "timestamp": "2017-06-05T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14996333, + -1.314165004 + ] + }, + "properties": { + "timestamp": "2017-06-06T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06829, + -1.277155004 + ] + }, + "properties": { + "timestamp": "2017-06-08T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12513, + -1.249778338 + ] + }, + "properties": { + "timestamp": "2017-06-10T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.111325, + -1.275173338 + ] + }, + "properties": { + "timestamp": "2017-06-11T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.0873, + -1.291570004 + ] + }, + "properties": { + "timestamp": "2017-06-13T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09618, + -1.311811671 + ] + }, + "properties": { + "timestamp": "2017-06-15T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10422833, + -1.299213338 + ] + }, + "properties": { + "timestamp": "2017-06-16T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11647333, + -1.337665004 + ] + }, + "properties": { + "timestamp": "2017-06-18T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10280667, + -1.314160004 + ] + }, + "properties": { + "timestamp": "2017-06-20T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.100405, + -1.278156671 + ] + }, + "properties": { + "timestamp": "2017-06-21T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.03804833, + -1.245321671 + ] + }, + "properties": { + "timestamp": "2017-06-23T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06820667, + -1.261301671 + ] + }, + "properties": { + "timestamp": "2017-06-25T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.125405, + -1.347241671 + ] + }, + "properties": { + "timestamp": "2017-06-26T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11947167, + -1.391670004 + ] + }, + "properties": { + "timestamp": "2017-06-28T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16191333, + -1.444496671 + ] + }, + "properties": { + "timestamp": "2017-06-30T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18303667, + -1.469236671 + ] + }, + "properties": { + "timestamp": "2017-07-01T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19032, + -1.467950004 + ] + }, + "properties": { + "timestamp": "2017-07-03T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.214925, + -1.484506671 + ] + }, + "properties": { + "timestamp": "2017-07-05T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.231325, + -1.495246671 + ] + }, + "properties": { + "timestamp": "2017-07-06T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15375333, + -1.425401671 + ] + }, + "properties": { + "timestamp": "2017-07-08T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20902333, + -1.383323338 + ] + }, + "properties": { + "timestamp": "2017-07-10T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18358, + -1.392411671 + ] + }, + "properties": { + "timestamp": "2017-07-11T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15318, + -1.375420004 + ] + }, + "properties": { + "timestamp": "2017-07-13T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19912, + -1.357300004 + ] + }, + "properties": { + "timestamp": "2017-07-15T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23764667, + -1.319800004 + ] + }, + "properties": { + "timestamp": "2017-07-16T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.236975, + -1.298061671 + ] + }, + "properties": { + "timestamp": "2017-07-18T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23429667, + -1.319585004 + ] + }, + "properties": { + "timestamp": "2017-07-20T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16855, + -1.231200005 + ] + }, + "properties": { + "timestamp": "2017-07-21T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12708667, + -1.154500005 + ] + }, + "properties": { + "timestamp": "2017-07-23T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12274, + -1.158445005 + ] + }, + "properties": { + "timestamp": "2017-07-25T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12639833, + -1.178293338 + ] + }, + "properties": { + "timestamp": "2017-07-26T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10550667, + -1.161043338 + ] + }, + "properties": { + "timestamp": "2017-07-28T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.102775, + -1.171901671 + ] + }, + "properties": { + "timestamp": "2017-07-30T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1012, + -1.175670005 + ] + }, + "properties": { + "timestamp": "2017-07-31T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.101105, + -1.206476671 + ] + }, + "properties": { + "timestamp": "2017-08-03T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09062167, + -1.189398338 + ] + }, + "properties": { + "timestamp": "2017-08-05T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11550667, + -1.197093338 + ] + }, + "properties": { + "timestamp": "2017-08-08T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17425167, + -1.147105005 + ] + }, + "properties": { + "timestamp": "2017-08-10T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14460167, + -1.187756671 + ] + }, + "properties": { + "timestamp": "2017-08-13T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11802333, + -1.188766671 + ] + }, + "properties": { + "timestamp": "2017-08-15T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18693167, + -1.293370004 + ] + }, + "properties": { + "timestamp": "2017-08-18T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17662667, + -1.306163338 + ] + }, + "properties": { + "timestamp": "2017-08-20T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08697167, + -1.334495004 + ] + }, + "properties": { + "timestamp": "2017-08-23T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06032667, + -1.298558338 + ] + }, + "properties": { + "timestamp": "2017-08-25T15:31:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13628833, + -1.266466671 + ] + }, + "properties": { + "timestamp": "2017-08-28T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19690833, + -1.279865004 + ] + }, + "properties": { + "timestamp": "2017-08-30T15:31:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.150675, + -1.165676671 + ] + }, + "properties": { + "timestamp": "2017-09-02T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18068833, + -1.160013338 + ] + }, + "properties": { + "timestamp": "2017-09-04T15:31:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.185065, + -1.149410005 + ] + }, + "properties": { + "timestamp": "2017-09-07T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19749833, + -1.171360005 + ] + }, + "properties": { + "timestamp": "2017-09-09T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14945, + -1.184290005 + ] + }, + "properties": { + "timestamp": "2017-09-12T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18518167, + -1.153593338 + ] + }, + "properties": { + "timestamp": "2017-09-14T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22709, + -1.136053338 + ] + }, + "properties": { + "timestamp": "2017-09-17T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23084, + -1.122941671 + ] + }, + "properties": { + "timestamp": "2017-09-19T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.238525, + -1.122276671 + ] + }, + "properties": { + "timestamp": "2017-09-22T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23362167, + -1.125810005 + ] + }, + "properties": { + "timestamp": "2017-09-24T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23290833, + -1.128795005 + ] + }, + "properties": { + "timestamp": "2017-09-27T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23406167, + -1.111676671 + ] + }, + "properties": { + "timestamp": "2017-09-29T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22979167, + -1.093671671 + ] + }, + "properties": { + "timestamp": "2017-10-02T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22692167, + -1.094663338 + ] + }, + "properties": { + "timestamp": "2017-10-04T15:31:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23248333, + -1.100618338 + ] + }, + "properties": { + "timestamp": "2017-10-07T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23316833, + -1.095405005 + ] + }, + "properties": { + "timestamp": "2017-10-09T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23404833, + -1.099768338 + ] + }, + "properties": { + "timestamp": "2017-10-12T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19985167, + -1.186463338 + ] + }, + "properties": { + "timestamp": "2017-10-14T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07531833, + -1.291235004 + ] + }, + "properties": { + "timestamp": "2017-10-17T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.116105, + -1.326511671 + ] + }, + "properties": { + "timestamp": "2017-10-19T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16862667, + -1.318453338 + ] + }, + "properties": { + "timestamp": "2017-10-22T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14738833, + -1.345436671 + ] + }, + "properties": { + "timestamp": "2017-10-24T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09497667, + -1.304266671 + ] + }, + "properties": { + "timestamp": "2017-10-27T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.047765, + -1.249965005 + ] + }, + "properties": { + "timestamp": "2017-10-29T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.04696167, + -1.248910005 + ] + }, + "properties": { + "timestamp": "2017-11-01T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.044955, + -1.253036671 + ] + }, + "properties": { + "timestamp": "2017-11-03T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.05547167, + -1.257180005 + ] + }, + "properties": { + "timestamp": "2017-11-06T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07622, + -1.345101671 + ] + }, + "properties": { + "timestamp": "2017-11-08T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10678167, + -1.352883338 + ] + }, + "properties": { + "timestamp": "2017-11-11T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14054, + -1.391600004 + ] + }, + "properties": { + "timestamp": "2017-11-13T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18621, + -1.454098337 + ] + }, + "properties": { + "timestamp": "2017-11-16T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.134245, + -1.392413338 + ] + }, + "properties": { + "timestamp": "2017-11-18T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.134165, + -1.391951671 + ] + }, + "properties": { + "timestamp": "2017-11-21T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08055333, + -1.287441671 + ] + }, + "properties": { + "timestamp": "2017-11-23T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11266833, + -1.237076671 + ] + }, + "properties": { + "timestamp": "2017-11-26T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15110167, + -1.204090005 + ] + }, + "properties": { + "timestamp": "2017-11-28T15:31:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.150905, + -1.286996671 + ] + }, + "properties": { + "timestamp": "2017-12-01T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14739667, + -1.357818338 + ] + }, + "properties": { + "timestamp": "2017-12-03T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17183167, + -1.324348338 + ] + }, + "properties": { + "timestamp": "2017-12-06T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22970667, + -1.309308338 + ] + }, + "properties": { + "timestamp": "2017-12-08T15:31:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29620667, + -1.358841671 + ] + }, + "properties": { + "timestamp": "2017-12-11T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23517667, + -1.268070004 + ] + }, + "properties": { + "timestamp": "2017-12-13T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16252, + -1.183226671 + ] + }, + "properties": { + "timestamp": "2017-12-16T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17665667, + -1.178673338 + ] + }, + "properties": { + "timestamp": "2017-12-18T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12273833, + -1.170668338 + ] + }, + "properties": { + "timestamp": "2017-12-21T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11281833, + -1.185165005 + ] + }, + "properties": { + "timestamp": "2017-12-23T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10127667, + -1.158981671 + ] + }, + "properties": { + "timestamp": "2017-12-26T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09452, + -1.184798338 + ] + }, + "properties": { + "timestamp": "2017-12-28T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07553833, + -1.192108338 + ] + }, + "properties": { + "timestamp": "2017-12-31T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12104167, + -1.198560005 + ] + }, + "properties": { + "timestamp": "2018-01-02T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25428167, + -1.276430004 + ] + }, + "properties": { + "timestamp": "2018-01-05T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38007667, + -1.392203337 + ] + }, + "properties": { + "timestamp": "2018-01-07T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37933833, + -1.375670004 + ] + }, + "properties": { + "timestamp": "2018-01-10T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44783333, + -1.322946671 + ] + }, + "properties": { + "timestamp": "2018-01-12T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45882, + -1.322110004 + ] + }, + "properties": { + "timestamp": "2018-01-15T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46093, + -1.318656671 + ] + }, + "properties": { + "timestamp": "2018-01-17T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45371333, + -1.318200004 + ] + }, + "properties": { + "timestamp": "2018-01-20T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46271667, + -1.330746671 + ] + }, + "properties": { + "timestamp": "2018-01-22T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42172, + -1.356771671 + ] + }, + "properties": { + "timestamp": "2018-01-25T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43526333, + -1.345488337 + ] + }, + "properties": { + "timestamp": "2018-01-27T15:31:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42303333, + -1.317978338 + ] + }, + "properties": { + "timestamp": "2018-01-30T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39315667, + -1.350851671 + ] + }, + "properties": { + "timestamp": "2018-02-01T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36443, + -1.351288337 + ] + }, + "properties": { + "timestamp": "2018-02-03T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27114833, + -1.324821671 + ] + }, + "properties": { + "timestamp": "2018-02-04T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25455667, + -1.312873338 + ] + }, + "properties": { + "timestamp": "2018-02-06T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.260365, + -1.296145004 + ] + }, + "properties": { + "timestamp": "2018-02-08T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25267667, + -1.292556671 + ] + }, + "properties": { + "timestamp": "2018-02-09T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23501667, + -1.292123338 + ] + }, + "properties": { + "timestamp": "2018-02-11T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25848667, + -1.294450004 + ] + }, + "properties": { + "timestamp": "2018-02-13T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24593, + -1.257031671 + ] + }, + "properties": { + "timestamp": "2018-02-14T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15399667, + -1.215515005 + ] + }, + "properties": { + "timestamp": "2018-02-16T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15419, + -1.182803338 + ] + }, + "properties": { + "timestamp": "2018-02-18T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16372833, + -1.180960005 + ] + }, + "properties": { + "timestamp": "2018-02-19T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23306, + -1.265910004 + ] + }, + "properties": { + "timestamp": "2018-02-21T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24704333, + -1.294548338 + ] + }, + "properties": { + "timestamp": "2018-02-23T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25410333, + -1.297181671 + ] + }, + "properties": { + "timestamp": "2018-02-24T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.242105, + -1.289848338 + ] + }, + "properties": { + "timestamp": "2018-02-26T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25407833, + -1.290305004 + ] + }, + "properties": { + "timestamp": "2018-02-28T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29278333, + -1.330060004 + ] + }, + "properties": { + "timestamp": "2018-03-01T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28888667, + -1.320346671 + ] + }, + "properties": { + "timestamp": "2018-03-03T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28991833, + -1.321781671 + ] + }, + "properties": { + "timestamp": "2018-03-05T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.286545, + -1.313083338 + ] + }, + "properties": { + "timestamp": "2018-03-06T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28306, + -1.309135004 + ] + }, + "properties": { + "timestamp": "2018-03-08T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28253667, + -1.316576671 + ] + }, + "properties": { + "timestamp": "2018-03-10T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28957167, + -1.309530004 + ] + }, + "properties": { + "timestamp": "2018-03-11T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28157, + -1.337936671 + ] + }, + "properties": { + "timestamp": "2018-03-13T11:31:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33795833, + -1.323176671 + ] + }, + "properties": { + "timestamp": "2018-03-15T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34189667, + -1.321336671 + ] + }, + "properties": { + "timestamp": "2018-03-17T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34163667, + -1.322151671 + ] + }, + "properties": { + "timestamp": "2018-03-20T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34167167, + -1.322923338 + ] + }, + "properties": { + "timestamp": "2018-03-22T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34010833, + -1.322485004 + ] + }, + "properties": { + "timestamp": "2018-03-25T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34275833, + -1.326363338 + ] + }, + "properties": { + "timestamp": "2018-03-27T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33874333, + -1.320696671 + ] + }, + "properties": { + "timestamp": "2018-03-30T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34078333, + -1.320251671 + ] + }, + "properties": { + "timestamp": "2018-04-01T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34014167, + -1.323053338 + ] + }, + "properties": { + "timestamp": "2018-04-04T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.343785, + -1.324603338 + ] + }, + "properties": { + "timestamp": "2018-04-06T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.338605, + -1.320833338 + ] + }, + "properties": { + "timestamp": "2018-04-09T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33694167, + -1.323498338 + ] + }, + "properties": { + "timestamp": "2018-04-11T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33998833, + -1.322788338 + ] + }, + "properties": { + "timestamp": "2018-04-14T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33997167, + -1.319990004 + ] + }, + "properties": { + "timestamp": "2018-04-16T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34060833, + -1.322080004 + ] + }, + "properties": { + "timestamp": "2018-04-19T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34225, + -1.325501671 + ] + }, + "properties": { + "timestamp": "2018-04-22T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33925833, + -1.321318338 + ] + }, + "properties": { + "timestamp": "2018-04-24T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33981333, + -1.320200004 + ] + }, + "properties": { + "timestamp": "2018-04-27T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33927833, + -1.322986671 + ] + }, + "properties": { + "timestamp": "2018-04-29T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34156167, + -1.324410004 + ] + }, + "properties": { + "timestamp": "2018-05-02T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.337885, + -1.320731671 + ] + }, + "properties": { + "timestamp": "2018-05-04T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34065333, + -1.324141671 + ] + }, + "properties": { + "timestamp": "2018-05-07T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33961667, + -1.322668338 + ] + }, + "properties": { + "timestamp": "2018-05-09T15:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34068333, + -1.323658338 + ] + }, + "properties": { + "timestamp": "2018-05-12T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33823, + -1.320815004 + ] + }, + "properties": { + "timestamp": "2018-05-14T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34127833, + -1.322146671 + ] + }, + "properties": { + "timestamp": "2018-05-17T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33785667, + -1.320621671 + ] + }, + "properties": { + "timestamp": "2018-05-19T15:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34223833, + -1.325135004 + ] + }, + "properties": { + "timestamp": "2018-05-22T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33882167, + -1.322378338 + ] + }, + "properties": { + "timestamp": "2018-05-24T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34093667, + -1.323176671 + ] + }, + "properties": { + "timestamp": "2018-05-27T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33894833, + -1.322773338 + ] + }, + "properties": { + "timestamp": "2018-05-29T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34141, + -1.322200004 + ] + }, + "properties": { + "timestamp": "2018-06-01T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34027167, + -1.319871671 + ] + }, + "properties": { + "timestamp": "2018-06-02T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33758833, + -1.320751671 + ] + }, + "properties": { + "timestamp": "2018-06-04T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34107333, + -1.322165004 + ] + }, + "properties": { + "timestamp": "2018-06-06T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34018667, + -1.320345004 + ] + }, + "properties": { + "timestamp": "2018-06-07T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33970833, + -1.319561671 + ] + }, + "properties": { + "timestamp": "2018-06-09T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34024667, + -1.320148338 + ] + }, + "properties": { + "timestamp": "2018-06-11T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3419, + -1.323190004 + ] + }, + "properties": { + "timestamp": "2018-06-12T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34093167, + -1.322360004 + ] + }, + "properties": { + "timestamp": "2018-06-14T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34211833, + -1.323963338 + ] + }, + "properties": { + "timestamp": "2018-06-16T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3421, + -1.322013338 + ] + }, + "properties": { + "timestamp": "2018-06-17T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33846833, + -1.323678338 + ] + }, + "properties": { + "timestamp": "2018-06-19T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34235167, + -1.324935004 + ] + }, + "properties": { + "timestamp": "2018-06-21T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34400833, + -1.327773338 + ] + }, + "properties": { + "timestamp": "2018-06-22T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34049333, + -1.325165004 + ] + }, + "properties": { + "timestamp": "2018-06-24T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34246667, + -1.325020004 + ] + }, + "properties": { + "timestamp": "2018-06-26T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34233333, + -1.328585004 + ] + }, + "properties": { + "timestamp": "2018-06-27T19:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34070167, + -1.325491671 + ] + }, + "properties": { + "timestamp": "2018-06-29T11:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34257167, + -1.324933338 + ] + }, + "properties": { + "timestamp": "2018-07-01T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.340035, + -1.325671671 + ] + }, + "properties": { + "timestamp": "2018-07-02T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.339185, + -1.321511671 + ] + }, + "properties": { + "timestamp": "2018-07-04T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33861333, + -1.322643338 + ] + }, + "properties": { + "timestamp": "2018-07-06T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34068667, + -1.322681671 + ] + }, + "properties": { + "timestamp": "2018-07-07T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33927, + -1.322470004 + ] + }, + "properties": { + "timestamp": "2018-07-09T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34138, + -1.322700004 + ] + }, + "properties": { + "timestamp": "2018-07-11T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33970833, + -1.323305004 + ] + }, + "properties": { + "timestamp": "2018-07-12T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34033833, + -1.320230004 + ] + }, + "properties": { + "timestamp": "2018-07-14T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33743667, + -1.321838338 + ] + }, + "properties": { + "timestamp": "2018-07-16T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33484833, + -1.330120004 + ] + }, + "properties": { + "timestamp": "2018-07-17T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34196167, + -1.321693338 + ] + }, + "properties": { + "timestamp": "2018-07-19T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34218667, + -1.322373338 + ] + }, + "properties": { + "timestamp": "2018-07-21T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34146167, + -1.321536671 + ] + }, + "properties": { + "timestamp": "2018-07-24T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.340805, + -1.321225004 + ] + }, + "properties": { + "timestamp": "2018-07-25T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34109333, + -1.322336671 + ] + }, + "properties": { + "timestamp": "2018-07-27T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34006833, + -1.319188338 + ] + }, + "properties": { + "timestamp": "2018-07-29T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33993, + -1.321960004 + ] + }, + "properties": { + "timestamp": "2018-07-30T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33966833, + -1.319903338 + ] + }, + "properties": { + "timestamp": "2018-08-01T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34088333, + -1.320688338 + ] + }, + "properties": { + "timestamp": "2018-08-04T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34158, + -1.321753338 + ] + }, + "properties": { + "timestamp": "2018-08-06T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33398, + -1.322495004 + ] + }, + "properties": { + "timestamp": "2018-08-09T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34011667, + -1.319513338 + ] + }, + "properties": { + "timestamp": "2018-08-11T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33992167, + -1.319793338 + ] + }, + "properties": { + "timestamp": "2018-08-14T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.338805, + -1.319761671 + ] + }, + "properties": { + "timestamp": "2018-08-16T15:31:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34108333, + -1.320361671 + ] + }, + "properties": { + "timestamp": "2018-08-19T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34031833, + -1.322976671 + ] + }, + "properties": { + "timestamp": "2018-08-21T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34095667, + -1.321696671 + ] + }, + "properties": { + "timestamp": "2018-08-24T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33950833, + -1.320698338 + ] + }, + "properties": { + "timestamp": "2018-08-26T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34114667, + -1.320640004 + ] + }, + "properties": { + "timestamp": "2018-08-29T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33987167, + -1.320050004 + ] + }, + "properties": { + "timestamp": "2018-08-31T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34145, + -1.321685004 + ] + }, + "properties": { + "timestamp": "2018-09-03T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33867333, + -1.320450004 + ] + }, + "properties": { + "timestamp": "2018-09-05T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33952667, + -1.320398338 + ] + }, + "properties": { + "timestamp": "2018-09-08T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.338705, + -1.322046671 + ] + }, + "properties": { + "timestamp": "2018-09-10T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33840333, + -1.322143338 + ] + }, + "properties": { + "timestamp": "2018-09-13T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34105667, + -1.321040004 + ] + }, + "properties": { + "timestamp": "2018-09-15T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33884833, + -1.321736671 + ] + }, + "properties": { + "timestamp": "2018-09-18T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34022333, + -1.324931671 + ] + }, + "properties": { + "timestamp": "2018-09-20T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33781833, + -1.321666671 + ] + }, + "properties": { + "timestamp": "2018-09-23T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33979, + -1.324296671 + ] + }, + "properties": { + "timestamp": "2018-09-25T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33704, + -1.323816671 + ] + }, + "properties": { + "timestamp": "2018-09-28T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.339785, + -1.324566671 + ] + }, + "properties": { + "timestamp": "2018-09-30T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.341165, + -1.321540004 + ] + }, + "properties": { + "timestamp": "2018-10-03T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34034667, + -1.324265004 + ] + }, + "properties": { + "timestamp": "2018-10-05T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33919167, + -1.321578338 + ] + }, + "properties": { + "timestamp": "2018-10-08T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33740833, + -1.321593338 + ] + }, + "properties": { + "timestamp": "2018-10-10T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34023167, + -1.323066671 + ] + }, + "properties": { + "timestamp": "2018-10-13T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34034667, + -1.319603338 + ] + }, + "properties": { + "timestamp": "2018-10-15T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33951333, + -1.322416671 + ] + }, + "properties": { + "timestamp": "2018-10-18T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.339265, + -1.324053338 + ] + }, + "properties": { + "timestamp": "2018-10-20T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33783833, + -1.321426671 + ] + }, + "properties": { + "timestamp": "2018-10-23T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.336655, + -1.321570004 + ] + }, + "properties": { + "timestamp": "2018-10-25T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34087167, + -1.324876671 + ] + }, + "properties": { + "timestamp": "2018-10-28T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33810833, + -1.320456671 + ] + }, + "properties": { + "timestamp": "2018-10-30T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33684667, + -1.322556671 + ] + }, + "properties": { + "timestamp": "2018-11-02T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34147167, + -1.322456671 + ] + }, + "properties": { + "timestamp": "2018-11-04T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33615667, + -1.323215004 + ] + }, + "properties": { + "timestamp": "2018-11-07T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34254333, + -1.324430004 + ] + }, + "properties": { + "timestamp": "2018-11-09T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22701833, + -1.302528338 + ] + }, + "properties": { + "timestamp": "2018-11-12T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22518333, + -1.293128338 + ] + }, + "properties": { + "timestamp": "2018-11-14T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.150235, + -1.362638338 + ] + }, + "properties": { + "timestamp": "2018-11-17T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.177465, + -1.231271671 + ] + }, + "properties": { + "timestamp": "2018-11-19T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.171875, + -1.232393338 + ] + }, + "properties": { + "timestamp": "2018-11-23T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W70", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47445, + -1.49714167 + ] + }, + "properties": { + "timestamp": "2017-03-15T03:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47459167, + -1.499615004 + ] + }, + "properties": { + "timestamp": "2017-03-17T15:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47566, + -1.48420667 + ] + }, + "properties": { + "timestamp": "2017-03-22T03:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47491667, + -1.47949667 + ] + }, + "properties": { + "timestamp": "2017-03-24T15:31:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48669833, + -1.496140004 + ] + }, + "properties": { + "timestamp": "2017-03-27T03:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49831, + -1.500955004 + ] + }, + "properties": { + "timestamp": "2017-03-29T15:30:00", + "year": 2017, + "month": 3, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47627833, + -1.483270004 + ] + }, + "properties": { + "timestamp": "2017-04-01T03:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48170833, + -1.49186667 + ] + }, + "properties": { + "timestamp": "2017-04-03T15:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48151167, + -1.482275004 + ] + }, + "properties": { + "timestamp": "2017-04-06T03:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47437167, + -1.482653337 + ] + }, + "properties": { + "timestamp": "2017-04-08T15:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48337667, + -1.509155004 + ] + }, + "properties": { + "timestamp": "2017-04-11T03:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48545667, + -1.506713337 + ] + }, + "properties": { + "timestamp": "2017-04-13T15:31:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W71", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15966833, + -1.234043338 + ] + }, + "properties": { + "timestamp": "2017-04-29T23:30:00", + "year": 2017, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.174805, + -1.228290005 + ] + }, + "properties": { + "timestamp": "2017-05-02T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15877, + -1.233826671 + ] + }, + "properties": { + "timestamp": "2017-05-04T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15896, + -1.239308338 + ] + }, + "properties": { + "timestamp": "2017-05-07T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15801167, + -1.232958338 + ] + }, + "properties": { + "timestamp": "2017-05-09T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15980167, + -1.240016671 + ] + }, + "properties": { + "timestamp": "2017-05-12T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15598167, + -1.237025005 + ] + }, + "properties": { + "timestamp": "2017-05-14T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15570833, + -1.232733338 + ] + }, + "properties": { + "timestamp": "2017-05-17T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26069, + -1.248428338 + ] + }, + "properties": { + "timestamp": "2017-05-19T23:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51698167, + -1.238176671 + ] + }, + "properties": { + "timestamp": "2017-05-22T07:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52659333, + -1.229915004 + ] + }, + "properties": { + "timestamp": "2017-05-23T09:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54981, + -1.253980004 + ] + }, + "properties": { + "timestamp": "2017-05-24T05:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55684667, + -1.248333338 + ] + }, + "properties": { + "timestamp": "2017-05-25T01:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55627833, + -1.249363338 + ] + }, + "properties": { + "timestamp": "2017-05-25T21:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55467167, + -1.250455004 + ] + }, + "properties": { + "timestamp": "2017-05-26T17:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55496333, + -1.249278338 + ] + }, + "properties": { + "timestamp": "2017-05-27T13:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54870333, + -1.236518338 + ] + }, + "properties": { + "timestamp": "2017-05-28T09:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.547815, + -1.236630004 + ] + }, + "properties": { + "timestamp": "2017-05-29T05:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55532333, + -1.237506671 + ] + }, + "properties": { + "timestamp": "2017-05-30T01:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55533167, + -1.237663338 + ] + }, + "properties": { + "timestamp": "2017-05-30T21:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56655, + -1.238290004 + ] + }, + "properties": { + "timestamp": "2017-05-31T17:30:00", + "year": 2017, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.636595, + -1.247103338 + ] + }, + "properties": { + "timestamp": "2017-06-02T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68868667, + -1.224520004 + ] + }, + "properties": { + "timestamp": "2017-06-03T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81881, + -1.272353337 + ] + }, + "properties": { + "timestamp": "2017-06-05T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81923167, + -1.272633337 + ] + }, + "properties": { + "timestamp": "2017-06-07T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81936833, + -1.272738337 + ] + }, + "properties": { + "timestamp": "2017-06-08T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.816515, + -1.272125004 + ] + }, + "properties": { + "timestamp": "2017-06-10T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81926833, + -1.272116671 + ] + }, + "properties": { + "timestamp": "2017-06-12T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82843, + -1.275626671 + ] + }, + "properties": { + "timestamp": "2017-06-13T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.832995, + -1.268716671 + ] + }, + "properties": { + "timestamp": "2017-06-15T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83532667, + -1.271005004 + ] + }, + "properties": { + "timestamp": "2017-06-17T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81912333, + -1.272871671 + ] + }, + "properties": { + "timestamp": "2017-06-18T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83678667, + -1.268333337 + ] + }, + "properties": { + "timestamp": "2017-06-20T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83899, + -1.271511671 + ] + }, + "properties": { + "timestamp": "2017-06-22T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83460167, + -1.276328337 + ] + }, + "properties": { + "timestamp": "2017-06-23T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81613667, + -1.269628337 + ] + }, + "properties": { + "timestamp": "2017-06-25T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.84086167, + -1.242531671 + ] + }, + "properties": { + "timestamp": "2017-06-27T03:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.85506, + -1.231736671 + ] + }, + "properties": { + "timestamp": "2017-06-28T19:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83159167, + -1.263243337 + ] + }, + "properties": { + "timestamp": "2017-06-30T11:30:00", + "year": 2017, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80645167, + -1.225875004 + ] + }, + "properties": { + "timestamp": "2017-07-02T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.85599833, + -1.231923337 + ] + }, + "properties": { + "timestamp": "2017-07-03T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.831555, + -1.267525004 + ] + }, + "properties": { + "timestamp": "2017-07-05T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.88991, + -1.277203337 + ] + }, + "properties": { + "timestamp": "2017-07-07T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.89069333, + -1.276666671 + ] + }, + "properties": { + "timestamp": "2017-07-08T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.84457833, + -1.258735004 + ] + }, + "properties": { + "timestamp": "2017-07-10T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.87439833, + -1.235651671 + ] + }, + "properties": { + "timestamp": "2017-07-12T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.87748167, + -1.239083337 + ] + }, + "properties": { + "timestamp": "2017-07-13T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.875325, + -1.240305004 + ] + }, + "properties": { + "timestamp": "2017-07-15T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.660655, + -1.298313337 + ] + }, + "properties": { + "timestamp": "2017-07-17T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46772667, + -1.357268337 + ] + }, + "properties": { + "timestamp": "2017-07-18T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46067667, + -1.351568337 + ] + }, + "properties": { + "timestamp": "2017-07-20T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31918833, + -1.391031671 + ] + }, + "properties": { + "timestamp": "2017-07-22T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23146833, + -1.298160004 + ] + }, + "properties": { + "timestamp": "2017-07-23T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.150035, + -1.232756671 + ] + }, + "properties": { + "timestamp": "2017-07-25T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18485167, + -1.217830005 + ] + }, + "properties": { + "timestamp": "2017-07-27T03:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.211005, + -1.160061671 + ] + }, + "properties": { + "timestamp": "2017-07-28T19:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.201585, + -1.147033338 + ] + }, + "properties": { + "timestamp": "2017-07-30T11:30:00", + "year": 2017, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17449833, + -1.128523338 + ] + }, + "properties": { + "timestamp": "2017-08-01T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19814833, + -1.125685005 + ] + }, + "properties": { + "timestamp": "2017-08-03T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20678, + -1.127463338 + ] + }, + "properties": { + "timestamp": "2017-08-06T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21118, + -1.130106671 + ] + }, + "properties": { + "timestamp": "2017-08-08T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22413167, + -1.133453338 + ] + }, + "properties": { + "timestamp": "2017-08-11T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21441333, + -1.133940005 + ] + }, + "properties": { + "timestamp": "2017-08-13T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21519, + -1.129345005 + ] + }, + "properties": { + "timestamp": "2017-08-16T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20283667, + -1.164576671 + ] + }, + "properties": { + "timestamp": "2017-08-18T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17616833, + -1.181833338 + ] + }, + "properties": { + "timestamp": "2017-08-21T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.209555, + -1.242153338 + ] + }, + "properties": { + "timestamp": "2017-08-23T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.205555, + -1.226265005 + ] + }, + "properties": { + "timestamp": "2017-08-26T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.212005, + -1.237361671 + ] + }, + "properties": { + "timestamp": "2017-08-28T15:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21034167, + -1.229206671 + ] + }, + "properties": { + "timestamp": "2017-08-31T03:30:00", + "year": 2017, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21031833, + -1.250125004 + ] + }, + "properties": { + "timestamp": "2017-09-02T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22523333, + -1.243905004 + ] + }, + "properties": { + "timestamp": "2017-09-05T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.228295, + -1.246041671 + ] + }, + "properties": { + "timestamp": "2017-09-07T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22543, + -1.246155004 + ] + }, + "properties": { + "timestamp": "2017-09-10T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22587667, + -1.244020004 + ] + }, + "properties": { + "timestamp": "2017-09-12T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22446167, + -1.246073338 + ] + }, + "properties": { + "timestamp": "2017-09-15T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22134167, + -1.248805004 + ] + }, + "properties": { + "timestamp": "2017-09-17T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.261925, + -1.267135004 + ] + }, + "properties": { + "timestamp": "2017-09-20T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.288865, + -1.349340004 + ] + }, + "properties": { + "timestamp": "2017-09-22T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28696167, + -1.339166671 + ] + }, + "properties": { + "timestamp": "2017-09-25T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17828667, + -1.220286671 + ] + }, + "properties": { + "timestamp": "2017-09-27T15:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21871167, + -1.239396671 + ] + }, + "properties": { + "timestamp": "2017-09-30T03:30:00", + "year": 2017, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17951667, + -1.219180005 + ] + }, + "properties": { + "timestamp": "2017-10-02T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19773333, + -1.246428338 + ] + }, + "properties": { + "timestamp": "2017-10-05T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19805, + -1.233516671 + ] + }, + "properties": { + "timestamp": "2017-10-07T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19502, + -1.238666671 + ] + }, + "properties": { + "timestamp": "2017-10-10T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20615333, + -1.240233338 + ] + }, + "properties": { + "timestamp": "2017-10-12T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16001833, + -1.241023338 + ] + }, + "properties": { + "timestamp": "2017-10-15T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17174, + -1.264730004 + ] + }, + "properties": { + "timestamp": "2017-10-17T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.164465, + -1.322958338 + ] + }, + "properties": { + "timestamp": "2017-10-20T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15729667, + -1.337243338 + ] + }, + "properties": { + "timestamp": "2017-10-22T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16455, + -1.327365004 + ] + }, + "properties": { + "timestamp": "2017-10-25T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14550833, + -1.348931671 + ] + }, + "properties": { + "timestamp": "2017-10-27T15:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07293667, + -1.283000004 + ] + }, + "properties": { + "timestamp": "2017-10-30T03:30:00", + "year": 2017, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09498, + -1.310691671 + ] + }, + "properties": { + "timestamp": "2017-11-01T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15668167, + -1.349570004 + ] + }, + "properties": { + "timestamp": "2017-11-04T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15392833, + -1.348410004 + ] + }, + "properties": { + "timestamp": "2017-11-06T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18995667, + -1.274071671 + ] + }, + "properties": { + "timestamp": "2017-11-09T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.160285, + -1.239883338 + ] + }, + "properties": { + "timestamp": "2017-11-11T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15897, + -1.244735005 + ] + }, + "properties": { + "timestamp": "2017-11-14T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16234667, + -1.245235005 + ] + }, + "properties": { + "timestamp": "2017-11-16T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17412667, + -1.238248338 + ] + }, + "properties": { + "timestamp": "2017-11-19T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13530833, + -1.277850004 + ] + }, + "properties": { + "timestamp": "2017-11-21T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10501667, + -1.270870004 + ] + }, + "properties": { + "timestamp": "2017-11-24T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13318, + -1.263893338 + ] + }, + "properties": { + "timestamp": "2017-11-26T15:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17516667, + -1.238391671 + ] + }, + "properties": { + "timestamp": "2017-11-29T03:30:00", + "year": 2017, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.178165, + -1.239668338 + ] + }, + "properties": { + "timestamp": "2017-12-01T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17423833, + -1.237446671 + ] + }, + "properties": { + "timestamp": "2017-12-04T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17486333, + -1.236228338 + ] + }, + "properties": { + "timestamp": "2017-12-06T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17605833, + -1.241035005 + ] + }, + "properties": { + "timestamp": "2017-12-09T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18007167, + -1.241323338 + ] + }, + "properties": { + "timestamp": "2017-12-11T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.178265, + -1.237336671 + ] + }, + "properties": { + "timestamp": "2017-12-14T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17826667, + -1.240625005 + ] + }, + "properties": { + "timestamp": "2017-12-16T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17493, + -1.225253338 + ] + }, + "properties": { + "timestamp": "2017-12-19T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13167333, + -1.185375005 + ] + }, + "properties": { + "timestamp": "2017-12-21T15:31:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1597, + -1.173525005 + ] + }, + "properties": { + "timestamp": "2017-12-24T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12468167, + -1.176810005 + ] + }, + "properties": { + "timestamp": "2017-12-26T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12026333, + -1.202021671 + ] + }, + "properties": { + "timestamp": "2017-12-29T03:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12319833, + -1.197401671 + ] + }, + "properties": { + "timestamp": "2017-12-31T15:30:00", + "year": 2017, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12627167, + -1.207958338 + ] + }, + "properties": { + "timestamp": "2018-01-03T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19443667, + -1.164435005 + ] + }, + "properties": { + "timestamp": "2018-01-05T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20669, + -1.161900005 + ] + }, + "properties": { + "timestamp": "2018-01-08T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19918, + -1.167370005 + ] + }, + "properties": { + "timestamp": "2018-01-10T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22033333, + -1.191385005 + ] + }, + "properties": { + "timestamp": "2018-01-13T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22892833, + -1.199473338 + ] + }, + "properties": { + "timestamp": "2018-01-15T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28591833, + -1.288438338 + ] + }, + "properties": { + "timestamp": "2018-01-18T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.307725, + -1.304230004 + ] + }, + "properties": { + "timestamp": "2018-01-20T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.309175, + -1.300038338 + ] + }, + "properties": { + "timestamp": "2018-01-23T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30625, + -1.300751671 + ] + }, + "properties": { + "timestamp": "2018-01-25T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31186833, + -1.299296671 + ] + }, + "properties": { + "timestamp": "2018-01-28T03:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30549833, + -1.299546671 + ] + }, + "properties": { + "timestamp": "2018-01-30T15:30:00", + "year": 2018, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40392, + -1.331980004 + ] + }, + "properties": { + "timestamp": "2018-02-01T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36772833, + -1.364370004 + ] + }, + "properties": { + "timestamp": "2018-02-03T11:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37352167, + -1.362216671 + ] + }, + "properties": { + "timestamp": "2018-02-05T03:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37559833, + -1.352808337 + ] + }, + "properties": { + "timestamp": "2018-02-06T19:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38101667, + -1.347781671 + ] + }, + "properties": { + "timestamp": "2018-02-08T15:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36765, + -1.370900004 + ] + }, + "properties": { + "timestamp": "2018-02-10T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.371335, + -1.356625004 + ] + }, + "properties": { + "timestamp": "2018-02-11T23:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.369305, + -1.364938337 + ] + }, + "properties": { + "timestamp": "2018-02-13T15:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39282333, + -1.365805004 + ] + }, + "properties": { + "timestamp": "2018-02-15T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41007833, + -1.321075004 + ] + }, + "properties": { + "timestamp": "2018-02-16T23:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39988667, + -1.377851671 + ] + }, + "properties": { + "timestamp": "2018-02-18T15:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45367667, + -1.354821671 + ] + }, + "properties": { + "timestamp": "2018-02-20T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45336, + -1.353950004 + ] + }, + "properties": { + "timestamp": "2018-02-21T23:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.451755, + -1.355570004 + ] + }, + "properties": { + "timestamp": "2018-02-23T15:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4541, + -1.355311671 + ] + }, + "properties": { + "timestamp": "2018-02-25T07:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45276667, + -1.354073337 + ] + }, + "properties": { + "timestamp": "2018-02-26T23:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.453505, + -1.354500004 + ] + }, + "properties": { + "timestamp": "2018-02-28T15:30:00", + "year": 2018, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4517, + -1.354571671 + ] + }, + "properties": { + "timestamp": "2018-03-02T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48040333, + -1.320861671 + ] + }, + "properties": { + "timestamp": "2018-03-03T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62325333, + -1.271610004 + ] + }, + "properties": { + "timestamp": "2018-03-05T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66945, + -1.268440004 + ] + }, + "properties": { + "timestamp": "2018-03-07T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81333667, + -1.258950004 + ] + }, + "properties": { + "timestamp": "2018-03-08T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.831315, + -1.261760004 + ] + }, + "properties": { + "timestamp": "2018-03-10T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83427167, + -1.269020004 + ] + }, + "properties": { + "timestamp": "2018-03-12T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83458667, + -1.267721671 + ] + }, + "properties": { + "timestamp": "2018-03-13T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.835, + -1.267416671 + ] + }, + "properties": { + "timestamp": "2018-03-15T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83456667, + -1.267880004 + ] + }, + "properties": { + "timestamp": "2018-03-18T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76874833, + -1.286818337 + ] + }, + "properties": { + "timestamp": "2018-03-20T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81314667, + -1.271850004 + ] + }, + "properties": { + "timestamp": "2018-03-23T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81952833, + -1.272786671 + ] + }, + "properties": { + "timestamp": "2018-03-25T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81558333, + -1.273058337 + ] + }, + "properties": { + "timestamp": "2018-03-28T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81633667, + -1.273648337 + ] + }, + "properties": { + "timestamp": "2018-03-30T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78575667, + -1.285890004 + ] + }, + "properties": { + "timestamp": "2018-04-02T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81939333, + -1.272968337 + ] + }, + "properties": { + "timestamp": "2018-04-04T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83271167, + -1.272335004 + ] + }, + "properties": { + "timestamp": "2018-04-07T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82988333, + -1.274985004 + ] + }, + "properties": { + "timestamp": "2018-04-09T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83329, + -1.271893337 + ] + }, + "properties": { + "timestamp": "2018-04-12T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82957333, + -1.274591671 + ] + }, + "properties": { + "timestamp": "2018-04-14T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83132833, + -1.277188337 + ] + }, + "properties": { + "timestamp": "2018-04-17T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83138667, + -1.278218337 + ] + }, + "properties": { + "timestamp": "2018-04-19T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.831415, + -1.277118337 + ] + }, + "properties": { + "timestamp": "2018-04-22T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83201167, + -1.278740004 + ] + }, + "properties": { + "timestamp": "2018-04-24T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83094333, + -1.277150004 + ] + }, + "properties": { + "timestamp": "2018-04-27T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83271333, + -1.280746671 + ] + }, + "properties": { + "timestamp": "2018-04-29T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.830315, + -1.273633337 + ] + }, + "properties": { + "timestamp": "2018-05-02T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83237167, + -1.282725004 + ] + }, + "properties": { + "timestamp": "2018-05-04T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.8311, + -1.279218337 + ] + }, + "properties": { + "timestamp": "2018-05-07T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83281333, + -1.280978337 + ] + }, + "properties": { + "timestamp": "2018-05-09T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83024833, + -1.278041671 + ] + }, + "properties": { + "timestamp": "2018-05-12T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83297833, + -1.279816671 + ] + }, + "properties": { + "timestamp": "2018-05-14T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.830805, + -1.279888337 + ] + }, + "properties": { + "timestamp": "2018-05-17T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83325, + -1.280733337 + ] + }, + "properties": { + "timestamp": "2018-05-19T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83117833, + -1.279036671 + ] + }, + "properties": { + "timestamp": "2018-05-22T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83185833, + -1.279670004 + ] + }, + "properties": { + "timestamp": "2018-05-24T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83099667, + -1.278395004 + ] + }, + "properties": { + "timestamp": "2018-05-27T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83045833, + -1.279816671 + ] + }, + "properties": { + "timestamp": "2018-05-29T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82889333, + -1.278670004 + ] + }, + "properties": { + "timestamp": "2018-06-01T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83326333, + -1.279673337 + ] + }, + "properties": { + "timestamp": "2018-06-02T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82671, + -1.279238337 + ] + }, + "properties": { + "timestamp": "2018-06-04T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82837, + -1.280163337 + ] + }, + "properties": { + "timestamp": "2018-06-06T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82794667, + -1.278865004 + ] + }, + "properties": { + "timestamp": "2018-06-07T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82852167, + -1.275995004 + ] + }, + "properties": { + "timestamp": "2018-06-09T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82987667, + -1.280458337 + ] + }, + "properties": { + "timestamp": "2018-06-11T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83240833, + -1.279331671 + ] + }, + "properties": { + "timestamp": "2018-06-12T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83002167, + -1.278426671 + ] + }, + "properties": { + "timestamp": "2018-06-14T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82836, + -1.279976671 + ] + }, + "properties": { + "timestamp": "2018-06-16T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83278333, + -1.280365004 + ] + }, + "properties": { + "timestamp": "2018-06-17T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83163333, + -1.278126671 + ] + }, + "properties": { + "timestamp": "2018-06-19T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83094833, + -1.279610004 + ] + }, + "properties": { + "timestamp": "2018-06-21T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83054833, + -1.279885004 + ] + }, + "properties": { + "timestamp": "2018-06-22T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83032833, + -1.275343337 + ] + }, + "properties": { + "timestamp": "2018-06-24T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82977, + -1.281246671 + ] + }, + "properties": { + "timestamp": "2018-06-26T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83040333, + -1.279766671 + ] + }, + "properties": { + "timestamp": "2018-06-27T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82806, + -1.280478337 + ] + }, + "properties": { + "timestamp": "2018-06-29T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83119, + -1.276115004 + ] + }, + "properties": { + "timestamp": "2018-07-01T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82757167, + -1.279480004 + ] + }, + "properties": { + "timestamp": "2018-07-02T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82853667, + -1.278171671 + ] + }, + "properties": { + "timestamp": "2018-07-04T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82885833, + -1.280331671 + ] + }, + "properties": { + "timestamp": "2018-07-06T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.827445, + -1.280131671 + ] + }, + "properties": { + "timestamp": "2018-07-07T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82830667, + -1.279811671 + ] + }, + "properties": { + "timestamp": "2018-07-09T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82833, + -1.279266671 + ] + }, + "properties": { + "timestamp": "2018-07-11T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.827395, + -1.280173337 + ] + }, + "properties": { + "timestamp": "2018-07-12T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83044333, + -1.280230004 + ] + }, + "properties": { + "timestamp": "2018-07-14T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82835167, + -1.279276671 + ] + }, + "properties": { + "timestamp": "2018-07-16T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82759167, + -1.278333337 + ] + }, + "properties": { + "timestamp": "2018-07-17T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82927167, + -1.280771671 + ] + }, + "properties": { + "timestamp": "2018-07-19T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82911167, + -1.279511671 + ] + }, + "properties": { + "timestamp": "2018-07-21T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76544667, + -1.287091671 + ] + }, + "properties": { + "timestamp": "2018-07-22T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79680167, + -1.282800004 + ] + }, + "properties": { + "timestamp": "2018-07-24T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83080167, + -1.279836671 + ] + }, + "properties": { + "timestamp": "2018-07-26T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82716, + -1.280096671 + ] + }, + "properties": { + "timestamp": "2018-07-27T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81367667, + -1.261055004 + ] + }, + "properties": { + "timestamp": "2018-07-29T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.830615, + -1.276705004 + ] + }, + "properties": { + "timestamp": "2018-07-31T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83286, + -1.272160004 + ] + }, + "properties": { + "timestamp": "2018-08-02T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82004667, + -1.273005004 + ] + }, + "properties": { + "timestamp": "2018-08-04T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81303333, + -1.269225004 + ] + }, + "properties": { + "timestamp": "2018-08-07T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82094, + -1.270748337 + ] + }, + "properties": { + "timestamp": "2018-08-09T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81052167, + -1.264748337 + ] + }, + "properties": { + "timestamp": "2018-08-12T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77245667, + -1.285305004 + ] + }, + "properties": { + "timestamp": "2018-08-14T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81500833, + -1.271126671 + ] + }, + "properties": { + "timestamp": "2018-08-17T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83324, + -1.279861671 + ] + }, + "properties": { + "timestamp": "2018-08-19T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83205667, + -1.266395004 + ] + }, + "properties": { + "timestamp": "2018-08-22T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83156333, + -1.279620004 + ] + }, + "properties": { + "timestamp": "2018-08-24T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.835415, + -1.268698337 + ] + }, + "properties": { + "timestamp": "2018-08-27T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83157833, + -1.276498337 + ] + }, + "properties": { + "timestamp": "2018-08-29T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83399167, + -1.267521671 + ] + }, + "properties": { + "timestamp": "2018-09-01T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82810333, + -1.280780004 + ] + }, + "properties": { + "timestamp": "2018-09-03T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83454833, + -1.268525004 + ] + }, + "properties": { + "timestamp": "2018-09-06T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81922833, + -1.272653337 + ] + }, + "properties": { + "timestamp": "2018-09-08T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83431667, + -1.268080004 + ] + }, + "properties": { + "timestamp": "2018-09-11T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.84085667, + -1.243161671 + ] + }, + "properties": { + "timestamp": "2018-09-13T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83438333, + -1.268320004 + ] + }, + "properties": { + "timestamp": "2018-09-16T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82300333, + -1.265338337 + ] + }, + "properties": { + "timestamp": "2018-09-18T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83425167, + -1.268290004 + ] + }, + "properties": { + "timestamp": "2018-09-21T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82741, + -1.280933337 + ] + }, + "properties": { + "timestamp": "2018-09-23T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.835075, + -1.268433337 + ] + }, + "properties": { + "timestamp": "2018-09-26T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82863333, + -1.279251671 + ] + }, + "properties": { + "timestamp": "2018-09-28T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83487333, + -1.268235004 + ] + }, + "properties": { + "timestamp": "2018-10-01T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81323667, + -1.279560004 + ] + }, + "properties": { + "timestamp": "2018-10-03T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83408833, + -1.267163337 + ] + }, + "properties": { + "timestamp": "2018-10-06T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83202667, + -1.263840004 + ] + }, + "properties": { + "timestamp": "2018-10-08T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75741, + -1.281621671 + ] + }, + "properties": { + "timestamp": "2018-10-11T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81942, + -1.273395004 + ] + }, + "properties": { + "timestamp": "2018-10-13T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73531, + -1.273035004 + ] + }, + "properties": { + "timestamp": "2018-10-16T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49083, + -1.365098337 + ] + }, + "properties": { + "timestamp": "2018-10-18T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46195333, + -1.359835004 + ] + }, + "properties": { + "timestamp": "2018-10-21T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45182833, + -1.370350004 + ] + }, + "properties": { + "timestamp": "2018-10-23T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.365925, + -1.421638337 + ] + }, + "properties": { + "timestamp": "2018-10-26T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38444167, + -1.410468337 + ] + }, + "properties": { + "timestamp": "2018-10-28T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37131167, + -1.387595004 + ] + }, + "properties": { + "timestamp": "2018-10-31T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17769833, + -1.338875004 + ] + }, + "properties": { + "timestamp": "2018-11-02T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07142667, + -1.265835005 + ] + }, + "properties": { + "timestamp": "2018-11-05T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09334, + -1.343355004 + ] + }, + "properties": { + "timestamp": "2018-11-07T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14536333, + -1.248138338 + ] + }, + "properties": { + "timestamp": "2018-11-10T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16020167, + -1.253381671 + ] + }, + "properties": { + "timestamp": "2018-11-12T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16620667, + -1.252176671 + ] + }, + "properties": { + "timestamp": "2018-11-15T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16125833, + -1.254378338 + ] + }, + "properties": { + "timestamp": "2018-11-17T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15353167, + -1.230648338 + ] + }, + "properties": { + "timestamp": "2018-11-20T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15632, + -1.209355005 + ] + }, + "properties": { + "timestamp": "2018-11-22T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.165865, + -1.247016671 + ] + }, + "properties": { + "timestamp": "2018-11-25T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16332833, + -1.242936671 + ] + }, + "properties": { + "timestamp": "2018-11-27T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15322833, + -1.215335005 + ] + }, + "properties": { + "timestamp": "2018-11-30T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15829667, + -1.208710005 + ] + }, + "properties": { + "timestamp": "2018-12-02T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15583333, + -1.217670005 + ] + }, + "properties": { + "timestamp": "2018-12-05T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20899333, + -1.164095005 + ] + }, + "properties": { + "timestamp": "2018-12-07T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19563167, + -1.152868338 + ] + }, + "properties": { + "timestamp": "2018-12-10T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20452667, + -1.162640005 + ] + }, + "properties": { + "timestamp": "2018-12-12T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28614833, + -1.352603338 + ] + }, + "properties": { + "timestamp": "2018-12-15T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29102, + -1.349151671 + ] + }, + "properties": { + "timestamp": "2018-12-16T16:00:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35574833, + -1.369161671 + ] + }, + "properties": { + "timestamp": "2018-12-18T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73434833, + -1.289668337 + ] + }, + "properties": { + "timestamp": "2018-12-23T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83360667, + -1.263923337 + ] + }, + "properties": { + "timestamp": "2018-12-26T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81630167, + -1.273356671 + ] + }, + "properties": { + "timestamp": "2018-12-28T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.781555, + -1.287945004 + ] + }, + "properties": { + "timestamp": "2018-12-31T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81465333, + -1.273973337 + ] + }, + "properties": { + "timestamp": "2019-01-02T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77621333, + -1.287743337 + ] + }, + "properties": { + "timestamp": "2019-01-05T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77645667, + -1.286971671 + ] + }, + "properties": { + "timestamp": "2019-01-07T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78761167, + -1.294856671 + ] + }, + "properties": { + "timestamp": "2019-01-10T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81134833, + -1.355043337 + ] + }, + "properties": { + "timestamp": "2019-01-12T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78468167, + -1.294770004 + ] + }, + "properties": { + "timestamp": "2019-01-15T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80579, + -1.350195004 + ] + }, + "properties": { + "timestamp": "2019-01-17T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79143833, + -1.328340004 + ] + }, + "properties": { + "timestamp": "2019-01-20T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.84446667, + -1.246850004 + ] + }, + "properties": { + "timestamp": "2019-01-22T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78939333, + -1.326441671 + ] + }, + "properties": { + "timestamp": "2019-01-25T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81537333, + -1.356595004 + ] + }, + "properties": { + "timestamp": "2019-01-27T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80486667, + -1.365545004 + ] + }, + "properties": { + "timestamp": "2019-01-30T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80197, + -1.337141671 + ] + }, + "properties": { + "timestamp": "2019-02-01T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79015167, + -1.324631671 + ] + }, + "properties": { + "timestamp": "2019-02-03T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78803, + -1.37655167 + ] + }, + "properties": { + "timestamp": "2019-02-04T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.793355, + -1.337261671 + ] + }, + "properties": { + "timestamp": "2019-02-06T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79138167, + -1.335923337 + ] + }, + "properties": { + "timestamp": "2019-02-08T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81020833, + -1.382938337 + ] + }, + "properties": { + "timestamp": "2019-02-09T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80360667, + -1.38590167 + ] + }, + "properties": { + "timestamp": "2019-02-11T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78892667, + -1.329186671 + ] + }, + "properties": { + "timestamp": "2019-02-13T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78446333, + -1.374350004 + ] + }, + "properties": { + "timestamp": "2019-02-14T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80149333, + -1.365100004 + ] + }, + "properties": { + "timestamp": "2019-02-16T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78688, + -1.328410004 + ] + }, + "properties": { + "timestamp": "2019-02-18T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77927333, + -1.243926671 + ] + }, + "properties": { + "timestamp": "2019-02-19T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75831833, + -1.246486671 + ] + }, + "properties": { + "timestamp": "2019-02-21T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72358167, + -1.218055004 + ] + }, + "properties": { + "timestamp": "2019-02-23T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66136333, + -1.208946671 + ] + }, + "properties": { + "timestamp": "2019-02-24T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68107, + -1.242266671 + ] + }, + "properties": { + "timestamp": "2019-02-26T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67487833, + -1.249820004 + ] + }, + "properties": { + "timestamp": "2019-02-28T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64492333, + -1.254313338 + ] + }, + "properties": { + "timestamp": "2019-03-01T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57184, + -1.338146671 + ] + }, + "properties": { + "timestamp": "2019-03-03T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55649333, + -1.381580004 + ] + }, + "properties": { + "timestamp": "2019-03-06T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57151833, + -1.369821671 + ] + }, + "properties": { + "timestamp": "2019-03-09T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58432333, + -1.347115004 + ] + }, + "properties": { + "timestamp": "2019-03-11T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48035667, + -1.365295004 + ] + }, + "properties": { + "timestamp": "2019-03-12T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40216, + -1.390133337 + ] + }, + "properties": { + "timestamp": "2019-03-14T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37474667, + -1.397146671 + ] + }, + "properties": { + "timestamp": "2019-03-16T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35244167, + -1.396573337 + ] + }, + "properties": { + "timestamp": "2019-03-19T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37569333, + -1.403891671 + ] + }, + "properties": { + "timestamp": "2019-03-21T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35453, + -1.397398337 + ] + }, + "properties": { + "timestamp": "2019-03-24T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31911833, + -1.394190004 + ] + }, + "properties": { + "timestamp": "2019-03-26T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33274167, + -1.392745004 + ] + }, + "properties": { + "timestamp": "2019-03-29T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32212, + -1.381668337 + ] + }, + "properties": { + "timestamp": "2019-03-31T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34379667, + -1.398265004 + ] + }, + "properties": { + "timestamp": "2019-04-03T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.315485, + -1.386481671 + ] + }, + "properties": { + "timestamp": "2019-04-05T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31441167, + -1.393588337 + ] + }, + "properties": { + "timestamp": "2019-04-08T07:31:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29654833, + -1.405120004 + ] + }, + "properties": { + "timestamp": "2019-04-10T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31677, + -1.390731671 + ] + }, + "properties": { + "timestamp": "2019-04-13T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3097, + -1.411565004 + ] + }, + "properties": { + "timestamp": "2019-04-15T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30606167, + -1.405316671 + ] + }, + "properties": { + "timestamp": "2019-04-18T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.203435, + -1.309368338 + ] + }, + "properties": { + "timestamp": "2019-04-20T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23544667, + -1.309160004 + ] + }, + "properties": { + "timestamp": "2019-04-23T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24465833, + -1.257116671 + ] + }, + "properties": { + "timestamp": "2019-04-25T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17787, + -1.245153338 + ] + }, + "properties": { + "timestamp": "2019-04-28T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.185275, + -1.237758338 + ] + }, + "properties": { + "timestamp": "2019-04-30T23:31:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21962, + -1.264206671 + ] + }, + "properties": { + "timestamp": "2019-05-03T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.229675, + -1.253271671 + ] + }, + "properties": { + "timestamp": "2019-05-04T04:00:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26661, + -1.251596671 + ] + }, + "properties": { + "timestamp": "2019-05-05T02:00:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24792833, + -1.274105004 + ] + }, + "properties": { + "timestamp": "2019-05-05T22:00:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2949, + -1.336936671 + ] + }, + "properties": { + "timestamp": "2019-05-06T20:00:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38592833, + -1.359948337 + ] + }, + "properties": { + "timestamp": "2019-05-07T18:00:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42092167, + -1.397856671 + ] + }, + "properties": { + "timestamp": "2019-05-08T16:00:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48922333, + -1.351846671 + ] + }, + "properties": { + "timestamp": "2019-05-10T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46443, + -1.357930004 + ] + }, + "properties": { + "timestamp": "2019-05-13T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44720667, + -1.366578337 + ] + }, + "properties": { + "timestamp": "2019-05-15T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44937, + -1.364566671 + ] + }, + "properties": { + "timestamp": "2019-05-18T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60696833, + -1.319683337 + ] + }, + "properties": { + "timestamp": "2019-05-20T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78877167, + -1.303100004 + ] + }, + "properties": { + "timestamp": "2019-05-23T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75252167, + -1.277078337 + ] + }, + "properties": { + "timestamp": "2019-05-25T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73748833, + -1.275203337 + ] + }, + "properties": { + "timestamp": "2019-05-28T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74694333, + -1.283660004 + ] + }, + "properties": { + "timestamp": "2019-05-30T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.735445, + -1.288883337 + ] + }, + "properties": { + "timestamp": "2019-06-01T19:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75723, + -1.276910004 + ] + }, + "properties": { + "timestamp": "2019-06-03T11:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74619667, + -1.285425004 + ] + }, + "properties": { + "timestamp": "2019-06-05T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.741855, + -1.288266671 + ] + }, + "properties": { + "timestamp": "2019-06-06T19:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76319333, + -1.283310004 + ] + }, + "properties": { + "timestamp": "2019-06-08T11:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77252, + -1.273913337 + ] + }, + "properties": { + "timestamp": "2019-06-10T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83366833, + -1.256166671 + ] + }, + "properties": { + "timestamp": "2019-06-11T19:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83270667, + -1.260416671 + ] + }, + "properties": { + "timestamp": "2019-06-13T11:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83180833, + -1.259886671 + ] + }, + "properties": { + "timestamp": "2019-06-15T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.830915, + -1.257131671 + ] + }, + "properties": { + "timestamp": "2019-06-16T19:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.833355, + -1.257171671 + ] + }, + "properties": { + "timestamp": "2019-06-18T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.843115, + -1.269368337 + ] + }, + "properties": { + "timestamp": "2019-06-20T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81190167, + -1.247600004 + ] + }, + "properties": { + "timestamp": "2019-06-21T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83391333, + -1.260475004 + ] + }, + "properties": { + "timestamp": "2019-06-23T12:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82678333, + -1.254670004 + ] + }, + "properties": { + "timestamp": "2019-06-23T22:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83272333, + -1.261136671 + ] + }, + "properties": { + "timestamp": "2019-06-24T09:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.84529667, + -1.262786671 + ] + }, + "properties": { + "timestamp": "2019-06-24T19:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.82044833, + -1.251988337 + ] + }, + "properties": { + "timestamp": "2019-06-25T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.806555, + -1.260458337 + ] + }, + "properties": { + "timestamp": "2019-06-27T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83190667, + -1.261556671 + ] + }, + "properties": { + "timestamp": "2019-06-29T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73075667, + -1.278326671 + ] + }, + "properties": { + "timestamp": "2019-06-30T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73564833, + -1.290106671 + ] + }, + "properties": { + "timestamp": "2019-07-02T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68937, + -1.295321671 + ] + }, + "properties": { + "timestamp": "2019-07-04T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64300667, + -1.318210004 + ] + }, + "properties": { + "timestamp": "2019-07-05T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60132833, + -1.321263337 + ] + }, + "properties": { + "timestamp": "2019-07-07T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.462475, + -1.363720004 + ] + }, + "properties": { + "timestamp": "2019-07-09T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38021167, + -1.391021671 + ] + }, + "properties": { + "timestamp": "2019-07-10T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35515, + -1.397331671 + ] + }, + "properties": { + "timestamp": "2019-07-12T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31613667, + -1.394683337 + ] + }, + "properties": { + "timestamp": "2019-07-14T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31669167, + -1.394816671 + ] + }, + "properties": { + "timestamp": "2019-07-15T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31732833, + -1.393876671 + ] + }, + "properties": { + "timestamp": "2019-07-17T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31709333, + -1.394325004 + ] + }, + "properties": { + "timestamp": "2019-07-19T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31276333, + -1.394171671 + ] + }, + "properties": { + "timestamp": "2019-07-20T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31681, + -1.394315004 + ] + }, + "properties": { + "timestamp": "2019-07-22T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31122833, + -1.394643337 + ] + }, + "properties": { + "timestamp": "2019-07-24T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31792667, + -1.394386671 + ] + }, + "properties": { + "timestamp": "2019-07-25T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24917833, + -1.293410004 + ] + }, + "properties": { + "timestamp": "2019-07-27T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16696333, + -1.216055005 + ] + }, + "properties": { + "timestamp": "2019-07-29T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14904667, + -1.182901671 + ] + }, + "properties": { + "timestamp": "2019-07-30T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17075, + -1.182530005 + ] + }, + "properties": { + "timestamp": "2019-08-01T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20314833, + -1.160340005 + ] + }, + "properties": { + "timestamp": "2019-08-04T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21477333, + -1.174476671 + ] + }, + "properties": { + "timestamp": "2019-08-06T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21238667, + -1.153175005 + ] + }, + "properties": { + "timestamp": "2019-08-09T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20373833, + -1.156313338 + ] + }, + "properties": { + "timestamp": "2019-08-11T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.203805, + -1.147723338 + ] + }, + "properties": { + "timestamp": "2019-08-14T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20153833, + -1.156263338 + ] + }, + "properties": { + "timestamp": "2019-08-16T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20539, + -1.161940005 + ] + }, + "properties": { + "timestamp": "2019-08-19T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20224333, + -1.159870005 + ] + }, + "properties": { + "timestamp": "2019-08-21T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20565667, + -1.163313338 + ] + }, + "properties": { + "timestamp": "2019-08-24T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20644833, + -1.162231671 + ] + }, + "properties": { + "timestamp": "2019-08-26T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.198615, + -1.156606671 + ] + }, + "properties": { + "timestamp": "2019-08-29T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21313833, + -1.172250005 + ] + }, + "properties": { + "timestamp": "2019-08-31T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18539833, + -1.155558338 + ] + }, + "properties": { + "timestamp": "2019-09-03T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25306667, + -1.275980004 + ] + }, + "properties": { + "timestamp": "2019-09-05T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.356835, + -1.389258337 + ] + }, + "properties": { + "timestamp": "2019-09-08T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39882333, + -1.401756671 + ] + }, + "properties": { + "timestamp": "2019-09-10T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40560167, + -1.414005004 + ] + }, + "properties": { + "timestamp": "2019-09-13T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.388325, + -1.396508337 + ] + }, + "properties": { + "timestamp": "2019-09-15T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35843167, + -1.405881671 + ] + }, + "properties": { + "timestamp": "2019-09-18T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31677167, + -1.394063337 + ] + }, + "properties": { + "timestamp": "2019-09-20T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31537333, + -1.396808337 + ] + }, + "properties": { + "timestamp": "2019-09-23T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31389, + -1.385598337 + ] + }, + "properties": { + "timestamp": "2019-09-25T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39294667, + -1.402575004 + ] + }, + "properties": { + "timestamp": "2019-09-28T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42872333, + -1.398911671 + ] + }, + "properties": { + "timestamp": "2019-09-30T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44384833, + -1.378703337 + ] + }, + "properties": { + "timestamp": "2019-10-03T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42986333, + -1.374501671 + ] + }, + "properties": { + "timestamp": "2019-10-05T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42575, + -1.382280004 + ] + }, + "properties": { + "timestamp": "2019-10-08T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40146833, + -1.392116671 + ] + }, + "properties": { + "timestamp": "2019-10-10T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34655, + -1.399020004 + ] + }, + "properties": { + "timestamp": "2019-10-13T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30063833, + -1.387413337 + ] + }, + "properties": { + "timestamp": "2019-10-15T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.231385, + -1.315051671 + ] + }, + "properties": { + "timestamp": "2019-10-18T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26223833, + -1.290503338 + ] + }, + "properties": { + "timestamp": "2019-10-20T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23400333, + -1.282991671 + ] + }, + "properties": { + "timestamp": "2019-10-23T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37819333, + -1.354153337 + ] + }, + "properties": { + "timestamp": "2019-10-25T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46307, + -1.360770004 + ] + }, + "properties": { + "timestamp": "2019-10-28T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54406333, + -1.352031671 + ] + }, + "properties": { + "timestamp": "2019-10-30T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53349167, + -1.359516671 + ] + }, + "properties": { + "timestamp": "2019-11-02T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59180167, + -1.364800004 + ] + }, + "properties": { + "timestamp": "2019-11-04T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53290333, + -1.366603337 + ] + }, + "properties": { + "timestamp": "2019-11-07T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5341, + -1.372743337 + ] + }, + "properties": { + "timestamp": "2019-11-09T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48849667, + -1.365448337 + ] + }, + "properties": { + "timestamp": "2019-11-12T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4909, + -1.380116671 + ] + }, + "properties": { + "timestamp": "2019-11-14T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48361167, + -1.370986671 + ] + }, + "properties": { + "timestamp": "2019-11-17T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56681167, + -1.358093337 + ] + }, + "properties": { + "timestamp": "2019-11-19T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53876833, + -1.369215004 + ] + }, + "properties": { + "timestamp": "2019-11-22T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52214, + -1.370786671 + ] + }, + "properties": { + "timestamp": "2019-11-24T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57252, + -1.367136671 + ] + }, + "properties": { + "timestamp": "2019-11-27T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58470167, + -1.344655004 + ] + }, + "properties": { + "timestamp": "2019-11-29T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67988667, + -1.292931671 + ] + }, + "properties": { + "timestamp": "2019-12-02T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75445, + -1.280476671 + ] + }, + "properties": { + "timestamp": "2019-12-05T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78411833, + -1.284716671 + ] + }, + "properties": { + "timestamp": "2019-12-07T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78489, + -1.285470004 + ] + }, + "properties": { + "timestamp": "2019-12-10T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77877833, + -1.288076671 + ] + }, + "properties": { + "timestamp": "2019-12-12T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78485333, + -1.285330004 + ] + }, + "properties": { + "timestamp": "2019-12-15T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78448, + -1.285495004 + ] + }, + "properties": { + "timestamp": "2019-12-17T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78417, + -1.285793337 + ] + }, + "properties": { + "timestamp": "2019-12-20T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78333667, + -1.294311671 + ] + }, + "properties": { + "timestamp": "2019-12-22T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78436167, + -1.282683337 + ] + }, + "properties": { + "timestamp": "2019-12-25T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78391833, + -1.286083337 + ] + }, + "properties": { + "timestamp": "2019-12-27T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79282167, + -1.279225004 + ] + }, + "properties": { + "timestamp": "2019-12-30T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.787995, + -1.281906671 + ] + }, + "properties": { + "timestamp": "2020-01-01T15:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.813495, + -1.281803337 + ] + }, + "properties": { + "timestamp": "2020-07-02T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81399167, + -1.289038337 + ] + }, + "properties": { + "timestamp": "2020-07-04T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.810235, + -1.296538337 + ] + }, + "properties": { + "timestamp": "2020-07-05T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81402667, + -1.281261671 + ] + }, + "properties": { + "timestamp": "2020-07-07T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81057, + -1.284455004 + ] + }, + "properties": { + "timestamp": "2020-07-09T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80899833, + -1.285506671 + ] + }, + "properties": { + "timestamp": "2020-07-10T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.8138, + -1.281465004 + ] + }, + "properties": { + "timestamp": "2020-07-12T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80962, + -1.282056671 + ] + }, + "properties": { + "timestamp": "2020-07-14T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.809525, + -1.281640004 + ] + }, + "properties": { + "timestamp": "2020-07-15T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81008, + -1.290036671 + ] + }, + "properties": { + "timestamp": "2020-07-17T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80920167, + -1.281901671 + ] + }, + "properties": { + "timestamp": "2020-07-19T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81415167, + -1.281163337 + ] + }, + "properties": { + "timestamp": "2020-07-20T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81374167, + -1.281470004 + ] + }, + "properties": { + "timestamp": "2020-07-22T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81032667, + -1.282543337 + ] + }, + "properties": { + "timestamp": "2020-07-24T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80957167, + -1.285468337 + ] + }, + "properties": { + "timestamp": "2020-07-26T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.808745, + -1.280203337 + ] + }, + "properties": { + "timestamp": "2020-07-27T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80907667, + -1.282896671 + ] + }, + "properties": { + "timestamp": "2020-07-29T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.808895, + -1.281403337 + ] + }, + "properties": { + "timestamp": "2020-07-31T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80951333, + -1.281375004 + ] + }, + "properties": { + "timestamp": "2020-08-02T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80843667, + -1.282336671 + ] + }, + "properties": { + "timestamp": "2020-08-04T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81084667, + -1.281711671 + ] + }, + "properties": { + "timestamp": "2020-08-07T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80897, + -1.281056671 + ] + }, + "properties": { + "timestamp": "2020-08-09T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81004667, + -1.282605004 + ] + }, + "properties": { + "timestamp": "2020-08-12T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.8086, + -1.282073337 + ] + }, + "properties": { + "timestamp": "2020-08-14T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81018333, + -1.281875004 + ] + }, + "properties": { + "timestamp": "2020-08-17T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.808975, + -1.282581671 + ] + }, + "properties": { + "timestamp": "2020-08-19T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78137333, + -1.284205004 + ] + }, + "properties": { + "timestamp": "2020-08-22T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75027167, + -1.278196671 + ] + }, + "properties": { + "timestamp": "2020-08-24T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80988667, + -1.284421671 + ] + }, + "properties": { + "timestamp": "2020-08-27T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.71766, + -1.300010004 + ] + }, + "properties": { + "timestamp": "2020-08-29T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79475, + -1.271778337 + ] + }, + "properties": { + "timestamp": "2020-09-01T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72674, + -1.287856671 + ] + }, + "properties": { + "timestamp": "2020-09-03T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81316167, + -1.282866671 + ] + }, + "properties": { + "timestamp": "2020-09-06T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81696167, + -1.284256671 + ] + }, + "properties": { + "timestamp": "2020-09-08T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74773833, + -1.281438337 + ] + }, + "properties": { + "timestamp": "2020-09-11T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72069667, + -1.295418337 + ] + }, + "properties": { + "timestamp": "2020-09-13T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.741195, + -1.287613337 + ] + }, + "properties": { + "timestamp": "2020-09-16T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72703667, + -1.284450004 + ] + }, + "properties": { + "timestamp": "2020-09-18T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.625865, + -1.286598337 + ] + }, + "properties": { + "timestamp": "2020-09-21T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58352, + -1.348441671 + ] + }, + "properties": { + "timestamp": "2020-09-23T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.510125, + -1.375725004 + ] + }, + "properties": { + "timestamp": "2020-09-26T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47878167, + -1.374003337 + ] + }, + "properties": { + "timestamp": "2020-09-28T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45105667, + -1.375956671 + ] + }, + "properties": { + "timestamp": "2020-10-01T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43374333, + -1.401893337 + ] + }, + "properties": { + "timestamp": "2020-10-03T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4441, + -1.386048337 + ] + }, + "properties": { + "timestamp": "2020-10-06T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W72", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60961667, + -1.346750004 + ] + }, + "properties": { + "timestamp": "2018-03-25T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61002333, + -1.344433337 + ] + }, + "properties": { + "timestamp": "2018-03-26T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60991, + -1.346566671 + ] + }, + "properties": { + "timestamp": "2018-03-28T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61002167, + -1.346236671 + ] + }, + "properties": { + "timestamp": "2018-03-30T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60979167, + -1.345808337 + ] + }, + "properties": { + "timestamp": "2018-03-31T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.598495, + -1.375408337 + ] + }, + "properties": { + "timestamp": "2018-04-01T08:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60898833, + -1.351096671 + ] + }, + "properties": { + "timestamp": "2018-04-01T18:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60983833, + -1.346653337 + ] + }, + "properties": { + "timestamp": "2018-04-02T04:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.603945, + -1.332511671 + ] + }, + "properties": { + "timestamp": "2018-04-02T14:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.608885, + -1.344455004 + ] + }, + "properties": { + "timestamp": "2018-04-03T00:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.606885, + -1.336543337 + ] + }, + "properties": { + "timestamp": "2018-04-03T10:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60866833, + -1.340748337 + ] + }, + "properties": { + "timestamp": "2018-04-03T20:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60985333, + -1.347376671 + ] + }, + "properties": { + "timestamp": "2018-04-04T06:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58483167, + -1.350908337 + ] + }, + "properties": { + "timestamp": "2018-04-04T17:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59030333, + -1.352430004 + ] + }, + "properties": { + "timestamp": "2018-04-05T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59500333, + -1.337471671 + ] + }, + "properties": { + "timestamp": "2018-04-05T13:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.605525, + -1.336938337 + ] + }, + "properties": { + "timestamp": "2018-04-06T00:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59955833, + -1.339645004 + ] + }, + "properties": { + "timestamp": "2018-04-06T10:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.607625, + -1.337851671 + ] + }, + "properties": { + "timestamp": "2018-04-06T20:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59987333, + -1.337031671 + ] + }, + "properties": { + "timestamp": "2018-04-07T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60334, + -1.335400004 + ] + }, + "properties": { + "timestamp": "2018-04-07T17:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60652833, + -1.336760004 + ] + }, + "properties": { + "timestamp": "2018-04-08T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60961833, + -1.347371671 + ] + }, + "properties": { + "timestamp": "2018-04-10T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61047667, + -1.345053337 + ] + }, + "properties": { + "timestamp": "2018-04-11T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59444667, + -1.347768337 + ] + }, + "properties": { + "timestamp": "2018-04-13T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60824667, + -1.348501671 + ] + }, + "properties": { + "timestamp": "2018-04-15T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60986167, + -1.345266671 + ] + }, + "properties": { + "timestamp": "2018-04-16T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60695667, + -1.349585004 + ] + }, + "properties": { + "timestamp": "2018-04-18T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.591925, + -1.338645004 + ] + }, + "properties": { + "timestamp": "2018-04-20T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57483, + -1.345658337 + ] + }, + "properties": { + "timestamp": "2018-04-21T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60969, + -1.346088337 + ] + }, + "properties": { + "timestamp": "2018-04-23T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61065833, + -1.348081671 + ] + }, + "properties": { + "timestamp": "2018-04-25T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60479, + -1.335896671 + ] + }, + "properties": { + "timestamp": "2018-04-26T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59338333, + -1.361181671 + ] + }, + "properties": { + "timestamp": "2018-04-28T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60692333, + -1.350558337 + ] + }, + "properties": { + "timestamp": "2018-04-30T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60366, + -1.357323337 + ] + }, + "properties": { + "timestamp": "2018-05-01T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60912333, + -1.336090004 + ] + }, + "properties": { + "timestamp": "2018-05-03T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60507333, + -1.330488337 + ] + }, + "properties": { + "timestamp": "2018-05-05T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60887167, + -1.343650004 + ] + }, + "properties": { + "timestamp": "2018-05-06T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59912333, + -1.340813337 + ] + }, + "properties": { + "timestamp": "2018-05-08T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60972333, + -1.335566671 + ] + }, + "properties": { + "timestamp": "2018-05-10T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60854167, + -1.344725004 + ] + }, + "properties": { + "timestamp": "2018-05-11T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59824, + -1.340090004 + ] + }, + "properties": { + "timestamp": "2018-05-13T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.599185, + -1.339010004 + ] + }, + "properties": { + "timestamp": "2018-05-15T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59889833, + -1.338878337 + ] + }, + "properties": { + "timestamp": "2018-05-16T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60947833, + -1.337171671 + ] + }, + "properties": { + "timestamp": "2018-05-18T19:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59799333, + -1.339765004 + ] + }, + "properties": { + "timestamp": "2018-05-20T11:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60894833, + -1.336155004 + ] + }, + "properties": { + "timestamp": "2018-05-22T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.602025, + -1.338685004 + ] + }, + "properties": { + "timestamp": "2018-05-24T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60189667, + -1.338493337 + ] + }, + "properties": { + "timestamp": "2018-05-26T15:31:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61057833, + -1.335146671 + ] + }, + "properties": { + "timestamp": "2018-05-29T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61232333, + -1.334506671 + ] + }, + "properties": { + "timestamp": "2018-05-31T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61324667, + -1.334276671 + ] + }, + "properties": { + "timestamp": "2018-06-03T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61238167, + -1.333705004 + ] + }, + "properties": { + "timestamp": "2018-06-05T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.613595, + -1.338878337 + ] + }, + "properties": { + "timestamp": "2018-06-08T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61382667, + -1.337720004 + ] + }, + "properties": { + "timestamp": "2018-06-10T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61307667, + -1.338681671 + ] + }, + "properties": { + "timestamp": "2018-06-13T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61463167, + -1.336033337 + ] + }, + "properties": { + "timestamp": "2018-06-15T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61353333, + -1.338675004 + ] + }, + "properties": { + "timestamp": "2018-06-18T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61368833, + -1.336668337 + ] + }, + "properties": { + "timestamp": "2018-06-20T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61671167, + -1.337425004 + ] + }, + "properties": { + "timestamp": "2018-06-23T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61360167, + -1.337920004 + ] + }, + "properties": { + "timestamp": "2018-06-25T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61670667, + -1.336710004 + ] + }, + "properties": { + "timestamp": "2018-06-28T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.615925, + -1.336771671 + ] + }, + "properties": { + "timestamp": "2018-06-30T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61384667, + -1.335733337 + ] + }, + "properties": { + "timestamp": "2018-07-01T08:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61376333, + -1.336711671 + ] + }, + "properties": { + "timestamp": "2018-07-01T18:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.614085, + -1.336291671 + ] + }, + "properties": { + "timestamp": "2018-07-02T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60047, + -1.339833337 + ] + }, + "properties": { + "timestamp": "2018-07-02T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60993833, + -1.339965004 + ] + }, + "properties": { + "timestamp": "2018-07-03T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59375333, + -1.343296671 + ] + }, + "properties": { + "timestamp": "2018-07-03T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58970833, + -1.352466671 + ] + }, + "properties": { + "timestamp": "2018-07-03T21:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61373, + -1.336486671 + ] + }, + "properties": { + "timestamp": "2018-07-04T08:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61408, + -1.336641671 + ] + }, + "properties": { + "timestamp": "2018-07-04T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61377167, + -1.335916671 + ] + }, + "properties": { + "timestamp": "2018-07-05T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61317833, + -1.337963337 + ] + }, + "properties": { + "timestamp": "2018-07-05T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.620115, + -1.335285004 + ] + }, + "properties": { + "timestamp": "2018-07-06T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61396333, + -1.336543337 + ] + }, + "properties": { + "timestamp": "2018-07-06T12:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61443333, + -1.339285004 + ] + }, + "properties": { + "timestamp": "2018-07-06T22:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61395333, + -1.335940004 + ] + }, + "properties": { + "timestamp": "2018-07-07T08:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61457333, + -1.336810004 + ] + }, + "properties": { + "timestamp": "2018-07-07T18:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59591167, + -1.335708337 + ] + }, + "properties": { + "timestamp": "2018-07-09T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.615105, + -1.336685004 + ] + }, + "properties": { + "timestamp": "2018-07-11T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61244167, + -1.338031671 + ] + }, + "properties": { + "timestamp": "2018-07-14T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61352833, + -1.336836671 + ] + }, + "properties": { + "timestamp": "2018-07-16T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61362, + -1.337016671 + ] + }, + "properties": { + "timestamp": "2018-07-19T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61456667, + -1.336448337 + ] + }, + "properties": { + "timestamp": "2018-07-21T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61416833, + -1.337543337 + ] + }, + "properties": { + "timestamp": "2018-07-24T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.614335, + -1.336691671 + ] + }, + "properties": { + "timestamp": "2018-07-26T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61978333, + -1.333040004 + ] + }, + "properties": { + "timestamp": "2018-07-29T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61869333, + -1.335953337 + ] + }, + "properties": { + "timestamp": "2018-07-31T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61409667, + -1.336291671 + ] + }, + "properties": { + "timestamp": "2018-08-02T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62178, + -1.332721671 + ] + }, + "properties": { + "timestamp": "2018-08-04T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61750333, + -1.334821671 + ] + }, + "properties": { + "timestamp": "2018-08-05T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61652333, + -1.334993337 + ] + }, + "properties": { + "timestamp": "2018-08-07T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.614655, + -1.336531671 + ] + }, + "properties": { + "timestamp": "2018-08-09T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61465333, + -1.336326671 + ] + }, + "properties": { + "timestamp": "2018-08-10T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.613935, + -1.336406671 + ] + }, + "properties": { + "timestamp": "2018-08-12T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61400833, + -1.336646671 + ] + }, + "properties": { + "timestamp": "2018-08-14T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.6144, + -1.336540004 + ] + }, + "properties": { + "timestamp": "2018-08-15T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60956833, + -1.334673337 + ] + }, + "properties": { + "timestamp": "2018-08-17T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61356667, + -1.336593337 + ] + }, + "properties": { + "timestamp": "2018-08-19T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.614865, + -1.336205004 + ] + }, + "properties": { + "timestamp": "2018-08-20T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60640833, + -1.333651671 + ] + }, + "properties": { + "timestamp": "2018-08-22T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48114667, + -1.346230004 + ] + }, + "properties": { + "timestamp": "2018-08-24T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47934167, + -1.368131671 + ] + }, + "properties": { + "timestamp": "2018-08-25T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46740333, + -1.368020004 + ] + }, + "properties": { + "timestamp": "2018-08-27T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51767333, + -1.357391671 + ] + }, + "properties": { + "timestamp": "2018-08-29T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58745, + -1.365090004 + ] + }, + "properties": { + "timestamp": "2018-08-30T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57181667, + -1.44040167 + ] + }, + "properties": { + "timestamp": "2018-09-01T11:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56656, + -1.421225004 + ] + }, + "properties": { + "timestamp": "2018-09-03T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53881, + -1.446293337 + ] + }, + "properties": { + "timestamp": "2018-09-04T19:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53848167, + -1.44602167 + ] + }, + "properties": { + "timestamp": "2018-09-06T11:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54364833, + -1.44920167 + ] + }, + "properties": { + "timestamp": "2018-09-08T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53846333, + -1.446628337 + ] + }, + "properties": { + "timestamp": "2018-09-09T19:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.538685, + -1.446053337 + ] + }, + "properties": { + "timestamp": "2018-09-11T11:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53846833, + -1.446400004 + ] + }, + "properties": { + "timestamp": "2018-09-13T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53869333, + -1.445955004 + ] + }, + "properties": { + "timestamp": "2018-09-14T19:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5387, + -1.446005004 + ] + }, + "properties": { + "timestamp": "2018-09-16T11:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54181167, + -1.444925004 + ] + }, + "properties": { + "timestamp": "2018-09-18T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.540415, + -1.44673667 + ] + }, + "properties": { + "timestamp": "2018-09-19T19:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53989, + -1.446865004 + ] + }, + "properties": { + "timestamp": "2018-09-21T11:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54178, + -1.44930667 + ] + }, + "properties": { + "timestamp": "2018-09-23T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53905833, + -1.46118667 + ] + }, + "properties": { + "timestamp": "2018-09-24T19:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54384, + -1.44759667 + ] + }, + "properties": { + "timestamp": "2018-09-26T11:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54546167, + -1.44323167 + ] + }, + "properties": { + "timestamp": "2018-09-28T03:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55473667, + -1.446890004 + ] + }, + "properties": { + "timestamp": "2018-09-29T19:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53642167, + -1.462313337 + ] + }, + "properties": { + "timestamp": "2018-10-01T02:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54417167, + -1.456483337 + ] + }, + "properties": { + "timestamp": "2018-10-01T12:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54250167, + -1.477100004 + ] + }, + "properties": { + "timestamp": "2018-10-01T22:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54520833, + -1.462308337 + ] + }, + "properties": { + "timestamp": "2018-10-02T08:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530415, + -1.457723337 + ] + }, + "properties": { + "timestamp": "2018-10-02T18:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54009333, + -1.46441167 + ] + }, + "properties": { + "timestamp": "2018-10-03T05:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54062333, + -1.462595004 + ] + }, + "properties": { + "timestamp": "2018-10-03T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53607667, + -1.461803337 + ] + }, + "properties": { + "timestamp": "2018-10-04T01:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54426667, + -1.463908337 + ] + }, + "properties": { + "timestamp": "2018-10-04T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52213333, + -1.455448337 + ] + }, + "properties": { + "timestamp": "2018-10-04T21:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53851, + -1.441720004 + ] + }, + "properties": { + "timestamp": "2018-10-05T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55302167, + -1.440008337 + ] + }, + "properties": { + "timestamp": "2018-10-05T17:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55640833, + -1.442250004 + ] + }, + "properties": { + "timestamp": "2018-10-06T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57269667, + -1.448018337 + ] + }, + "properties": { + "timestamp": "2018-10-06T13:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57455667, + -1.433103337 + ] + }, + "properties": { + "timestamp": "2018-10-06T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57000667, + -1.441633337 + ] + }, + "properties": { + "timestamp": "2018-10-07T09:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56705667, + -1.438933337 + ] + }, + "properties": { + "timestamp": "2018-10-07T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57015333, + -1.44298667 + ] + }, + "properties": { + "timestamp": "2018-10-08T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57050333, + -1.435945004 + ] + }, + "properties": { + "timestamp": "2018-10-10T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56800333, + -1.449818337 + ] + }, + "properties": { + "timestamp": "2018-10-12T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57451667, + -1.432935004 + ] + }, + "properties": { + "timestamp": "2018-10-13T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57193667, + -1.447115004 + ] + }, + "properties": { + "timestamp": "2018-10-15T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56928667, + -1.448250004 + ] + }, + "properties": { + "timestamp": "2018-10-17T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57442667, + -1.433175004 + ] + }, + "properties": { + "timestamp": "2018-10-18T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57118333, + -1.43712167 + ] + }, + "properties": { + "timestamp": "2018-10-20T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56801667, + -1.448960004 + ] + }, + "properties": { + "timestamp": "2018-10-22T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57210667, + -1.44463667 + ] + }, + "properties": { + "timestamp": "2018-10-23T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57146333, + -1.445525004 + ] + }, + "properties": { + "timestamp": "2018-10-25T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.577585, + -1.439520004 + ] + }, + "properties": { + "timestamp": "2018-10-27T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57451667, + -1.433183337 + ] + }, + "properties": { + "timestamp": "2018-10-28T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.572575, + -1.43426667 + ] + }, + "properties": { + "timestamp": "2018-10-30T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56390167, + -1.43705167 + ] + }, + "properties": { + "timestamp": "2018-11-01T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57115333, + -1.414406671 + ] + }, + "properties": { + "timestamp": "2018-11-03T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56524167, + -1.45892667 + ] + }, + "properties": { + "timestamp": "2018-11-06T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57169833, + -1.44412167 + ] + }, + "properties": { + "timestamp": "2018-11-08T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56992667, + -1.460535004 + ] + }, + "properties": { + "timestamp": "2018-11-11T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57437833, + -1.432968337 + ] + }, + "properties": { + "timestamp": "2018-11-13T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.572805, + -1.462878337 + ] + }, + "properties": { + "timestamp": "2018-11-16T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54207, + -1.44900667 + ] + }, + "properties": { + "timestamp": "2018-11-18T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57817667, + -1.450063337 + ] + }, + "properties": { + "timestamp": "2018-11-21T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57201, + -1.444365004 + ] + }, + "properties": { + "timestamp": "2018-11-23T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58109167, + -1.446270004 + ] + }, + "properties": { + "timestamp": "2018-11-26T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.575895, + -1.417685004 + ] + }, + "properties": { + "timestamp": "2018-11-28T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.564855, + -1.452855004 + ] + }, + "properties": { + "timestamp": "2018-12-01T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57196833, + -1.43528667 + ] + }, + "properties": { + "timestamp": "2018-12-03T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57295333, + -1.45030167 + ] + }, + "properties": { + "timestamp": "2018-12-06T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5527, + -1.44023167 + ] + }, + "properties": { + "timestamp": "2018-12-08T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56494833, + -1.441400004 + ] + }, + "properties": { + "timestamp": "2018-12-11T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58454, + -1.426421671 + ] + }, + "properties": { + "timestamp": "2018-12-13T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57989167, + -1.43587167 + ] + }, + "properties": { + "timestamp": "2018-12-16T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.580795, + -1.418873337 + ] + }, + "properties": { + "timestamp": "2018-12-18T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5664, + -1.396958337 + ] + }, + "properties": { + "timestamp": "2018-12-21T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58368667, + -1.350260004 + ] + }, + "properties": { + "timestamp": "2018-12-23T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55525333, + -1.366045004 + ] + }, + "properties": { + "timestamp": "2018-12-26T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.570225, + -1.361650004 + ] + }, + "properties": { + "timestamp": "2018-12-28T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.553115, + -1.353223337 + ] + }, + "properties": { + "timestamp": "2018-12-31T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55362333, + -1.365630004 + ] + }, + "properties": { + "timestamp": "2019-01-01T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56123167, + -1.358401671 + ] + }, + "properties": { + "timestamp": "2019-01-01T17:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55586833, + -1.361735004 + ] + }, + "properties": { + "timestamp": "2019-01-02T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55608833, + -1.363511671 + ] + }, + "properties": { + "timestamp": "2019-01-02T13:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5619, + -1.358116671 + ] + }, + "properties": { + "timestamp": "2019-01-02T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55348833, + -1.365803337 + ] + }, + "properties": { + "timestamp": "2019-01-03T09:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56635667, + -1.351828337 + ] + }, + "properties": { + "timestamp": "2019-01-03T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56781833, + -1.363603337 + ] + }, + "properties": { + "timestamp": "2019-01-04T05:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55627833, + -1.366840004 + ] + }, + "properties": { + "timestamp": "2019-01-04T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56881167, + -1.358531671 + ] + }, + "properties": { + "timestamp": "2019-01-05T02:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55736167, + -1.351220004 + ] + }, + "properties": { + "timestamp": "2019-01-05T12:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56339333, + -1.346350004 + ] + }, + "properties": { + "timestamp": "2019-01-05T22:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.550185, + -1.367370004 + ] + }, + "properties": { + "timestamp": "2019-01-06T08:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.542015, + -1.373631671 + ] + }, + "properties": { + "timestamp": "2019-01-06T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54792333, + -1.371625004 + ] + }, + "properties": { + "timestamp": "2019-01-07T05:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52882333, + -1.384731671 + ] + }, + "properties": { + "timestamp": "2019-01-07T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53787333, + -1.376028337 + ] + }, + "properties": { + "timestamp": "2019-01-08T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55296833, + -1.365906671 + ] + }, + "properties": { + "timestamp": "2019-01-09T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55110667, + -1.355620004 + ] + }, + "properties": { + "timestamp": "2019-01-11T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53865333, + -1.375818337 + ] + }, + "properties": { + "timestamp": "2019-01-13T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56434333, + -1.360660004 + ] + }, + "properties": { + "timestamp": "2019-01-14T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58450167, + -1.368141671 + ] + }, + "properties": { + "timestamp": "2019-01-16T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58689833, + -1.361101671 + ] + }, + "properties": { + "timestamp": "2019-01-18T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58527667, + -1.357285004 + ] + }, + "properties": { + "timestamp": "2019-01-19T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58229, + -1.402901671 + ] + }, + "properties": { + "timestamp": "2019-01-21T15:31:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.576345, + -1.379801671 + ] + }, + "properties": { + "timestamp": "2019-01-23T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56035333, + -1.360630004 + ] + }, + "properties": { + "timestamp": "2019-01-25T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54885333, + -1.349595004 + ] + }, + "properties": { + "timestamp": "2019-01-26T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57101833, + -1.367105004 + ] + }, + "properties": { + "timestamp": "2019-01-28T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.584665, + -1.423270004 + ] + }, + "properties": { + "timestamp": "2019-01-30T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58129833, + -1.414186671 + ] + }, + "properties": { + "timestamp": "2019-01-31T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.565285, + -1.435870004 + ] + }, + "properties": { + "timestamp": "2019-02-03T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53009333, + -1.457173337 + ] + }, + "properties": { + "timestamp": "2019-02-05T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58371, + -1.43459667 + ] + }, + "properties": { + "timestamp": "2019-02-08T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58344, + -1.415640004 + ] + }, + "properties": { + "timestamp": "2019-02-10T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57947167, + -1.437153337 + ] + }, + "properties": { + "timestamp": "2019-02-13T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56007333, + -1.462878337 + ] + }, + "properties": { + "timestamp": "2019-02-15T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57985167, + -1.43910167 + ] + }, + "properties": { + "timestamp": "2019-02-18T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58774333, + -1.426361671 + ] + }, + "properties": { + "timestamp": "2019-02-20T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56942667, + -1.460223337 + ] + }, + "properties": { + "timestamp": "2019-02-23T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58316167, + -1.376393337 + ] + }, + "properties": { + "timestamp": "2019-02-25T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.575305, + -1.378526671 + ] + }, + "properties": { + "timestamp": "2019-02-28T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58620667, + -1.372781671 + ] + }, + "properties": { + "timestamp": "2019-03-02T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58786833, + -1.380878337 + ] + }, + "properties": { + "timestamp": "2019-03-03T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58895667, + -1.379655004 + ] + }, + "properties": { + "timestamp": "2019-03-05T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56678833, + -1.397326671 + ] + }, + "properties": { + "timestamp": "2019-03-07T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59543, + -1.347260004 + ] + }, + "properties": { + "timestamp": "2019-03-08T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58408833, + -1.349481671 + ] + }, + "properties": { + "timestamp": "2019-03-10T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53734833, + -1.357836671 + ] + }, + "properties": { + "timestamp": "2019-03-12T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55037, + -1.349451671 + ] + }, + "properties": { + "timestamp": "2019-03-13T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.557735, + -1.354328337 + ] + }, + "properties": { + "timestamp": "2019-03-15T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.555415, + -1.367478337 + ] + }, + "properties": { + "timestamp": "2019-03-17T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55963333, + -1.358983337 + ] + }, + "properties": { + "timestamp": "2019-03-18T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45688833, + -1.372676671 + ] + }, + "properties": { + "timestamp": "2019-03-20T15:31:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41975833, + -1.394658337 + ] + }, + "properties": { + "timestamp": "2019-03-22T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42945667, + -1.410341671 + ] + }, + "properties": { + "timestamp": "2019-03-23T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.421255, + -1.415168337 + ] + }, + "properties": { + "timestamp": "2019-03-25T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42508333, + -1.406978337 + ] + }, + "properties": { + "timestamp": "2019-03-27T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40485167, + -1.423551671 + ] + }, + "properties": { + "timestamp": "2019-03-28T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40052333, + -1.402141671 + ] + }, + "properties": { + "timestamp": "2019-03-30T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40305833, + -1.391673337 + ] + }, + "properties": { + "timestamp": "2019-04-01T01:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.400085, + -1.411730004 + ] + }, + "properties": { + "timestamp": "2019-04-01T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40068833, + -1.390588337 + ] + }, + "properties": { + "timestamp": "2019-04-01T21:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40417667, + -1.402713337 + ] + }, + "properties": { + "timestamp": "2019-04-02T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40397167, + -1.392748337 + ] + }, + "properties": { + "timestamp": "2019-04-02T17:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40285, + -1.399471671 + ] + }, + "properties": { + "timestamp": "2019-04-03T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40534667, + -1.405101671 + ] + }, + "properties": { + "timestamp": "2019-04-03T13:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40439, + -1.392055004 + ] + }, + "properties": { + "timestamp": "2019-04-03T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40379167, + -1.411646671 + ] + }, + "properties": { + "timestamp": "2019-04-04T09:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42084, + -1.405446671 + ] + }, + "properties": { + "timestamp": "2019-04-04T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40313167, + -1.401633337 + ] + }, + "properties": { + "timestamp": "2019-04-05T05:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40356, + -1.397935004 + ] + }, + "properties": { + "timestamp": "2019-04-05T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41107333, + -1.391735004 + ] + }, + "properties": { + "timestamp": "2019-04-06T01:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.408945, + -1.410701671 + ] + }, + "properties": { + "timestamp": "2019-04-06T12:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.419995, + -1.411271671 + ] + }, + "properties": { + "timestamp": "2019-04-06T22:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40934167, + -1.401446671 + ] + }, + "properties": { + "timestamp": "2019-04-07T08:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45505833, + -1.395108337 + ] + }, + "properties": { + "timestamp": "2019-04-07T18:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.454545, + -1.398440004 + ] + }, + "properties": { + "timestamp": "2019-04-08T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46933167, + -1.370205004 + ] + }, + "properties": { + "timestamp": "2019-04-10T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.548005, + -1.411361671 + ] + }, + "properties": { + "timestamp": "2019-04-12T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56571333, + -1.43597667 + ] + }, + "properties": { + "timestamp": "2019-04-13T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57024, + -1.439778337 + ] + }, + "properties": { + "timestamp": "2019-04-15T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.562, + -1.456825004 + ] + }, + "properties": { + "timestamp": "2019-04-17T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57852, + -1.464940004 + ] + }, + "properties": { + "timestamp": "2019-04-18T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57877667, + -1.462855004 + ] + }, + "properties": { + "timestamp": "2019-04-20T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.576865, + -1.44225667 + ] + }, + "properties": { + "timestamp": "2019-04-22T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55275333, + -1.44006667 + ] + }, + "properties": { + "timestamp": "2019-04-23T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.567475, + -1.44307667 + ] + }, + "properties": { + "timestamp": "2019-04-25T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58301333, + -1.425456671 + ] + }, + "properties": { + "timestamp": "2019-04-27T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58283667, + -1.417915004 + ] + }, + "properties": { + "timestamp": "2019-04-28T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57253333, + -1.439945004 + ] + }, + "properties": { + "timestamp": "2019-04-30T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56368167, + -1.425730004 + ] + }, + "properties": { + "timestamp": "2019-05-02T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57119, + -1.417063337 + ] + }, + "properties": { + "timestamp": "2019-05-03T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56773167, + -1.393691671 + ] + }, + "properties": { + "timestamp": "2019-05-05T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57096, + -1.395773337 + ] + }, + "properties": { + "timestamp": "2019-05-07T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56818667, + -1.394236671 + ] + }, + "properties": { + "timestamp": "2019-05-09T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57948667, + -1.345405004 + ] + }, + "properties": { + "timestamp": "2019-05-11T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51921333, + -1.382563337 + ] + }, + "properties": { + "timestamp": "2019-05-12T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.511525, + -1.373735004 + ] + }, + "properties": { + "timestamp": "2019-05-14T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59228333, + -1.359245004 + ] + }, + "properties": { + "timestamp": "2019-05-16T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56721667, + -1.391761671 + ] + }, + "properties": { + "timestamp": "2019-05-17T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56719167, + -1.435203337 + ] + }, + "properties": { + "timestamp": "2019-05-19T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54112167, + -1.442253337 + ] + }, + "properties": { + "timestamp": "2019-05-21T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54129833, + -1.441975004 + ] + }, + "properties": { + "timestamp": "2019-05-22T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.540905, + -1.44310667 + ] + }, + "properties": { + "timestamp": "2019-05-25T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54103833, + -1.442640004 + ] + }, + "properties": { + "timestamp": "2019-05-27T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.541225, + -1.442178337 + ] + }, + "properties": { + "timestamp": "2019-05-30T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54161833, + -1.442060004 + ] + }, + "properties": { + "timestamp": "2019-06-01T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54145833, + -1.442005004 + ] + }, + "properties": { + "timestamp": "2019-06-04T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54173833, + -1.442170004 + ] + }, + "properties": { + "timestamp": "2019-06-06T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54124333, + -1.442475004 + ] + }, + "properties": { + "timestamp": "2019-06-09T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54083, + -1.443503337 + ] + }, + "properties": { + "timestamp": "2019-06-11T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54128833, + -1.441885004 + ] + }, + "properties": { + "timestamp": "2019-06-14T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54117333, + -1.443698337 + ] + }, + "properties": { + "timestamp": "2019-06-16T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5379, + -1.450223337 + ] + }, + "properties": { + "timestamp": "2019-06-19T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54154667, + -1.44163167 + ] + }, + "properties": { + "timestamp": "2019-06-21T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.542075, + -1.44145667 + ] + }, + "properties": { + "timestamp": "2019-06-23T06:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54189167, + -1.441135004 + ] + }, + "properties": { + "timestamp": "2019-06-23T16:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54156667, + -1.441048337 + ] + }, + "properties": { + "timestamp": "2019-06-24T03:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.552415, + -1.437706671 + ] + }, + "properties": { + "timestamp": "2019-06-24T13:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.552795, + -1.439945004 + ] + }, + "properties": { + "timestamp": "2019-06-24T23:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55159167, + -1.44266167 + ] + }, + "properties": { + "timestamp": "2019-06-25T10:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58388, + -1.430875004 + ] + }, + "properties": { + "timestamp": "2019-06-25T20:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58412833, + -1.432010004 + ] + }, + "properties": { + "timestamp": "2019-06-26T07:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57715167, + -1.410298337 + ] + }, + "properties": { + "timestamp": "2019-06-26T17:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58211, + -1.43118667 + ] + }, + "properties": { + "timestamp": "2019-06-27T04:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.571615, + -1.44520667 + ] + }, + "properties": { + "timestamp": "2019-06-27T14:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57674667, + -1.428511671 + ] + }, + "properties": { + "timestamp": "2019-06-28T01:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5741, + -1.436793337 + ] + }, + "properties": { + "timestamp": "2019-06-28T11:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57609667, + -1.409318337 + ] + }, + "properties": { + "timestamp": "2019-06-28T21:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58088167, + -1.381081671 + ] + }, + "properties": { + "timestamp": "2019-06-30T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57396833, + -1.378773337 + ] + }, + "properties": { + "timestamp": "2019-07-01T10:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.579625, + -1.381000004 + ] + }, + "properties": { + "timestamp": "2019-07-01T20:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56078333, + -1.385548337 + ] + }, + "properties": { + "timestamp": "2019-07-02T06:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.560915, + -1.386111671 + ] + }, + "properties": { + "timestamp": "2019-07-02T16:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56269167, + -1.386893337 + ] + }, + "properties": { + "timestamp": "2019-07-03T02:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56127667, + -1.384543337 + ] + }, + "properties": { + "timestamp": "2019-07-03T12:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56956, + -1.386013337 + ] + }, + "properties": { + "timestamp": "2019-07-03T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56235333, + -1.381643337 + ] + }, + "properties": { + "timestamp": "2019-07-04T09:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56345167, + -1.386300004 + ] + }, + "properties": { + "timestamp": "2019-07-04T19:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.568565, + -1.394805004 + ] + }, + "properties": { + "timestamp": "2019-07-05T05:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56909667, + -1.394290004 + ] + }, + "properties": { + "timestamp": "2019-07-05T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.574405, + -1.399780004 + ] + }, + "properties": { + "timestamp": "2019-07-06T01:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57013833, + -1.396463337 + ] + }, + "properties": { + "timestamp": "2019-07-06T11:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58829833, + -1.398145004 + ] + }, + "properties": { + "timestamp": "2019-07-06T21:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57810667, + -1.390248337 + ] + }, + "properties": { + "timestamp": "2019-07-07T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56292667, + -1.385583337 + ] + }, + "properties": { + "timestamp": "2019-07-07T17:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56299, + -1.386986671 + ] + }, + "properties": { + "timestamp": "2019-07-08T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56187833, + -1.384680004 + ] + }, + "properties": { + "timestamp": "2019-07-11T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56700833, + -1.390561671 + ] + }, + "properties": { + "timestamp": "2019-07-13T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56945, + -1.396298337 + ] + }, + "properties": { + "timestamp": "2019-07-16T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57454, + -1.433773337 + ] + }, + "properties": { + "timestamp": "2019-07-18T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.567125, + -1.395073337 + ] + }, + "properties": { + "timestamp": "2019-07-21T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57660667, + -1.407280004 + ] + }, + "properties": { + "timestamp": "2019-07-23T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.567495, + -1.394068337 + ] + }, + "properties": { + "timestamp": "2019-07-26T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57421333, + -1.399538337 + ] + }, + "properties": { + "timestamp": "2019-07-28T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57075833, + -1.398848337 + ] + }, + "properties": { + "timestamp": "2019-07-31T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.588645, + -1.43390667 + ] + }, + "properties": { + "timestamp": "2019-08-02T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57526167, + -1.407066671 + ] + }, + "properties": { + "timestamp": "2019-08-03T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.583175, + -1.425781671 + ] + }, + "properties": { + "timestamp": "2019-08-05T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5822, + -1.432495004 + ] + }, + "properties": { + "timestamp": "2019-08-07T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57464333, + -1.433035004 + ] + }, + "properties": { + "timestamp": "2019-08-08T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57500667, + -1.442083337 + ] + }, + "properties": { + "timestamp": "2019-08-10T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.577775, + -1.43751167 + ] + }, + "properties": { + "timestamp": "2019-08-12T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.583245, + -1.423968337 + ] + }, + "properties": { + "timestamp": "2019-08-13T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57598, + -1.447208337 + ] + }, + "properties": { + "timestamp": "2019-08-15T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57112167, + -1.43781167 + ] + }, + "properties": { + "timestamp": "2019-08-17T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57342333, + -1.433785004 + ] + }, + "properties": { + "timestamp": "2019-08-18T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57607667, + -1.441413337 + ] + }, + "properties": { + "timestamp": "2019-08-20T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57665833, + -1.44852167 + ] + }, + "properties": { + "timestamp": "2019-08-22T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57771167, + -1.409221671 + ] + }, + "properties": { + "timestamp": "2019-08-23T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.576165, + -1.438855004 + ] + }, + "properties": { + "timestamp": "2019-08-25T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57010333, + -1.448263337 + ] + }, + "properties": { + "timestamp": "2019-08-27T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58079333, + -1.413891671 + ] + }, + "properties": { + "timestamp": "2019-08-28T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56267833, + -1.46140667 + ] + }, + "properties": { + "timestamp": "2019-08-30T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5717, + -1.451520004 + ] + }, + "properties": { + "timestamp": "2019-09-01T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.573715, + -1.434330004 + ] + }, + "properties": { + "timestamp": "2019-09-03T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57466, + -1.433120004 + ] + }, + "properties": { + "timestamp": "2019-09-04T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56206333, + -1.436908337 + ] + }, + "properties": { + "timestamp": "2019-09-06T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58334333, + -1.419746671 + ] + }, + "properties": { + "timestamp": "2019-09-08T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57467833, + -1.433020004 + ] + }, + "properties": { + "timestamp": "2019-09-09T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57329167, + -1.447963337 + ] + }, + "properties": { + "timestamp": "2019-09-11T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57218333, + -1.442335004 + ] + }, + "properties": { + "timestamp": "2019-09-13T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57477167, + -1.433188337 + ] + }, + "properties": { + "timestamp": "2019-09-14T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57330333, + -1.44814667 + ] + }, + "properties": { + "timestamp": "2019-09-16T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57253, + -1.435018337 + ] + }, + "properties": { + "timestamp": "2019-09-18T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56062, + -1.462925004 + ] + }, + "properties": { + "timestamp": "2019-09-19T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57016333, + -1.460730004 + ] + }, + "properties": { + "timestamp": "2019-09-21T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57196833, + -1.46017667 + ] + }, + "properties": { + "timestamp": "2019-09-23T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57468, + -1.433163337 + ] + }, + "properties": { + "timestamp": "2019-09-24T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57216, + -1.450010004 + ] + }, + "properties": { + "timestamp": "2019-09-26T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56194333, + -1.434956671 + ] + }, + "properties": { + "timestamp": "2019-09-28T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53968167, + -1.445750004 + ] + }, + "properties": { + "timestamp": "2019-09-29T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56569667, + -1.43652667 + ] + }, + "properties": { + "timestamp": "2019-10-01T02:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57117667, + -1.448115004 + ] + }, + "properties": { + "timestamp": "2019-10-01T13:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57475333, + -1.43322667 + ] + }, + "properties": { + "timestamp": "2019-10-01T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.576125, + -1.44430167 + ] + }, + "properties": { + "timestamp": "2019-10-02T09:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.574065, + -1.433785004 + ] + }, + "properties": { + "timestamp": "2019-10-02T19:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.569485, + -1.450755004 + ] + }, + "properties": { + "timestamp": "2019-10-03T05:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56271167, + -1.457885004 + ] + }, + "properties": { + "timestamp": "2019-10-03T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55958, + -1.465875004 + ] + }, + "properties": { + "timestamp": "2019-10-04T01:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54053833, + -1.45562667 + ] + }, + "properties": { + "timestamp": "2019-10-04T11:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52824667, + -1.458048337 + ] + }, + "properties": { + "timestamp": "2019-10-04T22:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.541075, + -1.46293667 + ] + }, + "properties": { + "timestamp": "2019-10-05T08:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52874333, + -1.458033337 + ] + }, + "properties": { + "timestamp": "2019-10-05T18:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.545725, + -1.461730004 + ] + }, + "properties": { + "timestamp": "2019-10-06T04:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52904833, + -1.46038667 + ] + }, + "properties": { + "timestamp": "2019-10-06T14:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52805167, + -1.458365004 + ] + }, + "properties": { + "timestamp": "2019-10-07T00:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54859667, + -1.457750004 + ] + }, + "properties": { + "timestamp": "2019-10-07T10:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55717667, + -1.46780167 + ] + }, + "properties": { + "timestamp": "2019-10-07T21:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5726, + -1.449843337 + ] + }, + "properties": { + "timestamp": "2019-10-09T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57138, + -1.44464167 + ] + }, + "properties": { + "timestamp": "2019-10-10T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56117833, + -1.461123337 + ] + }, + "properties": { + "timestamp": "2019-10-12T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.572095, + -1.45171667 + ] + }, + "properties": { + "timestamp": "2019-10-14T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.571825, + -1.437175004 + ] + }, + "properties": { + "timestamp": "2019-10-15T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57213833, + -1.453290004 + ] + }, + "properties": { + "timestamp": "2019-10-18T15:31:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56912833, + -1.45094167 + ] + }, + "properties": { + "timestamp": "2019-10-20T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57477667, + -1.432958337 + ] + }, + "properties": { + "timestamp": "2019-10-21T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58426333, + -1.42936667 + ] + }, + "properties": { + "timestamp": "2019-10-23T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58021, + -1.436128337 + ] + }, + "properties": { + "timestamp": "2019-10-25T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57937333, + -1.409443337 + ] + }, + "properties": { + "timestamp": "2019-10-26T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56265167, + -1.436198337 + ] + }, + "properties": { + "timestamp": "2019-10-28T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.557185, + -1.44368667 + ] + }, + "properties": { + "timestamp": "2019-10-30T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52831667, + -1.45797167 + ] + }, + "properties": { + "timestamp": "2019-10-31T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53237167, + -1.46094167 + ] + }, + "properties": { + "timestamp": "2019-11-03T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51669833, + -1.47663667 + ] + }, + "properties": { + "timestamp": "2019-11-05T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47912333, + -1.466090004 + ] + }, + "properties": { + "timestamp": "2019-11-08T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49250833, + -1.471965004 + ] + }, + "properties": { + "timestamp": "2019-11-10T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48176, + -1.466395004 + ] + }, + "properties": { + "timestamp": "2019-11-13T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5034, + -1.470873337 + ] + }, + "properties": { + "timestamp": "2019-11-15T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48774, + -1.465328337 + ] + }, + "properties": { + "timestamp": "2019-11-18T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50703, + -1.482638337 + ] + }, + "properties": { + "timestamp": "2019-11-20T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56595333, + -1.456953337 + ] + }, + "properties": { + "timestamp": "2019-11-23T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.571045, + -1.395120004 + ] + }, + "properties": { + "timestamp": "2019-11-25T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57519667, + -1.366261671 + ] + }, + "properties": { + "timestamp": "2019-11-28T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.588295, + -1.346001671 + ] + }, + "properties": { + "timestamp": "2019-11-30T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57207, + -1.369351671 + ] + }, + "properties": { + "timestamp": "2019-12-03T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62911667, + -1.341240004 + ] + }, + "properties": { + "timestamp": "2019-12-05T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69051167, + -1.304251671 + ] + }, + "properties": { + "timestamp": "2019-12-08T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68467833, + -1.286570004 + ] + }, + "properties": { + "timestamp": "2019-12-10T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.683325, + -1.288065004 + ] + }, + "properties": { + "timestamp": "2019-12-13T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68932, + -1.296586671 + ] + }, + "properties": { + "timestamp": "2019-12-15T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68537, + -1.290921671 + ] + }, + "properties": { + "timestamp": "2019-12-18T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68321667, + -1.289148337 + ] + }, + "properties": { + "timestamp": "2019-12-20T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68291667, + -1.292440004 + ] + }, + "properties": { + "timestamp": "2019-12-23T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68221833, + -1.285360004 + ] + }, + "properties": { + "timestamp": "2019-12-25T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68308333, + -1.290431671 + ] + }, + "properties": { + "timestamp": "2019-12-28T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68164, + -1.289881671 + ] + }, + "properties": { + "timestamp": "2019-12-30T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68662667, + -1.290151671 + ] + }, + "properties": { + "timestamp": "2020-01-01T05:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68915333, + -1.291343337 + ] + }, + "properties": { + "timestamp": "2020-01-01T15:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68395167, + -1.271656671 + ] + }, + "properties": { + "timestamp": "2020-07-01T01:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68383667, + -1.282720004 + ] + }, + "properties": { + "timestamp": "2020-07-01T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68164333, + -1.275408337 + ] + }, + "properties": { + "timestamp": "2020-07-01T21:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68432833, + -1.282311671 + ] + }, + "properties": { + "timestamp": "2020-07-02T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.684905, + -1.281626671 + ] + }, + "properties": { + "timestamp": "2020-07-02T18:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68427, + -1.281596671 + ] + }, + "properties": { + "timestamp": "2020-07-03T04:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.6844, + -1.282026671 + ] + }, + "properties": { + "timestamp": "2020-07-03T14:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68091, + -1.273963337 + ] + }, + "properties": { + "timestamp": "2020-07-04T00:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68441833, + -1.285361671 + ] + }, + "properties": { + "timestamp": "2020-07-04T10:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68472, + -1.280341671 + ] + }, + "properties": { + "timestamp": "2020-07-04T20:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68421667, + -1.282100004 + ] + }, + "properties": { + "timestamp": "2020-07-05T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68386, + -1.282185004 + ] + }, + "properties": { + "timestamp": "2020-07-05T17:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.684055, + -1.281615004 + ] + }, + "properties": { + "timestamp": "2020-07-06T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68439333, + -1.282083337 + ] + }, + "properties": { + "timestamp": "2020-07-06T13:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68496, + -1.281320004 + ] + }, + "properties": { + "timestamp": "2020-07-06T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68422, + -1.282506671 + ] + }, + "properties": { + "timestamp": "2020-07-07T09:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68494333, + -1.281290004 + ] + }, + "properties": { + "timestamp": "2020-07-07T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68384833, + -1.282058337 + ] + }, + "properties": { + "timestamp": "2020-07-09T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.684285, + -1.281331671 + ] + }, + "properties": { + "timestamp": "2020-07-11T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68460833, + -1.282200004 + ] + }, + "properties": { + "timestamp": "2020-07-14T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68035667, + -1.271073337 + ] + }, + "properties": { + "timestamp": "2020-07-16T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68419833, + -1.282725004 + ] + }, + "properties": { + "timestamp": "2020-07-19T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68482333, + -1.281398337 + ] + }, + "properties": { + "timestamp": "2020-07-21T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68490833, + -1.282001671 + ] + }, + "properties": { + "timestamp": "2020-07-24T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68503167, + -1.281503337 + ] + }, + "properties": { + "timestamp": "2020-07-26T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68417167, + -1.282693337 + ] + }, + "properties": { + "timestamp": "2020-07-29T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68307167, + -1.281241671 + ] + }, + "properties": { + "timestamp": "2020-07-31T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68372833, + -1.281928337 + ] + }, + "properties": { + "timestamp": "2020-08-02T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.668805, + -1.251156671 + ] + }, + "properties": { + "timestamp": "2020-08-04T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.65668, + -1.247035004 + ] + }, + "properties": { + "timestamp": "2020-08-05T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68400167, + -1.281725004 + ] + }, + "properties": { + "timestamp": "2020-08-07T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68428167, + -1.282651671 + ] + }, + "properties": { + "timestamp": "2020-08-09T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67736, + -1.274761671 + ] + }, + "properties": { + "timestamp": "2020-08-10T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68451667, + -1.281948337 + ] + }, + "properties": { + "timestamp": "2020-08-12T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.684245, + -1.282915004 + ] + }, + "properties": { + "timestamp": "2020-08-14T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68548833, + -1.282130004 + ] + }, + "properties": { + "timestamp": "2020-08-15T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68351, + -1.293796671 + ] + }, + "properties": { + "timestamp": "2020-08-17T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68428333, + -1.282960004 + ] + }, + "properties": { + "timestamp": "2020-08-19T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68526, + -1.281790004 + ] + }, + "properties": { + "timestamp": "2020-08-20T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68454667, + -1.283415004 + ] + }, + "properties": { + "timestamp": "2020-08-22T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68421333, + -1.282923337 + ] + }, + "properties": { + "timestamp": "2020-08-24T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68557167, + -1.281593337 + ] + }, + "properties": { + "timestamp": "2020-08-25T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68450833, + -1.282371671 + ] + }, + "properties": { + "timestamp": "2020-08-27T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68427167, + -1.282840004 + ] + }, + "properties": { + "timestamp": "2020-08-29T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67643833, + -1.274046671 + ] + }, + "properties": { + "timestamp": "2020-08-30T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66776333, + -1.285793337 + ] + }, + "properties": { + "timestamp": "2020-09-01T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67129, + -1.290098337 + ] + }, + "properties": { + "timestamp": "2020-09-03T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.682435, + -1.299883337 + ] + }, + "properties": { + "timestamp": "2020-09-04T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68390833, + -1.281475004 + ] + }, + "properties": { + "timestamp": "2020-09-06T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68437667, + -1.282695004 + ] + }, + "properties": { + "timestamp": "2020-09-08T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.685085, + -1.281020004 + ] + }, + "properties": { + "timestamp": "2020-09-09T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68477667, + -1.281835004 + ] + }, + "properties": { + "timestamp": "2020-09-11T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64486833, + -1.354140004 + ] + }, + "properties": { + "timestamp": "2020-09-13T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59724667, + -1.372618337 + ] + }, + "properties": { + "timestamp": "2020-09-14T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.547755, + -1.355166671 + ] + }, + "properties": { + "timestamp": "2020-09-16T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.516485, + -1.380435004 + ] + }, + "properties": { + "timestamp": "2020-09-18T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51000333, + -1.376731671 + ] + }, + "properties": { + "timestamp": "2020-09-19T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51648, + -1.380526671 + ] + }, + "properties": { + "timestamp": "2020-09-21T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49891167, + -1.381055004 + ] + }, + "properties": { + "timestamp": "2020-09-23T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51217167, + -1.377431671 + ] + }, + "properties": { + "timestamp": "2020-09-24T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52098833, + -1.383438337 + ] + }, + "properties": { + "timestamp": "2020-09-26T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.516235, + -1.380015004 + ] + }, + "properties": { + "timestamp": "2020-09-28T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.520915, + -1.383843337 + ] + }, + "properties": { + "timestamp": "2020-09-29T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50485167, + -1.377013337 + ] + }, + "properties": { + "timestamp": "2020-10-01T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51328, + -1.381765004 + ] + }, + "properties": { + "timestamp": "2020-10-01T13:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52061167, + -1.384133337 + ] + }, + "properties": { + "timestamp": "2020-10-01T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51203, + -1.381675004 + ] + }, + "properties": { + "timestamp": "2020-10-02T09:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52280167, + -1.378466671 + ] + }, + "properties": { + "timestamp": "2020-10-02T20:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55237333, + -1.365895004 + ] + }, + "properties": { + "timestamp": "2020-10-03T06:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55579, + -1.364811671 + ] + }, + "properties": { + "timestamp": "2020-10-03T16:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56902667, + -1.363203337 + ] + }, + "properties": { + "timestamp": "2020-10-04T02:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56591167, + -1.366880004 + ] + }, + "properties": { + "timestamp": "2020-10-04T12:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57165667, + -1.368381671 + ] + }, + "properties": { + "timestamp": "2020-10-04T22:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58016333, + -1.375123337 + ] + }, + "properties": { + "timestamp": "2020-10-05T08:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57821, + -1.380031671 + ] + }, + "properties": { + "timestamp": "2020-10-05T18:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.574775, + -1.377993337 + ] + }, + "properties": { + "timestamp": "2020-10-06T04:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.571045, + -1.379248337 + ] + }, + "properties": { + "timestamp": "2020-10-06T14:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57370833, + -1.379573337 + ] + }, + "properties": { + "timestamp": "2020-10-07T01:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56781167, + -1.363956671 + ] + }, + "properties": { + "timestamp": "2020-10-07T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53766, + -1.353435004 + ] + }, + "properties": { + "timestamp": "2020-10-07T21:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53240667, + -1.357383337 + ] + }, + "properties": { + "timestamp": "2020-10-09T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.525035, + -1.380268337 + ] + }, + "properties": { + "timestamp": "2020-10-10T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57634833, + -1.393731671 + ] + }, + "properties": { + "timestamp": "2020-10-12T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55727833, + -1.45005667 + ] + }, + "properties": { + "timestamp": "2020-10-14T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55946167, + -1.46388667 + ] + }, + "properties": { + "timestamp": "2020-10-15T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.561185, + -1.434196671 + ] + }, + "properties": { + "timestamp": "2020-10-17T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56756667, + -1.397453337 + ] + }, + "properties": { + "timestamp": "2020-10-19T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56242, + -1.385760004 + ] + }, + "properties": { + "timestamp": "2020-10-20T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.584165, + -1.363763337 + ] + }, + "properties": { + "timestamp": "2020-10-22T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57035667, + -1.399286671 + ] + }, + "properties": { + "timestamp": "2020-10-24T07:31:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55974167, + -1.398053337 + ] + }, + "properties": { + "timestamp": "2020-10-25T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56303667, + -1.382868337 + ] + }, + "properties": { + "timestamp": "2020-10-27T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57040667, + -1.397753337 + ] + }, + "properties": { + "timestamp": "2020-10-29T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55529, + -1.387795004 + ] + }, + "properties": { + "timestamp": "2020-10-30T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56825167, + -1.394093337 + ] + }, + "properties": { + "timestamp": "2020-11-01T23:31:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56965, + -1.396221671 + ] + }, + "properties": { + "timestamp": "2020-11-04T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.570855, + -1.399763337 + ] + }, + "properties": { + "timestamp": "2020-11-07T07:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57503333, + -1.400071671 + ] + }, + "properties": { + "timestamp": "2020-11-09T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.570355, + -1.398360004 + ] + }, + "properties": { + "timestamp": "2020-11-12T07:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57192667, + -1.398245004 + ] + }, + "properties": { + "timestamp": "2020-11-14T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56921833, + -1.400131671 + ] + }, + "properties": { + "timestamp": "2020-11-17T07:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57293167, + -1.400101671 + ] + }, + "properties": { + "timestamp": "2020-11-19T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57825833, + -1.362578337 + ] + }, + "properties": { + "timestamp": "2020-11-22T07:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57544833, + -1.365951671 + ] + }, + "properties": { + "timestamp": "2020-11-24T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56782333, + -1.357993337 + ] + }, + "properties": { + "timestamp": "2020-11-27T07:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56619667, + -1.357818337 + ] + }, + "properties": { + "timestamp": "2020-11-29T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56294667, + -1.349193337 + ] + }, + "properties": { + "timestamp": "2020-12-02T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56474, + -1.356423337 + ] + }, + "properties": { + "timestamp": "2020-12-04T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55102667, + -1.354791671 + ] + }, + "properties": { + "timestamp": "2020-12-07T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55188, + -1.366196671 + ] + }, + "properties": { + "timestamp": "2020-12-09T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46465667, + -1.457908337 + ] + }, + "properties": { + "timestamp": "2020-12-12T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46936833, + -1.459791671 + ] + }, + "properties": { + "timestamp": "2020-12-15T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48716, + -1.473068337 + ] + }, + "properties": { + "timestamp": "2020-12-18T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49985167, + -1.47161167 + ] + }, + "properties": { + "timestamp": "2020-12-20T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46272, + -1.459711671 + ] + }, + "properties": { + "timestamp": "2020-12-23T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.478265, + -1.456598337 + ] + }, + "properties": { + "timestamp": "2020-12-25T23:31:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48311833, + -1.47137167 + ] + }, + "properties": { + "timestamp": "2020-12-28T07:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.498145, + -1.470760004 + ] + }, + "properties": { + "timestamp": "2020-12-30T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4841, + -1.47210667 + ] + }, + "properties": { + "timestamp": "2021-01-01T05:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.494175, + -1.47364167 + ] + }, + "properties": { + "timestamp": "2021-01-01T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49114333, + -1.468138337 + ] + }, + "properties": { + "timestamp": "2021-01-02T01:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47949, + -1.469753337 + ] + }, + "properties": { + "timestamp": "2021-01-02T11:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51195, + -1.48062167 + ] + }, + "properties": { + "timestamp": "2021-01-02T21:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49937333, + -1.48722167 + ] + }, + "properties": { + "timestamp": "2021-01-03T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50627833, + -1.485048337 + ] + }, + "properties": { + "timestamp": "2021-01-03T17:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50235333, + -1.48124667 + ] + }, + "properties": { + "timestamp": "2021-01-04T03:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49636333, + -1.478168337 + ] + }, + "properties": { + "timestamp": "2021-01-04T13:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51193333, + -1.478465004 + ] + }, + "properties": { + "timestamp": "2021-01-05T01:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53668833, + -1.450208337 + ] + }, + "properties": { + "timestamp": "2021-01-05T11:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53908667, + -1.461080004 + ] + }, + "properties": { + "timestamp": "2021-01-05T21:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54886167, + -1.456203337 + ] + }, + "properties": { + "timestamp": "2021-01-06T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53046833, + -1.459688337 + ] + }, + "properties": { + "timestamp": "2021-01-06T18:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W77", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22401667, + -1.183471671 + ] + }, + "properties": { + "timestamp": "2018-03-25T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20997167, + -1.175565005 + ] + }, + "properties": { + "timestamp": "2018-03-27T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.222995, + -1.184490005 + ] + }, + "properties": { + "timestamp": "2018-03-29T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22136833, + -1.182930005 + ] + }, + "properties": { + "timestamp": "2018-03-30T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22432667, + -1.184250005 + ] + }, + "properties": { + "timestamp": "2018-04-01T02:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.210085, + -1.176083338 + ] + }, + "properties": { + "timestamp": "2018-04-01T12:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22377167, + -1.184256671 + ] + }, + "properties": { + "timestamp": "2018-04-01T22:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21123167, + -1.176660005 + ] + }, + "properties": { + "timestamp": "2018-04-02T08:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.225265, + -1.182906671 + ] + }, + "properties": { + "timestamp": "2018-04-02T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21170667, + -1.176275005 + ] + }, + "properties": { + "timestamp": "2018-04-03T05:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21299333, + -1.177386671 + ] + }, + "properties": { + "timestamp": "2018-04-03T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22028333, + -1.178423338 + ] + }, + "properties": { + "timestamp": "2018-04-04T01:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21253667, + -1.177005005 + ] + }, + "properties": { + "timestamp": "2018-04-04T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22387667, + -1.182148338 + ] + }, + "properties": { + "timestamp": "2018-04-04T21:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21132667, + -1.176601671 + ] + }, + "properties": { + "timestamp": "2018-04-05T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22044667, + -1.177638338 + ] + }, + "properties": { + "timestamp": "2018-04-05T17:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21720333, + -1.175295005 + ] + }, + "properties": { + "timestamp": "2018-04-06T04:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21665667, + -1.175765005 + ] + }, + "properties": { + "timestamp": "2018-04-06T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22482167, + -1.184981671 + ] + }, + "properties": { + "timestamp": "2018-04-07T01:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21263667, + -1.175711671 + ] + }, + "properties": { + "timestamp": "2018-04-07T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22051667, + -1.178196671 + ] + }, + "properties": { + "timestamp": "2018-04-07T21:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.211405, + -1.175968338 + ] + }, + "properties": { + "timestamp": "2018-04-09T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22027, + -1.178121671 + ] + }, + "properties": { + "timestamp": "2018-04-10T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21259333, + -1.176805005 + ] + }, + "properties": { + "timestamp": "2018-04-12T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21218, + -1.176618338 + ] + }, + "properties": { + "timestamp": "2018-04-14T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22609833, + -1.180338338 + ] + }, + "properties": { + "timestamp": "2018-04-15T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21892833, + -1.178860005 + ] + }, + "properties": { + "timestamp": "2018-04-17T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21619, + -1.176563338 + ] + }, + "properties": { + "timestamp": "2018-04-19T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22099667, + -1.178108338 + ] + }, + "properties": { + "timestamp": "2018-04-20T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21883, + -1.178358338 + ] + }, + "properties": { + "timestamp": "2018-04-22T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21263333, + -1.176001671 + ] + }, + "properties": { + "timestamp": "2018-04-24T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22005333, + -1.178863338 + ] + }, + "properties": { + "timestamp": "2018-04-25T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21875, + -1.178486671 + ] + }, + "properties": { + "timestamp": "2018-04-27T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21651167, + -1.175865005 + ] + }, + "properties": { + "timestamp": "2018-04-29T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.219965, + -1.177895005 + ] + }, + "properties": { + "timestamp": "2018-04-30T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21914333, + -1.178718338 + ] + }, + "properties": { + "timestamp": "2018-05-02T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21391833, + -1.174068338 + ] + }, + "properties": { + "timestamp": "2018-05-04T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21950833, + -1.178243338 + ] + }, + "properties": { + "timestamp": "2018-05-05T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21875, + -1.178366671 + ] + }, + "properties": { + "timestamp": "2018-05-07T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.213765, + -1.174516671 + ] + }, + "properties": { + "timestamp": "2018-05-09T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22063667, + -1.177155005 + ] + }, + "properties": { + "timestamp": "2018-05-10T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21994833, + -1.173353338 + ] + }, + "properties": { + "timestamp": "2018-05-12T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21732167, + -1.175161671 + ] + }, + "properties": { + "timestamp": "2018-05-14T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22082667, + -1.178723338 + ] + }, + "properties": { + "timestamp": "2018-05-15T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21944167, + -1.178665005 + ] + }, + "properties": { + "timestamp": "2018-05-17T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21826, + -1.176748338 + ] + }, + "properties": { + "timestamp": "2018-05-19T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22110667, + -1.178395005 + ] + }, + "properties": { + "timestamp": "2018-05-20T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.215685, + -1.174140005 + ] + }, + "properties": { + "timestamp": "2018-05-22T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21635, + -1.179301671 + ] + }, + "properties": { + "timestamp": "2018-05-24T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22010167, + -1.175848338 + ] + }, + "properties": { + "timestamp": "2018-05-27T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22072333, + -1.178098338 + ] + }, + "properties": { + "timestamp": "2018-05-29T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21780167, + -1.176225005 + ] + }, + "properties": { + "timestamp": "2018-06-01T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21986333, + -1.177771671 + ] + }, + "properties": { + "timestamp": "2018-06-03T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2134, + -1.172070005 + ] + }, + "properties": { + "timestamp": "2018-06-06T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22913333, + -1.179125005 + ] + }, + "properties": { + "timestamp": "2018-06-08T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21126667, + -1.171163338 + ] + }, + "properties": { + "timestamp": "2018-06-11T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21799667, + -1.178691671 + ] + }, + "properties": { + "timestamp": "2018-06-13T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21168333, + -1.170893338 + ] + }, + "properties": { + "timestamp": "2018-06-16T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21880167, + -1.176163338 + ] + }, + "properties": { + "timestamp": "2018-06-18T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21146167, + -1.170985005 + ] + }, + "properties": { + "timestamp": "2018-06-21T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21666, + -1.176565005 + ] + }, + "properties": { + "timestamp": "2018-06-23T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22117333, + -1.173138338 + ] + }, + "properties": { + "timestamp": "2018-06-26T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20994, + -1.169950005 + ] + }, + "properties": { + "timestamp": "2018-06-29T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2162, + -1.176811671 + ] + }, + "properties": { + "timestamp": "2018-07-01T02:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21142333, + -1.174170005 + ] + }, + "properties": { + "timestamp": "2018-07-01T12:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22225167, + -1.175815005 + ] + }, + "properties": { + "timestamp": "2018-07-01T22:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.206795, + -1.163630005 + ] + }, + "properties": { + "timestamp": "2018-07-02T08:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21828333, + -1.176658338 + ] + }, + "properties": { + "timestamp": "2018-07-02T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21167, + -1.172730005 + ] + }, + "properties": { + "timestamp": "2018-07-03T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20944333, + -1.170831671 + ] + }, + "properties": { + "timestamp": "2018-07-03T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.216575, + -1.177725005 + ] + }, + "properties": { + "timestamp": "2018-07-04T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21137667, + -1.174305005 + ] + }, + "properties": { + "timestamp": "2018-07-04T13:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21719167, + -1.179450005 + ] + }, + "properties": { + "timestamp": "2018-07-04T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21077, + -1.167911671 + ] + }, + "properties": { + "timestamp": "2018-07-05T09:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21691333, + -1.177668338 + ] + }, + "properties": { + "timestamp": "2018-07-05T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20828167, + -1.163851671 + ] + }, + "properties": { + "timestamp": "2018-07-06T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.222425, + -1.174463338 + ] + }, + "properties": { + "timestamp": "2018-07-06T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.217625, + -1.178930005 + ] + }, + "properties": { + "timestamp": "2018-07-07T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.208855, + -1.163741671 + ] + }, + "properties": { + "timestamp": "2018-07-07T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21739667, + -1.177683338 + ] + }, + "properties": { + "timestamp": "2018-07-07T21:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21729167, + -1.177611671 + ] + }, + "properties": { + "timestamp": "2018-07-09T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21703, + -1.169585005 + ] + }, + "properties": { + "timestamp": "2018-07-12T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22105, + -1.175088338 + ] + }, + "properties": { + "timestamp": "2018-07-14T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21227833, + -1.159998338 + ] + }, + "properties": { + "timestamp": "2018-07-17T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21699167, + -1.177280005 + ] + }, + "properties": { + "timestamp": "2018-07-19T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21505833, + -1.163868338 + ] + }, + "properties": { + "timestamp": "2018-07-22T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21915167, + -1.177161671 + ] + }, + "properties": { + "timestamp": "2018-07-24T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.211565, + -1.171345005 + ] + }, + "properties": { + "timestamp": "2018-07-27T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22208333, + -1.177101671 + ] + }, + "properties": { + "timestamp": "2018-07-29T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20582333, + -1.160248338 + ] + }, + "properties": { + "timestamp": "2018-08-01T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22421833, + -1.177058338 + ] + }, + "properties": { + "timestamp": "2018-08-02T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20405333, + -1.177855005 + ] + }, + "properties": { + "timestamp": "2018-08-04T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20400333, + -1.178146671 + ] + }, + "properties": { + "timestamp": "2018-08-06T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.164805, + -1.192308338 + ] + }, + "properties": { + "timestamp": "2018-08-07T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.176975, + -1.228128338 + ] + }, + "properties": { + "timestamp": "2018-08-09T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17348167, + -1.240951671 + ] + }, + "properties": { + "timestamp": "2018-08-11T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18280833, + -1.216811671 + ] + }, + "properties": { + "timestamp": "2018-08-12T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16939333, + -1.266128338 + ] + }, + "properties": { + "timestamp": "2018-08-14T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.186695, + -1.273256671 + ] + }, + "properties": { + "timestamp": "2018-08-16T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18155667, + -1.277106671 + ] + }, + "properties": { + "timestamp": "2018-08-17T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20652167, + -1.243746671 + ] + }, + "properties": { + "timestamp": "2018-08-19T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20645333, + -1.162196671 + ] + }, + "properties": { + "timestamp": "2018-08-21T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.214305, + -1.174206671 + ] + }, + "properties": { + "timestamp": "2018-08-22T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.210275, + -1.170656671 + ] + }, + "properties": { + "timestamp": "2018-08-24T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20053, + -1.155055005 + ] + }, + "properties": { + "timestamp": "2018-08-26T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.220455, + -1.176510005 + ] + }, + "properties": { + "timestamp": "2018-08-27T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.216555, + -1.178036671 + ] + }, + "properties": { + "timestamp": "2018-08-29T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.201325, + -1.167038338 + ] + }, + "properties": { + "timestamp": "2018-08-31T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21763, + -1.174603338 + ] + }, + "properties": { + "timestamp": "2018-09-01T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19833333, + -1.189425005 + ] + }, + "properties": { + "timestamp": "2018-09-03T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18610833, + -1.180945005 + ] + }, + "properties": { + "timestamp": "2018-09-05T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1918, + -1.189188338 + ] + }, + "properties": { + "timestamp": "2018-09-06T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16432667, + -1.191255005 + ] + }, + "properties": { + "timestamp": "2018-09-08T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16354167, + -1.189970005 + ] + }, + "properties": { + "timestamp": "2018-09-10T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19206667, + -1.190810005 + ] + }, + "properties": { + "timestamp": "2018-09-11T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.13651333, + -1.277363338 + ] + }, + "properties": { + "timestamp": "2018-09-13T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14596667, + -1.272465004 + ] + }, + "properties": { + "timestamp": "2018-09-15T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14171, + -1.286823338 + ] + }, + "properties": { + "timestamp": "2018-09-16T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14061167, + -1.281726671 + ] + }, + "properties": { + "timestamp": "2018-09-18T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12067, + -1.266725004 + ] + }, + "properties": { + "timestamp": "2018-09-20T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10044167, + -1.251708338 + ] + }, + "properties": { + "timestamp": "2018-09-21T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06590667, + -1.258463338 + ] + }, + "properties": { + "timestamp": "2018-09-23T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07157833, + -1.270400005 + ] + }, + "properties": { + "timestamp": "2018-09-25T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.05833833, + -1.245195005 + ] + }, + "properties": { + "timestamp": "2018-09-26T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07103333, + -1.249360005 + ] + }, + "properties": { + "timestamp": "2018-09-28T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.07579333, + -1.244698338 + ] + }, + "properties": { + "timestamp": "2018-09-30T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09407667, + -1.240208338 + ] + }, + "properties": { + "timestamp": "2018-10-01T05:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09620667, + -1.251506671 + ] + }, + "properties": { + "timestamp": "2018-10-01T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10230833, + -1.250183338 + ] + }, + "properties": { + "timestamp": "2018-10-02T01:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.089585, + -1.246686671 + ] + }, + "properties": { + "timestamp": "2018-10-02T12:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10346167, + -1.252623338 + ] + }, + "properties": { + "timestamp": "2018-10-02T22:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09241167, + -1.242206671 + ] + }, + "properties": { + "timestamp": "2018-10-03T08:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.103465, + -1.247081671 + ] + }, + "properties": { + "timestamp": "2018-10-03T18:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10663167, + -1.240581671 + ] + }, + "properties": { + "timestamp": "2018-10-04T04:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.097575, + -1.245843338 + ] + }, + "properties": { + "timestamp": "2018-10-04T14:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10381167, + -1.253011671 + ] + }, + "properties": { + "timestamp": "2018-10-05T00:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08814167, + -1.247735005 + ] + }, + "properties": { + "timestamp": "2018-10-05T10:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10341333, + -1.252398338 + ] + }, + "properties": { + "timestamp": "2018-10-05T20:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09423833, + -1.241203338 + ] + }, + "properties": { + "timestamp": "2018-10-06T06:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.100655, + -1.249306671 + ] + }, + "properties": { + "timestamp": "2018-10-06T16:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10690833, + -1.245475005 + ] + }, + "properties": { + "timestamp": "2018-10-07T02:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09463833, + -1.224240005 + ] + }, + "properties": { + "timestamp": "2018-10-07T12:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08943, + -1.214128338 + ] + }, + "properties": { + "timestamp": "2018-10-07T22:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.095475, + -1.199780005 + ] + }, + "properties": { + "timestamp": "2018-10-09T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09207333, + -1.211200005 + ] + }, + "properties": { + "timestamp": "2018-10-11T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10311833, + -1.289698338 + ] + }, + "properties": { + "timestamp": "2018-10-12T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.114335, + -1.321643338 + ] + }, + "properties": { + "timestamp": "2018-10-14T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12828333, + -1.247896671 + ] + }, + "properties": { + "timestamp": "2018-10-16T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11759, + -1.269840004 + ] + }, + "properties": { + "timestamp": "2018-10-17T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10973, + -1.268726671 + ] + }, + "properties": { + "timestamp": "2018-10-19T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.138645, + -1.260345004 + ] + }, + "properties": { + "timestamp": "2018-10-21T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10195333, + -1.247665005 + ] + }, + "properties": { + "timestamp": "2018-10-22T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11744833, + -1.249958338 + ] + }, + "properties": { + "timestamp": "2018-10-24T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11959333, + -1.244610005 + ] + }, + "properties": { + "timestamp": "2018-10-26T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10303333, + -1.248116671 + ] + }, + "properties": { + "timestamp": "2018-10-27T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.123675, + -1.251680005 + ] + }, + "properties": { + "timestamp": "2018-10-29T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11289833, + -1.273678338 + ] + }, + "properties": { + "timestamp": "2018-10-31T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09301167, + -1.276703338 + ] + }, + "properties": { + "timestamp": "2018-11-02T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.06963667, + -1.245856671 + ] + }, + "properties": { + "timestamp": "2018-11-04T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.09350167, + -1.255920005 + ] + }, + "properties": { + "timestamp": "2018-11-07T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10020667, + -1.252496671 + ] + }, + "properties": { + "timestamp": "2018-11-09T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.14087333, + -1.210396671 + ] + }, + "properties": { + "timestamp": "2018-11-12T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.209325, + -1.170990005 + ] + }, + "properties": { + "timestamp": "2018-11-14T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16889, + -1.182545005 + ] + }, + "properties": { + "timestamp": "2018-11-17T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20741667, + -1.161246671 + ] + }, + "properties": { + "timestamp": "2018-11-20T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19757667, + -1.157490005 + ] + }, + "properties": { + "timestamp": "2018-11-22T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20082167, + -1.154353338 + ] + }, + "properties": { + "timestamp": "2018-11-25T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20263833, + -1.155665005 + ] + }, + "properties": { + "timestamp": "2018-11-27T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.200595, + -1.160175005 + ] + }, + "properties": { + "timestamp": "2018-11-30T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20038833, + -1.162298338 + ] + }, + "properties": { + "timestamp": "2018-12-02T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20516333, + -1.157088338 + ] + }, + "properties": { + "timestamp": "2018-12-05T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.199995, + -1.166598338 + ] + }, + "properties": { + "timestamp": "2018-12-07T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19668167, + -1.158330005 + ] + }, + "properties": { + "timestamp": "2018-12-10T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19917167, + -1.162958338 + ] + }, + "properties": { + "timestamp": "2018-12-12T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20298167, + -1.159273338 + ] + }, + "properties": { + "timestamp": "2018-12-15T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20998167, + -1.170383338 + ] + }, + "properties": { + "timestamp": "2018-12-17T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20757667, + -1.166561671 + ] + }, + "properties": { + "timestamp": "2018-12-20T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.215225, + -1.175781671 + ] + }, + "properties": { + "timestamp": "2018-12-22T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18858167, + -1.241408338 + ] + }, + "properties": { + "timestamp": "2018-12-25T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24854333, + -1.251753338 + ] + }, + "properties": { + "timestamp": "2018-12-27T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26627833, + -1.249305004 + ] + }, + "properties": { + "timestamp": "2018-12-30T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27729667, + -1.251455004 + ] + }, + "properties": { + "timestamp": "2019-01-01T02:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24636833, + -1.246291671 + ] + }, + "properties": { + "timestamp": "2019-01-01T12:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25250833, + -1.239835004 + ] + }, + "properties": { + "timestamp": "2019-01-01T22:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24116, + -1.275143338 + ] + }, + "properties": { + "timestamp": "2019-01-02T09:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.26054167, + -1.290770004 + ] + }, + "properties": { + "timestamp": "2019-01-02T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.275375, + -1.334278338 + ] + }, + "properties": { + "timestamp": "2019-01-03T05:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28722667, + -1.338696671 + ] + }, + "properties": { + "timestamp": "2019-01-03T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29510333, + -1.336723338 + ] + }, + "properties": { + "timestamp": "2019-01-04T01:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27799833, + -1.340068338 + ] + }, + "properties": { + "timestamp": "2019-01-04T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30095, + -1.354136671 + ] + }, + "properties": { + "timestamp": "2019-01-04T21:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33774333, + -1.370431671 + ] + }, + "properties": { + "timestamp": "2019-01-05T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40129833, + -1.325931671 + ] + }, + "properties": { + "timestamp": "2019-01-05T17:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39712, + -1.333153337 + ] + }, + "properties": { + "timestamp": "2019-01-06T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38100667, + -1.364915004 + ] + }, + "properties": { + "timestamp": "2019-01-06T13:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38116, + -1.349513337 + ] + }, + "properties": { + "timestamp": "2019-01-06T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37464, + -1.387925004 + ] + }, + "properties": { + "timestamp": "2019-01-07T09:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38116667, + -1.376198337 + ] + }, + "properties": { + "timestamp": "2019-01-07T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3849, + -1.352355004 + ] + }, + "properties": { + "timestamp": "2019-01-08T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36153167, + -1.366741671 + ] + }, + "properties": { + "timestamp": "2019-01-10T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34901833, + -1.385326671 + ] + }, + "properties": { + "timestamp": "2019-01-12T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32004167, + -1.386986671 + ] + }, + "properties": { + "timestamp": "2019-01-13T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23619667, + -1.255250004 + ] + }, + "properties": { + "timestamp": "2019-01-15T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23635333, + -1.241463338 + ] + }, + "properties": { + "timestamp": "2019-01-17T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24852, + -1.233155004 + ] + }, + "properties": { + "timestamp": "2019-01-18T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33386167, + -1.407215004 + ] + }, + "properties": { + "timestamp": "2019-01-20T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36062667, + -1.391228337 + ] + }, + "properties": { + "timestamp": "2019-01-22T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44495833, + -1.318443337 + ] + }, + "properties": { + "timestamp": "2019-01-23T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44636, + -1.337756671 + ] + }, + "properties": { + "timestamp": "2019-01-25T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43696167, + -1.348763337 + ] + }, + "properties": { + "timestamp": "2019-01-27T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43243333, + -1.337686671 + ] + }, + "properties": { + "timestamp": "2019-01-28T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.393875, + -1.333075004 + ] + }, + "properties": { + "timestamp": "2019-01-30T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34033833, + -1.363991671 + ] + }, + "properties": { + "timestamp": "2019-02-01T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22427833, + -1.217406671 + ] + }, + "properties": { + "timestamp": "2019-02-03T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19599833, + -1.160016671 + ] + }, + "properties": { + "timestamp": "2019-02-06T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22065667, + -1.175521671 + ] + }, + "properties": { + "timestamp": "2019-02-08T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22015333, + -1.174036671 + ] + }, + "properties": { + "timestamp": "2019-02-11T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22106667, + -1.175976671 + ] + }, + "properties": { + "timestamp": "2019-02-13T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21566667, + -1.173860005 + ] + }, + "properties": { + "timestamp": "2019-02-16T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.221395, + -1.176845005 + ] + }, + "properties": { + "timestamp": "2019-02-18T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.212245, + -1.172683338 + ] + }, + "properties": { + "timestamp": "2019-02-21T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22113, + -1.176666671 + ] + }, + "properties": { + "timestamp": "2019-02-23T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20306167, + -1.151388338 + ] + }, + "properties": { + "timestamp": "2019-02-26T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22136167, + -1.183581671 + ] + }, + "properties": { + "timestamp": "2019-02-28T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21255333, + -1.173161671 + ] + }, + "properties": { + "timestamp": "2019-03-02T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20284, + -1.149400005 + ] + }, + "properties": { + "timestamp": "2019-03-04T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22006167, + -1.175948338 + ] + }, + "properties": { + "timestamp": "2019-03-06T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22075167, + -1.176196671 + ] + }, + "properties": { + "timestamp": "2019-03-07T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.213205, + -1.173030005 + ] + }, + "properties": { + "timestamp": "2019-03-09T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.219795, + -1.174745005 + ] + }, + "properties": { + "timestamp": "2019-03-11T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22212667, + -1.175813338 + ] + }, + "properties": { + "timestamp": "2019-03-12T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21215667, + -1.172978338 + ] + }, + "properties": { + "timestamp": "2019-03-14T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21553167, + -1.173748338 + ] + }, + "properties": { + "timestamp": "2019-03-16T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22051833, + -1.176086671 + ] + }, + "properties": { + "timestamp": "2019-03-17T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21221333, + -1.172615005 + ] + }, + "properties": { + "timestamp": "2019-03-19T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22283167, + -1.172823338 + ] + }, + "properties": { + "timestamp": "2019-03-21T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21975333, + -1.175383338 + ] + }, + "properties": { + "timestamp": "2019-03-22T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20578667, + -1.150795005 + ] + }, + "properties": { + "timestamp": "2019-03-24T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21703333, + -1.174160005 + ] + }, + "properties": { + "timestamp": "2019-03-26T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22101667, + -1.176450005 + ] + }, + "properties": { + "timestamp": "2019-03-27T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21217167, + -1.172663338 + ] + }, + "properties": { + "timestamp": "2019-03-29T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21343667, + -1.173161671 + ] + }, + "properties": { + "timestamp": "2019-03-31T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21246333, + -1.172563338 + ] + }, + "properties": { + "timestamp": "2019-04-01T05:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21651667, + -1.175696671 + ] + }, + "properties": { + "timestamp": "2019-04-01T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22133333, + -1.176261671 + ] + }, + "properties": { + "timestamp": "2019-04-02T01:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20491833, + -1.149468338 + ] + }, + "properties": { + "timestamp": "2019-04-02T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21964833, + -1.175948338 + ] + }, + "properties": { + "timestamp": "2019-04-02T21:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.204345, + -1.152325005 + ] + }, + "properties": { + "timestamp": "2019-04-03T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22066833, + -1.176401671 + ] + }, + "properties": { + "timestamp": "2019-04-03T18:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20813, + -1.158645005 + ] + }, + "properties": { + "timestamp": "2019-04-04T04:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20466, + -1.153865005 + ] + }, + "properties": { + "timestamp": "2019-04-04T14:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22082833, + -1.176360005 + ] + }, + "properties": { + "timestamp": "2019-04-05T00:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20429333, + -1.152321671 + ] + }, + "properties": { + "timestamp": "2019-04-05T10:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.221285, + -1.175461671 + ] + }, + "properties": { + "timestamp": "2019-04-05T22:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20434833, + -1.152338338 + ] + }, + "properties": { + "timestamp": "2019-04-06T08:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23549833, + -1.170730005 + ] + }, + "properties": { + "timestamp": "2019-04-06T21:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20439, + -1.152383338 + ] + }, + "properties": { + "timestamp": "2019-04-07T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.215435, + -1.174210005 + ] + }, + "properties": { + "timestamp": "2019-04-07T17:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21962833, + -1.161335005 + ] + }, + "properties": { + "timestamp": "2019-04-08T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21220167, + -1.172686671 + ] + }, + "properties": { + "timestamp": "2019-04-10T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22055333, + -1.176710005 + ] + }, + "properties": { + "timestamp": "2019-04-11T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20954833, + -1.166026671 + ] + }, + "properties": { + "timestamp": "2019-04-13T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20434833, + -1.152378338 + ] + }, + "properties": { + "timestamp": "2019-04-15T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21699, + -1.173338338 + ] + }, + "properties": { + "timestamp": "2019-04-17T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22044667, + -1.175388338 + ] + }, + "properties": { + "timestamp": "2019-04-18T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21221167, + -1.172670005 + ] + }, + "properties": { + "timestamp": "2019-04-20T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21271333, + -1.173060005 + ] + }, + "properties": { + "timestamp": "2019-04-22T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22025833, + -1.175955005 + ] + }, + "properties": { + "timestamp": "2019-04-23T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21223833, + -1.172668338 + ] + }, + "properties": { + "timestamp": "2019-04-25T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.213055, + -1.173170005 + ] + }, + "properties": { + "timestamp": "2019-04-27T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22001667, + -1.176505005 + ] + }, + "properties": { + "timestamp": "2019-04-28T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21243, + -1.173201671 + ] + }, + "properties": { + "timestamp": "2019-04-30T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21938, + -1.175756671 + ] + }, + "properties": { + "timestamp": "2019-05-02T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21937, + -1.176433338 + ] + }, + "properties": { + "timestamp": "2019-05-03T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20576, + -1.151511671 + ] + }, + "properties": { + "timestamp": "2019-05-05T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20972833, + -1.168111671 + ] + }, + "properties": { + "timestamp": "2019-05-07T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2198, + -1.176530005 + ] + }, + "properties": { + "timestamp": "2019-05-08T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20059833, + -1.159551671 + ] + }, + "properties": { + "timestamp": "2019-05-10T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.209695, + -1.168130005 + ] + }, + "properties": { + "timestamp": "2019-05-12T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22086, + -1.177101671 + ] + }, + "properties": { + "timestamp": "2019-05-13T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20430667, + -1.162000005 + ] + }, + "properties": { + "timestamp": "2019-05-15T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21090833, + -1.169218338 + ] + }, + "properties": { + "timestamp": "2019-05-17T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22135167, + -1.175668338 + ] + }, + "properties": { + "timestamp": "2019-05-18T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20043167, + -1.157628338 + ] + }, + "properties": { + "timestamp": "2019-05-20T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.210525, + -1.169028338 + ] + }, + "properties": { + "timestamp": "2019-05-22T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21180667, + -1.170565005 + ] + }, + "properties": { + "timestamp": "2019-05-24T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.200545, + -1.159383338 + ] + }, + "properties": { + "timestamp": "2019-05-26T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21236, + -1.172926671 + ] + }, + "properties": { + "timestamp": "2019-05-29T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20426167, + -1.162281671 + ] + }, + "properties": { + "timestamp": "2019-05-31T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20962333, + -1.171175005 + ] + }, + "properties": { + "timestamp": "2019-06-03T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20386667, + -1.150596671 + ] + }, + "properties": { + "timestamp": "2019-06-06T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21998, + -1.176755005 + ] + }, + "properties": { + "timestamp": "2019-06-08T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20802833, + -1.168265005 + ] + }, + "properties": { + "timestamp": "2019-06-11T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21952833, + -1.178175005 + ] + }, + "properties": { + "timestamp": "2019-06-13T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.209595, + -1.166515005 + ] + }, + "properties": { + "timestamp": "2019-06-16T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21903667, + -1.176226671 + ] + }, + "properties": { + "timestamp": "2019-06-18T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21209833, + -1.172751671 + ] + }, + "properties": { + "timestamp": "2019-06-21T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21821833, + -1.177520005 + ] + }, + "properties": { + "timestamp": "2019-06-23T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21313833, + -1.173288338 + ] + }, + "properties": { + "timestamp": "2019-06-24T11:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21875833, + -1.178330005 + ] + }, + "properties": { + "timestamp": "2019-06-24T21:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21223667, + -1.172680005 + ] + }, + "properties": { + "timestamp": "2019-06-25T08:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20313333, + -1.165165005 + ] + }, + "properties": { + "timestamp": "2019-06-25T18:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W78", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.710925, + -1.283238337 + ] + }, + "properties": { + "timestamp": "2018-03-24T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76228667, + -1.279241671 + ] + }, + "properties": { + "timestamp": "2018-03-26T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77171, + -1.287061671 + ] + }, + "properties": { + "timestamp": "2018-03-27T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75474167, + -1.273681671 + ] + }, + "properties": { + "timestamp": "2018-03-29T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.754925, + -1.277465004 + ] + }, + "properties": { + "timestamp": "2018-03-31T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75149833, + -1.278766671 + ] + }, + "properties": { + "timestamp": "2018-04-01T05:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75990333, + -1.280236671 + ] + }, + "properties": { + "timestamp": "2018-04-01T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75834167, + -1.272491671 + ] + }, + "properties": { + "timestamp": "2018-04-02T01:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75608167, + -1.282576671 + ] + }, + "properties": { + "timestamp": "2018-04-02T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75910833, + -1.271635004 + ] + }, + "properties": { + "timestamp": "2018-04-02T22:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75436333, + -1.278281671 + ] + }, + "properties": { + "timestamp": "2018-04-03T08:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75741667, + -1.274646671 + ] + }, + "properties": { + "timestamp": "2018-04-03T18:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75802333, + -1.273541671 + ] + }, + "properties": { + "timestamp": "2018-04-04T04:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75616, + -1.279288337 + ] + }, + "properties": { + "timestamp": "2018-04-04T14:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75931667, + -1.271823337 + ] + }, + "properties": { + "timestamp": "2018-04-05T00:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75553333, + -1.277283337 + ] + }, + "properties": { + "timestamp": "2018-04-05T10:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76707, + -1.291365004 + ] + }, + "properties": { + "timestamp": "2018-04-05T20:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77225333, + -1.293335004 + ] + }, + "properties": { + "timestamp": "2018-04-06T06:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77003333, + -1.294476671 + ] + }, + "properties": { + "timestamp": "2018-04-06T16:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77387, + -1.297313337 + ] + }, + "properties": { + "timestamp": "2018-04-07T02:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78635167, + -1.290953337 + ] + }, + "properties": { + "timestamp": "2018-04-07T12:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79866333, + -1.292335004 + ] + }, + "properties": { + "timestamp": "2018-04-07T22:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79203333, + -1.283391671 + ] + }, + "properties": { + "timestamp": "2018-04-09T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76959167, + -1.299501671 + ] + }, + "properties": { + "timestamp": "2018-04-11T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.757815, + -1.273800004 + ] + }, + "properties": { + "timestamp": "2018-04-12T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75225833, + -1.278291671 + ] + }, + "properties": { + "timestamp": "2018-04-14T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76329833, + -1.271150004 + ] + }, + "properties": { + "timestamp": "2018-04-16T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77096167, + -1.291700004 + ] + }, + "properties": { + "timestamp": "2018-04-17T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77592833, + -1.294603337 + ] + }, + "properties": { + "timestamp": "2018-04-19T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76881167, + -1.300070004 + ] + }, + "properties": { + "timestamp": "2018-04-21T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77213167, + -1.290071671 + ] + }, + "properties": { + "timestamp": "2018-04-22T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77156, + -1.296940004 + ] + }, + "properties": { + "timestamp": "2018-04-24T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.787115, + -1.306126671 + ] + }, + "properties": { + "timestamp": "2018-04-26T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77022833, + -1.298711671 + ] + }, + "properties": { + "timestamp": "2018-04-27T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77471167, + -1.297183337 + ] + }, + "properties": { + "timestamp": "2018-04-29T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77313, + -1.294903337 + ] + }, + "properties": { + "timestamp": "2018-05-01T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77529167, + -1.300803337 + ] + }, + "properties": { + "timestamp": "2018-05-02T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77180667, + -1.297248337 + ] + }, + "properties": { + "timestamp": "2018-05-04T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77691833, + -1.288285004 + ] + }, + "properties": { + "timestamp": "2018-05-06T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77440667, + -1.301958337 + ] + }, + "properties": { + "timestamp": "2018-05-07T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78865333, + -1.289870004 + ] + }, + "properties": { + "timestamp": "2018-05-09T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78581667, + -1.288598337 + ] + }, + "properties": { + "timestamp": "2018-05-11T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77150833, + -1.287063337 + ] + }, + "properties": { + "timestamp": "2018-05-12T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77371167, + -1.298741671 + ] + }, + "properties": { + "timestamp": "2018-05-14T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77437667, + -1.295540004 + ] + }, + "properties": { + "timestamp": "2018-05-16T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76964333, + -1.296460004 + ] + }, + "properties": { + "timestamp": "2018-05-17T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77785333, + -1.299308337 + ] + }, + "properties": { + "timestamp": "2018-05-19T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77171833, + -1.295930004 + ] + }, + "properties": { + "timestamp": "2018-05-21T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77010167, + -1.287228337 + ] + }, + "properties": { + "timestamp": "2018-05-22T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.754775, + -1.275048337 + ] + }, + "properties": { + "timestamp": "2018-05-25T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74696833, + -1.281866671 + ] + }, + "properties": { + "timestamp": "2018-05-27T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74962, + -1.283635004 + ] + }, + "properties": { + "timestamp": "2018-05-30T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74205833, + -1.264908337 + ] + }, + "properties": { + "timestamp": "2018-06-01T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73283667, + -1.257910004 + ] + }, + "properties": { + "timestamp": "2018-06-04T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73874667, + -1.256125004 + ] + }, + "properties": { + "timestamp": "2018-06-06T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73212333, + -1.256726671 + ] + }, + "properties": { + "timestamp": "2018-06-09T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73699667, + -1.262246671 + ] + }, + "properties": { + "timestamp": "2018-06-11T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74752833, + -1.243246671 + ] + }, + "properties": { + "timestamp": "2018-06-14T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74309667, + -1.244138337 + ] + }, + "properties": { + "timestamp": "2018-06-16T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75055833, + -1.243468337 + ] + }, + "properties": { + "timestamp": "2018-06-19T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73802667, + -1.242470004 + ] + }, + "properties": { + "timestamp": "2018-06-21T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74643, + -1.239650004 + ] + }, + "properties": { + "timestamp": "2018-06-24T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74622167, + -1.243088337 + ] + }, + "properties": { + "timestamp": "2018-06-26T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74308833, + -1.239053337 + ] + }, + "properties": { + "timestamp": "2018-06-29T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74565, + -1.239690004 + ] + }, + "properties": { + "timestamp": "2018-07-01T04:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.7525, + -1.235266671 + ] + }, + "properties": { + "timestamp": "2018-07-01T14:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74692167, + -1.231981671 + ] + }, + "properties": { + "timestamp": "2018-07-02T00:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74966, + -1.237618337 + ] + }, + "properties": { + "timestamp": "2018-07-02T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74003833, + -1.241766671 + ] + }, + "properties": { + "timestamp": "2018-07-02T21:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74635167, + -1.241736671 + ] + }, + "properties": { + "timestamp": "2018-07-03T08:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74118833, + -1.239311671 + ] + }, + "properties": { + "timestamp": "2018-07-03T18:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73900333, + -1.244150004 + ] + }, + "properties": { + "timestamp": "2018-07-04T04:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74509667, + -1.242473337 + ] + }, + "properties": { + "timestamp": "2018-07-04T14:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74254667, + -1.243961671 + ] + }, + "properties": { + "timestamp": "2018-07-05T00:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74575, + -1.243250004 + ] + }, + "properties": { + "timestamp": "2018-07-05T10:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74154167, + -1.239456671 + ] + }, + "properties": { + "timestamp": "2018-07-05T20:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74880167, + -1.250573337 + ] + }, + "properties": { + "timestamp": "2018-07-06T06:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74159167, + -1.239741671 + ] + }, + "properties": { + "timestamp": "2018-07-06T16:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.742805, + -1.244361671 + ] + }, + "properties": { + "timestamp": "2018-07-07T02:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73656833, + -1.271685004 + ] + }, + "properties": { + "timestamp": "2018-07-07T12:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74420833, + -1.273096671 + ] + }, + "properties": { + "timestamp": "2018-07-07T22:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70955333, + -1.278245004 + ] + }, + "properties": { + "timestamp": "2018-07-10T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70646167, + -1.280921671 + ] + }, + "properties": { + "timestamp": "2018-07-12T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69958667, + -1.279268337 + ] + }, + "properties": { + "timestamp": "2018-07-15T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70119667, + -1.279080004 + ] + }, + "properties": { + "timestamp": "2018-07-17T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.65274167, + -1.237953338 + ] + }, + "properties": { + "timestamp": "2018-07-20T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66335167, + -1.238441671 + ] + }, + "properties": { + "timestamp": "2018-07-22T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66250167, + -1.258483337 + ] + }, + "properties": { + "timestamp": "2018-07-25T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.65915667, + -1.218895004 + ] + }, + "properties": { + "timestamp": "2018-07-27T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.656195, + -1.217521671 + ] + }, + "properties": { + "timestamp": "2018-07-30T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.660135, + -1.220176671 + ] + }, + "properties": { + "timestamp": "2018-08-01T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66010167, + -1.210986671 + ] + }, + "properties": { + "timestamp": "2018-08-03T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64606333, + -1.205788338 + ] + }, + "properties": { + "timestamp": "2018-08-04T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64894833, + -1.207208338 + ] + }, + "properties": { + "timestamp": "2018-08-06T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61017667, + -1.176151671 + ] + }, + "properties": { + "timestamp": "2018-08-08T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.65724333, + -1.209048338 + ] + }, + "properties": { + "timestamp": "2018-08-09T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62291167, + -1.185083338 + ] + }, + "properties": { + "timestamp": "2018-08-11T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.612505, + -1.178766671 + ] + }, + "properties": { + "timestamp": "2018-08-13T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59877167, + -1.160220004 + ] + }, + "properties": { + "timestamp": "2018-08-14T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.519795, + -1.170596671 + ] + }, + "properties": { + "timestamp": "2018-08-16T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57661333, + -1.173018338 + ] + }, + "properties": { + "timestamp": "2018-08-18T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54766167, + -1.176463338 + ] + }, + "properties": { + "timestamp": "2018-08-19T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55590667, + -1.186473338 + ] + }, + "properties": { + "timestamp": "2018-08-21T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56425, + -1.190370004 + ] + }, + "properties": { + "timestamp": "2018-08-23T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56455333, + -1.186128338 + ] + }, + "properties": { + "timestamp": "2018-08-24T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56105833, + -1.188300004 + ] + }, + "properties": { + "timestamp": "2018-08-26T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56663667, + -1.185931671 + ] + }, + "properties": { + "timestamp": "2018-08-28T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56692333, + -1.189383338 + ] + }, + "properties": { + "timestamp": "2018-08-29T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54915667, + -1.181370004 + ] + }, + "properties": { + "timestamp": "2018-08-31T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.552805, + -1.184785004 + ] + }, + "properties": { + "timestamp": "2018-09-02T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56561333, + -1.187993338 + ] + }, + "properties": { + "timestamp": "2018-09-03T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56693, + -1.169533338 + ] + }, + "properties": { + "timestamp": "2018-09-05T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54816833, + -1.182923338 + ] + }, + "properties": { + "timestamp": "2018-09-07T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56623333, + -1.184813338 + ] + }, + "properties": { + "timestamp": "2018-09-08T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56207667, + -1.185865004 + ] + }, + "properties": { + "timestamp": "2018-09-10T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55205833, + -1.181875004 + ] + }, + "properties": { + "timestamp": "2018-09-12T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54427833, + -1.183965004 + ] + }, + "properties": { + "timestamp": "2018-09-13T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.537035, + -1.187595004 + ] + }, + "properties": { + "timestamp": "2018-09-15T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55227333, + -1.183723338 + ] + }, + "properties": { + "timestamp": "2018-09-17T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56455833, + -1.191203338 + ] + }, + "properties": { + "timestamp": "2018-09-18T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55885833, + -1.178405004 + ] + }, + "properties": { + "timestamp": "2018-09-20T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55347833, + -1.183798338 + ] + }, + "properties": { + "timestamp": "2018-09-22T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56457, + -1.192860004 + ] + }, + "properties": { + "timestamp": "2018-09-23T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54810833, + -1.182428338 + ] + }, + "properties": { + "timestamp": "2018-09-25T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55243333, + -1.182833338 + ] + }, + "properties": { + "timestamp": "2018-09-27T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55001167, + -1.197206671 + ] + }, + "properties": { + "timestamp": "2018-09-28T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54858333, + -1.177058338 + ] + }, + "properties": { + "timestamp": "2018-09-30T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.541055, + -1.208596671 + ] + }, + "properties": { + "timestamp": "2018-10-01T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54042333, + -1.208615004 + ] + }, + "properties": { + "timestamp": "2018-10-01T17:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54752, + -1.199856671 + ] + }, + "properties": { + "timestamp": "2018-10-02T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54377667, + -1.206871671 + ] + }, + "properties": { + "timestamp": "2018-10-02T13:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.541485, + -1.208590004 + ] + }, + "properties": { + "timestamp": "2018-10-02T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54253167, + -1.206911671 + ] + }, + "properties": { + "timestamp": "2018-10-03T09:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54021667, + -1.205131671 + ] + }, + "properties": { + "timestamp": "2018-10-03T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54218833, + -1.207808338 + ] + }, + "properties": { + "timestamp": "2018-10-04T05:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54511167, + -1.205990004 + ] + }, + "properties": { + "timestamp": "2018-10-04T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53882, + -1.207773338 + ] + }, + "properties": { + "timestamp": "2018-10-05T01:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55362833, + -1.180800004 + ] + }, + "properties": { + "timestamp": "2018-10-05T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55004833, + -1.197455004 + ] + }, + "properties": { + "timestamp": "2018-10-05T21:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55388333, + -1.182763338 + ] + }, + "properties": { + "timestamp": "2018-10-06T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55533, + -1.179013338 + ] + }, + "properties": { + "timestamp": "2018-10-06T17:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55297333, + -1.185491671 + ] + }, + "properties": { + "timestamp": "2018-10-07T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.553885, + -1.181141671 + ] + }, + "properties": { + "timestamp": "2018-10-07T13:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55332833, + -1.194606671 + ] + }, + "properties": { + "timestamp": "2018-10-07T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55199167, + -1.198433338 + ] + }, + "properties": { + "timestamp": "2018-10-09T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56563, + -1.173090004 + ] + }, + "properties": { + "timestamp": "2018-10-11T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.66086833, + -1.256658337 + ] + }, + "properties": { + "timestamp": "2018-10-13T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63855833, + -1.269598337 + ] + }, + "properties": { + "timestamp": "2018-10-14T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63636167, + -1.270256671 + ] + }, + "properties": { + "timestamp": "2018-10-16T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62771, + -1.272106671 + ] + }, + "properties": { + "timestamp": "2018-10-18T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62580167, + -1.272091671 + ] + }, + "properties": { + "timestamp": "2018-10-19T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68437667, + -1.221438338 + ] + }, + "properties": { + "timestamp": "2018-10-21T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69142167, + -1.225290004 + ] + }, + "properties": { + "timestamp": "2018-10-23T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69946167, + -1.205063338 + ] + }, + "properties": { + "timestamp": "2018-10-24T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69790167, + -1.216560004 + ] + }, + "properties": { + "timestamp": "2018-10-26T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70987167, + -1.208273338 + ] + }, + "properties": { + "timestamp": "2018-10-28T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67968333, + -1.223423338 + ] + }, + "properties": { + "timestamp": "2018-10-29T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70349333, + -1.203241671 + ] + }, + "properties": { + "timestamp": "2018-10-31T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73441667, + -1.212888338 + ] + }, + "properties": { + "timestamp": "2018-11-02T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72803, + -1.212720004 + ] + }, + "properties": { + "timestamp": "2018-11-05T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.685625, + -1.206175004 + ] + }, + "properties": { + "timestamp": "2018-11-07T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69625167, + -1.238961671 + ] + }, + "properties": { + "timestamp": "2018-11-10T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72368833, + -1.224851671 + ] + }, + "properties": { + "timestamp": "2018-11-12T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69744667, + -1.241900004 + ] + }, + "properties": { + "timestamp": "2018-11-15T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70785833, + -1.228461671 + ] + }, + "properties": { + "timestamp": "2018-11-17T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.513835, + -1.308918337 + ] + }, + "properties": { + "timestamp": "2018-11-20T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44063167, + -1.365358337 + ] + }, + "properties": { + "timestamp": "2018-11-22T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.348795, + -1.388375004 + ] + }, + "properties": { + "timestamp": "2018-11-25T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.350025, + -1.421221671 + ] + }, + "properties": { + "timestamp": "2018-11-27T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.305205, + -1.374748337 + ] + }, + "properties": { + "timestamp": "2018-11-30T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31160333, + -1.418191671 + ] + }, + "properties": { + "timestamp": "2018-12-02T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29026167, + -1.415713337 + ] + }, + "properties": { + "timestamp": "2018-12-05T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.31012667, + -1.413341671 + ] + }, + "properties": { + "timestamp": "2018-12-07T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29195667, + -1.337675004 + ] + }, + "properties": { + "timestamp": "2018-12-10T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28987, + -1.351986671 + ] + }, + "properties": { + "timestamp": "2018-12-12T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3694, + -1.368713337 + ] + }, + "properties": { + "timestamp": "2018-12-15T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35065667, + -1.373478337 + ] + }, + "properties": { + "timestamp": "2018-12-17T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40172, + -1.332383337 + ] + }, + "properties": { + "timestamp": "2018-12-20T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41183, + -1.401648337 + ] + }, + "properties": { + "timestamp": "2018-12-22T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42224667, + -1.405428337 + ] + }, + "properties": { + "timestamp": "2018-12-25T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.425015, + -1.404980004 + ] + }, + "properties": { + "timestamp": "2018-12-27T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41380167, + -1.375326671 + ] + }, + "properties": { + "timestamp": "2018-12-30T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40695, + -1.391251671 + ] + }, + "properties": { + "timestamp": "2019-01-01T02:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39351833, + -1.381583337 + ] + }, + "properties": { + "timestamp": "2019-01-01T12:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37945667, + -1.377936671 + ] + }, + "properties": { + "timestamp": "2019-01-01T22:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.367465, + -1.383218337 + ] + }, + "properties": { + "timestamp": "2019-01-02T08:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37422167, + -1.356555004 + ] + }, + "properties": { + "timestamp": "2019-01-02T18:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37301167, + -1.370730004 + ] + }, + "properties": { + "timestamp": "2019-01-03T04:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.360145, + -1.368906671 + ] + }, + "properties": { + "timestamp": "2019-01-03T14:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.363395, + -1.357031671 + ] + }, + "properties": { + "timestamp": "2019-01-04T00:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34952667, + -1.369330004 + ] + }, + "properties": { + "timestamp": "2019-01-04T10:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37825333, + -1.352418337 + ] + }, + "properties": { + "timestamp": "2019-01-04T20:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34955167, + -1.376045004 + ] + }, + "properties": { + "timestamp": "2019-01-05T06:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34536833, + -1.355406671 + ] + }, + "properties": { + "timestamp": "2019-01-05T16:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.363375, + -1.354603337 + ] + }, + "properties": { + "timestamp": "2019-01-06T02:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34198833, + -1.379260004 + ] + }, + "properties": { + "timestamp": "2019-01-06T12:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29839167, + -1.334426671 + ] + }, + "properties": { + "timestamp": "2019-01-06T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27311833, + -1.342598338 + ] + }, + "properties": { + "timestamp": "2019-01-07T09:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.27323833, + -1.328690004 + ] + }, + "properties": { + "timestamp": "2019-01-07T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.2476, + -1.234050004 + ] + }, + "properties": { + "timestamp": "2019-01-08T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.246325, + -1.245998338 + ] + }, + "properties": { + "timestamp": "2019-01-10T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.238545, + -1.246255004 + ] + }, + "properties": { + "timestamp": "2019-01-12T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25371833, + -1.242053338 + ] + }, + "properties": { + "timestamp": "2019-01-13T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.259805, + -1.247000004 + ] + }, + "properties": { + "timestamp": "2019-01-15T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24159333, + -1.265546671 + ] + }, + "properties": { + "timestamp": "2019-01-17T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.332445, + -1.368583337 + ] + }, + "properties": { + "timestamp": "2019-01-18T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41588833, + -1.318458338 + ] + }, + "properties": { + "timestamp": "2019-01-20T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57756333, + -1.344835004 + ] + }, + "properties": { + "timestamp": "2019-01-22T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.68555, + -1.246988337 + ] + }, + "properties": { + "timestamp": "2019-01-24T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64987167, + -1.220021671 + ] + }, + "properties": { + "timestamp": "2019-01-25T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67351167, + -1.239016671 + ] + }, + "properties": { + "timestamp": "2019-01-27T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.652505, + -1.208006671 + ] + }, + "properties": { + "timestamp": "2019-01-29T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64805667, + -1.204496671 + ] + }, + "properties": { + "timestamp": "2019-01-30T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64738667, + -1.207935004 + ] + }, + "properties": { + "timestamp": "2019-02-01T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.65149167, + -1.208045004 + ] + }, + "properties": { + "timestamp": "2019-02-04T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64641, + -1.204250004 + ] + }, + "properties": { + "timestamp": "2019-02-06T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.65590167, + -1.208063338 + ] + }, + "properties": { + "timestamp": "2019-02-09T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63882167, + -1.190283338 + ] + }, + "properties": { + "timestamp": "2019-02-11T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63201667, + -1.200288338 + ] + }, + "properties": { + "timestamp": "2019-02-14T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39671, + -1.224228338 + ] + }, + "properties": { + "timestamp": "2019-02-16T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.441595, + -1.223830004 + ] + }, + "properties": { + "timestamp": "2019-02-19T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43960833, + -1.223038338 + ] + }, + "properties": { + "timestamp": "2019-02-21T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43684333, + -1.230671671 + ] + }, + "properties": { + "timestamp": "2019-02-24T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.446735, + -1.221346671 + ] + }, + "properties": { + "timestamp": "2019-02-26T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43654667, + -1.287910004 + ] + }, + "properties": { + "timestamp": "2019-03-01T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43538333, + -1.341121671 + ] + }, + "properties": { + "timestamp": "2019-03-02T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43319, + -1.345055004 + ] + }, + "properties": { + "timestamp": "2019-03-04T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47026333, + -1.359733337 + ] + }, + "properties": { + "timestamp": "2019-03-06T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47361667, + -1.384093337 + ] + }, + "properties": { + "timestamp": "2019-03-07T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43250833, + -1.360796671 + ] + }, + "properties": { + "timestamp": "2019-03-09T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42176, + -1.366196671 + ] + }, + "properties": { + "timestamp": "2019-03-11T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42378333, + -1.354013337 + ] + }, + "properties": { + "timestamp": "2019-03-12T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.421415, + -1.360400004 + ] + }, + "properties": { + "timestamp": "2019-03-14T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38621333, + -1.371513337 + ] + }, + "properties": { + "timestamp": "2019-03-16T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35503, + -1.366460004 + ] + }, + "properties": { + "timestamp": "2019-03-17T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.380155, + -1.382848337 + ] + }, + "properties": { + "timestamp": "2019-03-19T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36736, + -1.384130004 + ] + }, + "properties": { + "timestamp": "2019-03-21T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.369805, + -1.381413337 + ] + }, + "properties": { + "timestamp": "2019-03-22T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35671833, + -1.376391671 + ] + }, + "properties": { + "timestamp": "2019-03-24T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34363833, + -1.370178337 + ] + }, + "properties": { + "timestamp": "2019-03-26T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.28757167, + -1.353235004 + ] + }, + "properties": { + "timestamp": "2019-03-27T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.260235, + -1.303273338 + ] + }, + "properties": { + "timestamp": "2019-03-29T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29014833, + -1.370071671 + ] + }, + "properties": { + "timestamp": "2019-03-31T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24661333, + -1.316885004 + ] + }, + "properties": { + "timestamp": "2019-04-01T05:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22300833, + -1.285693338 + ] + }, + "properties": { + "timestamp": "2019-04-01T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.24589667, + -1.327528338 + ] + }, + "properties": { + "timestamp": "2019-04-02T01:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23022, + -1.288051671 + ] + }, + "properties": { + "timestamp": "2019-04-02T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.22944167, + -1.300258338 + ] + }, + "properties": { + "timestamp": "2019-04-02T21:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.20060167, + -1.310991671 + ] + }, + "properties": { + "timestamp": "2019-04-03T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.185315, + -1.278611671 + ] + }, + "properties": { + "timestamp": "2019-04-03T17:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18343333, + -1.273423338 + ] + }, + "properties": { + "timestamp": "2019-04-04T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18101667, + -1.249066671 + ] + }, + "properties": { + "timestamp": "2019-04-04T13:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.18124167, + -1.228858338 + ] + }, + "properties": { + "timestamp": "2019-04-04T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16812167, + -1.230256671 + ] + }, + "properties": { + "timestamp": "2019-04-05T09:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16071167, + -1.236611671 + ] + }, + "properties": { + "timestamp": "2019-04-05T20:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16924167, + -1.218276671 + ] + }, + "properties": { + "timestamp": "2019-04-06T06:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15967833, + -1.190281671 + ] + }, + "properties": { + "timestamp": "2019-04-06T16:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.15360667, + -1.185018338 + ] + }, + "properties": { + "timestamp": "2019-04-07T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.1148, + -1.175001671 + ] + }, + "properties": { + "timestamp": "2019-04-07T13:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11372833, + -1.184081671 + ] + }, + "properties": { + "timestamp": "2019-04-07T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11075333, + -1.181466671 + ] + }, + "properties": { + "timestamp": "2019-04-09T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.10257833, + -1.189728338 + ] + }, + "properties": { + "timestamp": "2019-04-11T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.171885, + -1.179988338 + ] + }, + "properties": { + "timestamp": "2019-04-12T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.167765, + -1.171745005 + ] + }, + "properties": { + "timestamp": "2019-04-14T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16554333, + -1.184376671 + ] + }, + "properties": { + "timestamp": "2019-04-16T07:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17152833, + -1.185008338 + ] + }, + "properties": { + "timestamp": "2019-04-17T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.16257167, + -1.189920005 + ] + }, + "properties": { + "timestamp": "2019-04-19T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.08557667, + -1.191120005 + ] + }, + "properties": { + "timestamp": "2019-04-21T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.12208167, + -1.202368338 + ] + }, + "properties": { + "timestamp": "2019-04-23T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.11908167, + -1.204338338 + ] + }, + "properties": { + "timestamp": "2019-04-24T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.17811667, + -1.179058338 + ] + }, + "properties": { + "timestamp": "2019-04-26T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.19337, + -1.184506671 + ] + }, + "properties": { + "timestamp": "2019-04-28T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.21194, + -1.191096671 + ] + }, + "properties": { + "timestamp": "2019-04-29T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.23928667, + -1.250055004 + ] + }, + "properties": { + "timestamp": "2019-05-01T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.248315, + -1.240648338 + ] + }, + "properties": { + "timestamp": "2019-05-03T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.25467, + -1.271691671 + ] + }, + "properties": { + "timestamp": "2019-05-04T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39135167, + -1.374593337 + ] + }, + "properties": { + "timestamp": "2019-05-06T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50724833, + -1.337256671 + ] + }, + "properties": { + "timestamp": "2019-05-08T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50523, + -1.324701671 + ] + }, + "properties": { + "timestamp": "2019-05-09T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47245167, + -1.348713337 + ] + }, + "properties": { + "timestamp": "2019-05-11T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76778333, + -1.276136671 + ] + }, + "properties": { + "timestamp": "2019-05-13T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77061833, + -1.264478337 + ] + }, + "properties": { + "timestamp": "2019-05-14T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75847167, + -1.255105004 + ] + }, + "properties": { + "timestamp": "2019-05-16T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74690333, + -1.243741671 + ] + }, + "properties": { + "timestamp": "2019-05-18T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77047333, + -1.264598337 + ] + }, + "properties": { + "timestamp": "2019-05-19T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76845833, + -1.277893337 + ] + }, + "properties": { + "timestamp": "2019-05-21T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.769135, + -1.263456671 + ] + }, + "properties": { + "timestamp": "2019-05-25T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75559, + -1.276273337 + ] + }, + "properties": { + "timestamp": "2019-05-28T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76104667, + -1.262553337 + ] + }, + "properties": { + "timestamp": "2019-05-30T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75974667, + -1.280966671 + ] + }, + "properties": { + "timestamp": "2019-06-02T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74130667, + -1.271411671 + ] + }, + "properties": { + "timestamp": "2019-06-04T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76792833, + -1.276421671 + ] + }, + "properties": { + "timestamp": "2019-06-07T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.768355, + -1.274678337 + ] + }, + "properties": { + "timestamp": "2019-06-09T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78283167, + -1.284075004 + ] + }, + "properties": { + "timestamp": "2019-06-12T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78418, + -1.284751671 + ] + }, + "properties": { + "timestamp": "2019-06-14T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.784255, + -1.287095004 + ] + }, + "properties": { + "timestamp": "2019-06-17T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78211167, + -1.275898337 + ] + }, + "properties": { + "timestamp": "2019-06-19T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78610667, + -1.293111671 + ] + }, + "properties": { + "timestamp": "2019-06-22T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78748833, + -1.286753337 + ] + }, + "properties": { + "timestamp": "2019-06-24T04:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75088333, + -1.279921671 + ] + }, + "properties": { + "timestamp": "2019-06-24T14:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.747325, + -1.271528337 + ] + }, + "properties": { + "timestamp": "2019-06-25T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73925, + -1.262225004 + ] + }, + "properties": { + "timestamp": "2019-06-28T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73337833, + -1.271126671 + ] + }, + "properties": { + "timestamp": "2019-06-30T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74495667, + -1.273003337 + ] + }, + "properties": { + "timestamp": "2019-07-01T10:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75058667, + -1.254113337 + ] + }, + "properties": { + "timestamp": "2019-07-01T20:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73346, + -1.244455004 + ] + }, + "properties": { + "timestamp": "2019-07-02T06:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74581333, + -1.245111671 + ] + }, + "properties": { + "timestamp": "2019-07-02T16:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73237833, + -1.244280004 + ] + }, + "properties": { + "timestamp": "2019-07-03T02:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73569167, + -1.244855004 + ] + }, + "properties": { + "timestamp": "2019-07-03T12:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73617167, + -1.244300004 + ] + }, + "properties": { + "timestamp": "2019-07-03T22:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.742655, + -1.247316671 + ] + }, + "properties": { + "timestamp": "2019-07-04T08:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73639167, + -1.244076671 + ] + }, + "properties": { + "timestamp": "2019-07-04T18:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73085167, + -1.244895004 + ] + }, + "properties": { + "timestamp": "2019-07-05T04:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73987, + -1.246745004 + ] + }, + "properties": { + "timestamp": "2019-07-05T14:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72833833, + -1.243345004 + ] + }, + "properties": { + "timestamp": "2019-07-06T00:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75842667, + -1.256403337 + ] + }, + "properties": { + "timestamp": "2019-07-06T10:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.746645, + -1.245508337 + ] + }, + "properties": { + "timestamp": "2019-07-06T20:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74769667, + -1.242410004 + ] + }, + "properties": { + "timestamp": "2019-07-07T06:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73119833, + -1.244326671 + ] + }, + "properties": { + "timestamp": "2019-07-07T16:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.742195, + -1.239300004 + ] + }, + "properties": { + "timestamp": "2019-07-08T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.724415, + -1.232805004 + ] + }, + "properties": { + "timestamp": "2019-07-11T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72497333, + -1.232270004 + ] + }, + "properties": { + "timestamp": "2019-07-13T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72848833, + -1.230975004 + ] + }, + "properties": { + "timestamp": "2019-07-16T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70513667, + -1.230230004 + ] + }, + "properties": { + "timestamp": "2019-07-18T23:31:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.723855, + -1.223163338 + ] + }, + "properties": { + "timestamp": "2019-07-21T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.724415, + -1.232255004 + ] + }, + "properties": { + "timestamp": "2019-07-23T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72862, + -1.229728338 + ] + }, + "properties": { + "timestamp": "2019-07-26T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.705385, + -1.226715004 + ] + }, + "properties": { + "timestamp": "2019-07-28T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72551, + -1.224711671 + ] + }, + "properties": { + "timestamp": "2019-07-31T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72791, + -1.224116671 + ] + }, + "properties": { + "timestamp": "2019-08-02T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69709333, + -1.234786671 + ] + }, + "properties": { + "timestamp": "2019-08-03T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73167, + -1.231201671 + ] + }, + "properties": { + "timestamp": "2019-08-05T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72667, + -1.224740004 + ] + }, + "properties": { + "timestamp": "2019-08-07T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70545833, + -1.225155004 + ] + }, + "properties": { + "timestamp": "2019-08-08T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72793667, + -1.225413338 + ] + }, + "properties": { + "timestamp": "2019-08-10T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.724405, + -1.222420004 + ] + }, + "properties": { + "timestamp": "2019-08-12T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.69752, + -1.232646671 + ] + }, + "properties": { + "timestamp": "2019-08-13T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73060333, + -1.230238338 + ] + }, + "properties": { + "timestamp": "2019-08-15T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72797833, + -1.227405004 + ] + }, + "properties": { + "timestamp": "2019-08-17T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72349167, + -1.229171671 + ] + }, + "properties": { + "timestamp": "2019-08-18T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67659167, + -1.241160004 + ] + }, + "properties": { + "timestamp": "2019-08-20T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64900667, + -1.213013338 + ] + }, + "properties": { + "timestamp": "2019-08-22T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64572, + -1.219078338 + ] + }, + "properties": { + "timestamp": "2019-08-23T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63940667, + -1.196641671 + ] + }, + "properties": { + "timestamp": "2019-08-25T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57051833, + -1.181973338 + ] + }, + "properties": { + "timestamp": "2019-08-27T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57073833, + -1.180866671 + ] + }, + "properties": { + "timestamp": "2019-08-28T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56504167, + -1.176073338 + ] + }, + "properties": { + "timestamp": "2019-08-30T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72970667, + -1.229843338 + ] + }, + "properties": { + "timestamp": "2019-09-01T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.729885, + -1.230776671 + ] + }, + "properties": { + "timestamp": "2019-09-02T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.73423, + -1.229223338 + ] + }, + "properties": { + "timestamp": "2019-09-04T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75924667, + -1.248365004 + ] + }, + "properties": { + "timestamp": "2019-09-06T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76392833, + -1.240615004 + ] + }, + "properties": { + "timestamp": "2019-09-07T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76110667, + -1.242936671 + ] + }, + "properties": { + "timestamp": "2019-09-09T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.760035, + -1.248103337 + ] + }, + "properties": { + "timestamp": "2019-09-11T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.71389167, + -1.261135004 + ] + }, + "properties": { + "timestamp": "2019-09-12T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.760055, + -1.227238337 + ] + }, + "properties": { + "timestamp": "2019-09-14T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75522667, + -1.220070004 + ] + }, + "properties": { + "timestamp": "2019-09-16T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.77030333, + -1.224568337 + ] + }, + "properties": { + "timestamp": "2019-09-17T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75797667, + -1.226028337 + ] + }, + "properties": { + "timestamp": "2019-09-19T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75597333, + -1.218601671 + ] + }, + "properties": { + "timestamp": "2019-09-21T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76236, + -1.231768337 + ] + }, + "properties": { + "timestamp": "2019-09-22T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.74635667, + -1.222533338 + ] + }, + "properties": { + "timestamp": "2019-09-24T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.72633333, + -1.226020004 + ] + }, + "properties": { + "timestamp": "2019-09-26T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.700245, + -1.234861671 + ] + }, + "properties": { + "timestamp": "2019-09-27T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.623575, + -1.218963338 + ] + }, + "properties": { + "timestamp": "2019-09-29T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57884333, + -1.252031671 + ] + }, + "properties": { + "timestamp": "2019-10-01T01:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57844667, + -1.250658338 + ] + }, + "properties": { + "timestamp": "2019-10-01T11:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57909833, + -1.253886671 + ] + }, + "properties": { + "timestamp": "2019-10-01T21:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58144667, + -1.248418338 + ] + }, + "properties": { + "timestamp": "2019-10-02T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.579355, + -1.254010004 + ] + }, + "properties": { + "timestamp": "2019-10-02T18:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5833, + -1.251428338 + ] + }, + "properties": { + "timestamp": "2019-10-03T04:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57774667, + -1.250688338 + ] + }, + "properties": { + "timestamp": "2019-10-03T14:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.578715, + -1.253490004 + ] + }, + "properties": { + "timestamp": "2019-10-04T00:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58570833, + -1.245310004 + ] + }, + "properties": { + "timestamp": "2019-10-04T10:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57924333, + -1.254020004 + ] + }, + "properties": { + "timestamp": "2019-10-04T20:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57796333, + -1.250608338 + ] + }, + "properties": { + "timestamp": "2019-10-05T06:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58148333, + -1.252528338 + ] + }, + "properties": { + "timestamp": "2019-10-05T16:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57796833, + -1.252390004 + ] + }, + "properties": { + "timestamp": "2019-10-06T02:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.578805, + -1.253678338 + ] + }, + "properties": { + "timestamp": "2019-10-06T12:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57871667, + -1.253098338 + ] + }, + "properties": { + "timestamp": "2019-10-06T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.579265, + -1.254135004 + ] + }, + "properties": { + "timestamp": "2019-10-07T09:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.579305, + -1.254016671 + ] + }, + "properties": { + "timestamp": "2019-10-07T19:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57740667, + -1.251118338 + ] + }, + "properties": { + "timestamp": "2019-10-08T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57739833, + -1.251173338 + ] + }, + "properties": { + "timestamp": "2019-10-10T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57918833, + -1.254120004 + ] + }, + "properties": { + "timestamp": "2019-10-12T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57915833, + -1.254171671 + ] + }, + "properties": { + "timestamp": "2019-10-13T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57926, + -1.254128338 + ] + }, + "properties": { + "timestamp": "2019-10-15T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57746167, + -1.250885004 + ] + }, + "properties": { + "timestamp": "2019-10-17T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58986, + -1.246940004 + ] + }, + "properties": { + "timestamp": "2019-10-18T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57930333, + -1.254068338 + ] + }, + "properties": { + "timestamp": "2019-10-20T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.579185, + -1.254040004 + ] + }, + "properties": { + "timestamp": "2019-10-22T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.581005, + -1.251518338 + ] + }, + "properties": { + "timestamp": "2019-10-23T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57973667, + -1.253985004 + ] + }, + "properties": { + "timestamp": "2019-10-25T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.577205, + -1.251211671 + ] + }, + "properties": { + "timestamp": "2019-10-27T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57722, + -1.251088338 + ] + }, + "properties": { + "timestamp": "2019-10-28T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56814167, + -1.275528338 + ] + }, + "properties": { + "timestamp": "2019-10-30T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58648167, + -1.281035004 + ] + }, + "properties": { + "timestamp": "2019-11-01T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56310167, + -1.277545004 + ] + }, + "properties": { + "timestamp": "2019-11-03T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57270833, + -1.272105004 + ] + }, + "properties": { + "timestamp": "2019-11-06T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.578095, + -1.273000004 + ] + }, + "properties": { + "timestamp": "2019-11-08T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.569415, + -1.274093338 + ] + }, + "properties": { + "timestamp": "2019-11-11T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56507833, + -1.277168338 + ] + }, + "properties": { + "timestamp": "2019-11-13T23:31:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.571695, + -1.272663338 + ] + }, + "properties": { + "timestamp": "2019-11-16T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56444833, + -1.272990004 + ] + }, + "properties": { + "timestamp": "2019-11-18T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.567715, + -1.273985004 + ] + }, + "properties": { + "timestamp": "2019-11-21T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56770667, + -1.277501671 + ] + }, + "properties": { + "timestamp": "2019-11-23T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.568395, + -1.274186671 + ] + }, + "properties": { + "timestamp": "2019-11-26T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.626985, + -1.293008337 + ] + }, + "properties": { + "timestamp": "2019-11-28T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67031, + -1.293675004 + ] + }, + "properties": { + "timestamp": "2019-12-01T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.67768167, + -1.295360004 + ] + }, + "properties": { + "timestamp": "2019-12-03T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78713667, + -1.325220004 + ] + }, + "properties": { + "timestamp": "2019-12-06T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79786833, + -1.328895004 + ] + }, + "properties": { + "timestamp": "2019-12-08T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.85094667, + -1.373355004 + ] + }, + "properties": { + "timestamp": "2019-12-11T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83793, + -1.351048337 + ] + }, + "properties": { + "timestamp": "2019-12-13T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83577333, + -1.339856671 + ] + }, + "properties": { + "timestamp": "2019-12-16T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83177, + -1.338058337 + ] + }, + "properties": { + "timestamp": "2019-12-18T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.838515, + -1.344118337 + ] + }, + "properties": { + "timestamp": "2019-12-21T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.831845, + -1.339455004 + ] + }, + "properties": { + "timestamp": "2019-12-23T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83399167, + -1.340253337 + ] + }, + "properties": { + "timestamp": "2019-12-26T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.83231667, + -1.338451671 + ] + }, + "properties": { + "timestamp": "2019-12-28T23:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79413, + -1.325685004 + ] + }, + "properties": { + "timestamp": "2019-12-31T07:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79944, + -1.333670004 + ] + }, + "properties": { + "timestamp": "2020-01-01T07:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80031333, + -1.332636671 + ] + }, + "properties": { + "timestamp": "2020-01-01T17:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80057833, + -1.369163337 + ] + }, + "properties": { + "timestamp": "2020-07-01T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.811975, + -1.370960004 + ] + }, + "properties": { + "timestamp": "2020-07-01T13:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.805095, + -1.36939667 + ] + }, + "properties": { + "timestamp": "2020-07-01T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.808065, + -1.371870004 + ] + }, + "properties": { + "timestamp": "2020-07-02T09:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80123333, + -1.362588337 + ] + }, + "properties": { + "timestamp": "2020-07-02T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.807325, + -1.37097667 + ] + }, + "properties": { + "timestamp": "2020-07-03T05:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81190667, + -1.371595004 + ] + }, + "properties": { + "timestamp": "2020-07-03T16:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80904667, + -1.371378337 + ] + }, + "properties": { + "timestamp": "2020-07-04T02:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80749667, + -1.371020004 + ] + }, + "properties": { + "timestamp": "2020-07-04T12:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80208167, + -1.371643337 + ] + }, + "properties": { + "timestamp": "2020-07-04T22:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80742167, + -1.371058337 + ] + }, + "properties": { + "timestamp": "2020-07-05T08:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.806775, + -1.371850004 + ] + }, + "properties": { + "timestamp": "2020-07-05T18:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80811833, + -1.37003167 + ] + }, + "properties": { + "timestamp": "2020-07-06T04:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80607, + -1.370973337 + ] + }, + "properties": { + "timestamp": "2020-07-06T14:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80426833, + -1.368430004 + ] + }, + "properties": { + "timestamp": "2020-07-07T00:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80572167, + -1.367578337 + ] + }, + "properties": { + "timestamp": "2020-07-07T10:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80139833, + -1.366435004 + ] + }, + "properties": { + "timestamp": "2020-07-07T20:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80455667, + -1.36377667 + ] + }, + "properties": { + "timestamp": "2020-07-09T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.802545, + -1.36968667 + ] + }, + "properties": { + "timestamp": "2020-07-12T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.803625, + -1.368945004 + ] + }, + "properties": { + "timestamp": "2020-07-14T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80259833, + -1.369680004 + ] + }, + "properties": { + "timestamp": "2020-07-17T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.81151333, + -1.373198337 + ] + }, + "properties": { + "timestamp": "2020-07-19T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80399333, + -1.363355004 + ] + }, + "properties": { + "timestamp": "2020-07-22T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80438333, + -1.368828337 + ] + }, + "properties": { + "timestamp": "2020-07-24T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80191333, + -1.365590004 + ] + }, + "properties": { + "timestamp": "2020-07-27T03:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80085167, + -1.36894167 + ] + }, + "properties": { + "timestamp": "2020-07-29T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80130667, + -1.364948337 + ] + }, + "properties": { + "timestamp": "2020-08-01T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80260833, + -1.366370004 + ] + }, + "properties": { + "timestamp": "2020-08-02T19:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80327667, + -1.36932167 + ] + }, + "properties": { + "timestamp": "2020-08-04T11:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80221, + -1.366783337 + ] + }, + "properties": { + "timestamp": "2020-08-06T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80314333, + -1.36576167 + ] + }, + "properties": { + "timestamp": "2020-08-07T19:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80345833, + -1.369308337 + ] + }, + "properties": { + "timestamp": "2020-08-09T11:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79452333, + -1.371615004 + ] + }, + "properties": { + "timestamp": "2020-08-11T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80390167, + -1.365713337 + ] + }, + "properties": { + "timestamp": "2020-08-12T19:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80468667, + -1.36686167 + ] + }, + "properties": { + "timestamp": "2020-08-14T11:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.796595, + -1.368148337 + ] + }, + "properties": { + "timestamp": "2020-08-16T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80199833, + -1.366975004 + ] + }, + "properties": { + "timestamp": "2020-08-17T19:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80980333, + -1.371473337 + ] + }, + "properties": { + "timestamp": "2020-08-19T11:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80314167, + -1.369958337 + ] + }, + "properties": { + "timestamp": "2020-08-21T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80271167, + -1.366063337 + ] + }, + "properties": { + "timestamp": "2020-08-22T19:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80385833, + -1.368268337 + ] + }, + "properties": { + "timestamp": "2020-08-24T11:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80264167, + -1.36751167 + ] + }, + "properties": { + "timestamp": "2020-08-26T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79647, + -1.36804667 + ] + }, + "properties": { + "timestamp": "2020-08-27T19:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80358333, + -1.369453337 + ] + }, + "properties": { + "timestamp": "2020-08-29T11:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79218333, + -1.372728337 + ] + }, + "properties": { + "timestamp": "2020-08-31T03:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79427167, + -1.36956667 + ] + }, + "properties": { + "timestamp": "2020-09-01T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79795667, + -1.367700004 + ] + }, + "properties": { + "timestamp": "2020-09-03T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.793025, + -1.36856667 + ] + }, + "properties": { + "timestamp": "2020-09-05T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79722167, + -1.368138337 + ] + }, + "properties": { + "timestamp": "2020-09-06T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79884333, + -1.368890004 + ] + }, + "properties": { + "timestamp": "2020-09-08T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79177833, + -1.371920004 + ] + }, + "properties": { + "timestamp": "2020-09-10T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79265833, + -1.371595004 + ] + }, + "properties": { + "timestamp": "2020-09-11T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79919, + -1.369050004 + ] + }, + "properties": { + "timestamp": "2020-09-13T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79222167, + -1.372370004 + ] + }, + "properties": { + "timestamp": "2020-09-15T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.792315, + -1.372088337 + ] + }, + "properties": { + "timestamp": "2020-09-16T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79857, + -1.368793337 + ] + }, + "properties": { + "timestamp": "2020-09-18T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79340667, + -1.372510004 + ] + }, + "properties": { + "timestamp": "2020-09-20T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79499167, + -1.370583337 + ] + }, + "properties": { + "timestamp": "2020-09-21T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79842, + -1.368405004 + ] + }, + "properties": { + "timestamp": "2020-09-23T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79235, + -1.372698337 + ] + }, + "properties": { + "timestamp": "2020-09-25T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79210833, + -1.36980667 + ] + }, + "properties": { + "timestamp": "2020-09-26T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80636667, + -1.36810167 + ] + }, + "properties": { + "timestamp": "2020-09-28T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79545833, + -1.365021671 + ] + }, + "properties": { + "timestamp": "2020-09-30T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.796835, + -1.368098337 + ] + }, + "properties": { + "timestamp": "2020-10-01T04:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.796745, + -1.367525004 + ] + }, + "properties": { + "timestamp": "2020-10-01T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79104667, + -1.366878337 + ] + }, + "properties": { + "timestamp": "2020-10-02T01:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79862, + -1.369135004 + ] + }, + "properties": { + "timestamp": "2020-10-02T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78828833, + -1.366153337 + ] + }, + "properties": { + "timestamp": "2020-10-02T21:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79679667, + -1.36724667 + ] + }, + "properties": { + "timestamp": "2020-10-03T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79444833, + -1.36685667 + ] + }, + "properties": { + "timestamp": "2020-10-03T17:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79546167, + -1.369180004 + ] + }, + "properties": { + "timestamp": "2020-10-04T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80182167, + -1.365673337 + ] + }, + "properties": { + "timestamp": "2020-10-04T13:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78913, + -1.365926671 + ] + }, + "properties": { + "timestamp": "2020-10-04T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79784833, + -1.367625004 + ] + }, + "properties": { + "timestamp": "2020-10-05T09:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.788825, + -1.366755004 + ] + }, + "properties": { + "timestamp": "2020-10-05T20:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79818833, + -1.368313337 + ] + }, + "properties": { + "timestamp": "2020-10-06T06:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79477667, + -1.36884667 + ] + }, + "properties": { + "timestamp": "2020-10-06T16:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78618333, + -1.368333337 + ] + }, + "properties": { + "timestamp": "2020-10-07T02:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.80346667, + -1.365548337 + ] + }, + "properties": { + "timestamp": "2020-10-07T12:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78448667, + -1.373460004 + ] + }, + "properties": { + "timestamp": "2020-10-07T22:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79785833, + -1.367710004 + ] + }, + "properties": { + "timestamp": "2020-10-09T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79425167, + -1.367823337 + ] + }, + "properties": { + "timestamp": "2020-10-11T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79502333, + -1.369208337 + ] + }, + "properties": { + "timestamp": "2020-10-12T19:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.797825, + -1.367628337 + ] + }, + "properties": { + "timestamp": "2020-10-14T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79376, + -1.372660004 + ] + }, + "properties": { + "timestamp": "2020-10-16T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79461, + -1.370433337 + ] + }, + "properties": { + "timestamp": "2020-10-17T19:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.797835, + -1.367603337 + ] + }, + "properties": { + "timestamp": "2020-10-19T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.798345, + -1.367673337 + ] + }, + "properties": { + "timestamp": "2020-10-21T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.78911167, + -1.365370004 + ] + }, + "properties": { + "timestamp": "2020-10-22T19:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.79830833, + -1.369080004 + ] + }, + "properties": { + "timestamp": "2020-10-24T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.76511167, + -1.364753337 + ] + }, + "properties": { + "timestamp": "2020-10-26T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.765235, + -1.38757167 + ] + }, + "properties": { + "timestamp": "2020-10-27T19:31:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.75863, + -1.376950004 + ] + }, + "properties": { + "timestamp": "2020-10-29T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.713715, + -1.361486671 + ] + }, + "properties": { + "timestamp": "2020-10-31T03:31:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.70246833, + -1.335653337 + ] + }, + "properties": { + "timestamp": "2020-11-02T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61058, + -1.349751671 + ] + }, + "properties": { + "timestamp": "2020-11-04T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.605425, + -1.346970004 + ] + }, + "properties": { + "timestamp": "2020-11-07T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57843833, + -1.345581671 + ] + }, + "properties": { + "timestamp": "2020-11-09T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W79", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47471, + -1.503468337 + ] + }, + "properties": { + "timestamp": "2018-03-26T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47127167, + -1.49773667 + ] + }, + "properties": { + "timestamp": "2018-03-27T19:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47831833, + -1.504435004 + ] + }, + "properties": { + "timestamp": "2018-03-29T11:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47913333, + -1.505713337 + ] + }, + "properties": { + "timestamp": "2018-03-31T03:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47772333, + -1.50954167 + ] + }, + "properties": { + "timestamp": "2018-04-01T04:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48050833, + -1.506930004 + ] + }, + "properties": { + "timestamp": "2018-04-01T14:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47913333, + -1.504353337 + ] + }, + "properties": { + "timestamp": "2018-04-02T00:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.475765, + -1.496085004 + ] + }, + "properties": { + "timestamp": "2018-04-02T10:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48355833, + -1.511198337 + ] + }, + "properties": { + "timestamp": "2018-04-02T21:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48120667, + -1.506658337 + ] + }, + "properties": { + "timestamp": "2018-04-03T08:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47981333, + -1.50596667 + ] + }, + "properties": { + "timestamp": "2018-04-03T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47969333, + -1.506658337 + ] + }, + "properties": { + "timestamp": "2018-04-04T05:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47874833, + -1.50692167 + ] + }, + "properties": { + "timestamp": "2018-04-04T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.480175, + -1.50760167 + ] + }, + "properties": { + "timestamp": "2018-04-05T01:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48066, + -1.51131667 + ] + }, + "properties": { + "timestamp": "2018-04-05T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48069833, + -1.50686667 + ] + }, + "properties": { + "timestamp": "2018-04-05T21:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48017167, + -1.51093667 + ] + }, + "properties": { + "timestamp": "2018-04-06T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47974333, + -1.506010004 + ] + }, + "properties": { + "timestamp": "2018-04-06T17:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.480315, + -1.50661667 + ] + }, + "properties": { + "timestamp": "2018-04-07T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48086833, + -1.50678667 + ] + }, + "properties": { + "timestamp": "2018-04-07T14:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48080167, + -1.506760004 + ] + }, + "properties": { + "timestamp": "2018-04-08T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47907667, + -1.50911667 + ] + }, + "properties": { + "timestamp": "2018-04-10T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46626833, + -1.48350167 + ] + }, + "properties": { + "timestamp": "2018-04-11T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47938333, + -1.492570004 + ] + }, + "properties": { + "timestamp": "2018-04-13T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47046667, + -1.489065004 + ] + }, + "properties": { + "timestamp": "2018-04-15T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46143333, + -1.48457167 + ] + }, + "properties": { + "timestamp": "2018-04-16T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48104167, + -1.496735004 + ] + }, + "properties": { + "timestamp": "2018-04-18T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48099167, + -1.50409167 + ] + }, + "properties": { + "timestamp": "2018-04-20T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47226333, + -1.48231667 + ] + }, + "properties": { + "timestamp": "2018-04-21T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47705833, + -1.486733337 + ] + }, + "properties": { + "timestamp": "2018-04-23T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.468615, + -1.48499667 + ] + }, + "properties": { + "timestamp": "2018-04-25T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48072333, + -1.48911167 + ] + }, + "properties": { + "timestamp": "2018-04-26T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47356833, + -1.478390004 + ] + }, + "properties": { + "timestamp": "2018-04-28T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48113833, + -1.492248337 + ] + }, + "properties": { + "timestamp": "2018-04-30T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48188667, + -1.492935004 + ] + }, + "properties": { + "timestamp": "2018-05-01T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.478575, + -1.490193337 + ] + }, + "properties": { + "timestamp": "2018-05-03T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47869333, + -1.48964167 + ] + }, + "properties": { + "timestamp": "2018-05-05T11:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48088833, + -1.490570004 + ] + }, + "properties": { + "timestamp": "2018-05-07T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46856667, + -1.48416167 + ] + }, + "properties": { + "timestamp": "2018-05-08T19:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47434667, + -1.476450004 + ] + }, + "properties": { + "timestamp": "2018-05-10T11:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47983833, + -1.493510004 + ] + }, + "properties": { + "timestamp": "2018-05-12T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47778333, + -1.487240004 + ] + }, + "properties": { + "timestamp": "2018-05-13T19:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.469735, + -1.485570004 + ] + }, + "properties": { + "timestamp": "2018-05-15T11:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47079833, + -1.483423337 + ] + }, + "properties": { + "timestamp": "2018-05-17T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46976, + -1.48507667 + ] + }, + "properties": { + "timestamp": "2018-05-18T19:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46967833, + -1.48469667 + ] + }, + "properties": { + "timestamp": "2018-05-20T11:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46969833, + -1.485008337 + ] + }, + "properties": { + "timestamp": "2018-05-22T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46379, + -1.474600004 + ] + }, + "properties": { + "timestamp": "2018-05-24T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47638, + -1.475975004 + ] + }, + "properties": { + "timestamp": "2018-05-26T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47279667, + -1.47755167 + ] + }, + "properties": { + "timestamp": "2018-05-29T03:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47371833, + -1.47715667 + ] + }, + "properties": { + "timestamp": "2018-05-31T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46383833, + -1.48531167 + ] + }, + "properties": { + "timestamp": "2018-06-03T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47252333, + -1.476295004 + ] + }, + "properties": { + "timestamp": "2018-06-05T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46447167, + -1.48483167 + ] + }, + "properties": { + "timestamp": "2018-06-08T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46406333, + -1.48575667 + ] + }, + "properties": { + "timestamp": "2018-06-10T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46431, + -1.488203337 + ] + }, + "properties": { + "timestamp": "2018-06-13T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4647, + -1.484328337 + ] + }, + "properties": { + "timestamp": "2018-06-15T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47204833, + -1.479453337 + ] + }, + "properties": { + "timestamp": "2018-06-18T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46586667, + -1.486823337 + ] + }, + "properties": { + "timestamp": "2018-06-20T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46465, + -1.486755004 + ] + }, + "properties": { + "timestamp": "2018-06-23T03:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.464965, + -1.483495004 + ] + }, + "properties": { + "timestamp": "2018-06-25T15:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46600333, + -1.484410004 + ] + }, + "properties": { + "timestamp": "2018-06-28T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46509333, + -1.48624667 + ] + }, + "properties": { + "timestamp": "2018-06-30T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.464015, + -1.483145004 + ] + }, + "properties": { + "timestamp": "2018-07-01T09:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.466595, + -1.483523337 + ] + }, + "properties": { + "timestamp": "2018-07-01T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.464175, + -1.480945004 + ] + }, + "properties": { + "timestamp": "2018-07-02T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46400333, + -1.481048337 + ] + }, + "properties": { + "timestamp": "2018-07-02T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45903167, + -1.483485004 + ] + }, + "properties": { + "timestamp": "2018-07-03T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46183, + -1.47020667 + ] + }, + "properties": { + "timestamp": "2018-07-03T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46453, + -1.48375167 + ] + }, + "properties": { + "timestamp": "2018-07-03T21:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46426333, + -1.483815004 + ] + }, + "properties": { + "timestamp": "2018-07-04T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46651833, + -1.48196167 + ] + }, + "properties": { + "timestamp": "2018-07-04T17:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46544667, + -1.48222667 + ] + }, + "properties": { + "timestamp": "2018-07-05T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46557667, + -1.482158337 + ] + }, + "properties": { + "timestamp": "2018-07-05T13:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47837167, + -1.485165004 + ] + }, + "properties": { + "timestamp": "2018-07-05T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.476665, + -1.474950004 + ] + }, + "properties": { + "timestamp": "2018-07-06T09:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47099833, + -1.483218337 + ] + }, + "properties": { + "timestamp": "2018-07-06T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47644667, + -1.477333337 + ] + }, + "properties": { + "timestamp": "2018-07-07T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47438, + -1.476310004 + ] + }, + "properties": { + "timestamp": "2018-07-07T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46556333, + -1.482138337 + ] + }, + "properties": { + "timestamp": "2018-07-08T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46228667, + -1.486030004 + ] + }, + "properties": { + "timestamp": "2018-07-10T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46589833, + -1.48252167 + ] + }, + "properties": { + "timestamp": "2018-07-13T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46615167, + -1.483708337 + ] + }, + "properties": { + "timestamp": "2018-07-15T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46091667, + -1.46883167 + ] + }, + "properties": { + "timestamp": "2018-07-18T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46581167, + -1.482343337 + ] + }, + "properties": { + "timestamp": "2018-07-20T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46164833, + -1.474398337 + ] + }, + "properties": { + "timestamp": "2018-07-23T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46293667, + -1.47646667 + ] + }, + "properties": { + "timestamp": "2018-07-25T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46862667, + -1.47227167 + ] + }, + "properties": { + "timestamp": "2018-07-28T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46454667, + -1.483668337 + ] + }, + "properties": { + "timestamp": "2018-07-30T23:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46749, + -1.487240004 + ] + }, + "properties": { + "timestamp": "2018-08-01T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47442333, + -1.49028167 + ] + }, + "properties": { + "timestamp": "2018-08-03T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.474375, + -1.475788337 + ] + }, + "properties": { + "timestamp": "2018-08-05T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.464955, + -1.483780004 + ] + }, + "properties": { + "timestamp": "2018-08-06T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.467875, + -1.473815004 + ] + }, + "properties": { + "timestamp": "2018-08-08T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46664667, + -1.47319667 + ] + }, + "properties": { + "timestamp": "2018-08-10T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47278, + -1.486398337 + ] + }, + "properties": { + "timestamp": "2018-08-11T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.475635, + -1.477273337 + ] + }, + "properties": { + "timestamp": "2018-08-13T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47461833, + -1.47520167 + ] + }, + "properties": { + "timestamp": "2018-08-15T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46114833, + -1.478235004 + ] + }, + "properties": { + "timestamp": "2018-08-16T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47454, + -1.48700167 + ] + }, + "properties": { + "timestamp": "2018-08-18T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46217, + -1.47378167 + ] + }, + "properties": { + "timestamp": "2018-08-20T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46273, + -1.47699667 + ] + }, + "properties": { + "timestamp": "2018-08-21T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.474865, + -1.476268337 + ] + }, + "properties": { + "timestamp": "2018-08-23T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47374333, + -1.474323337 + ] + }, + "properties": { + "timestamp": "2018-08-25T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46405667, + -1.483958337 + ] + }, + "properties": { + "timestamp": "2018-08-26T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46875667, + -1.48327667 + ] + }, + "properties": { + "timestamp": "2018-08-28T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47154333, + -1.47507667 + ] + }, + "properties": { + "timestamp": "2018-08-30T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45932833, + -1.481043337 + ] + }, + "properties": { + "timestamp": "2018-08-31T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46157, + -1.46929167 + ] + }, + "properties": { + "timestamp": "2018-09-02T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46663667, + -1.47321667 + ] + }, + "properties": { + "timestamp": "2018-09-04T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46068667, + -1.481738337 + ] + }, + "properties": { + "timestamp": "2018-09-05T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45860333, + -1.465913337 + ] + }, + "properties": { + "timestamp": "2018-09-07T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45797, + -1.452971671 + ] + }, + "properties": { + "timestamp": "2018-09-09T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.464575, + -1.483465004 + ] + }, + "properties": { + "timestamp": "2018-09-10T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46030167, + -1.469558337 + ] + }, + "properties": { + "timestamp": "2018-09-12T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4576, + -1.453618337 + ] + }, + "properties": { + "timestamp": "2018-09-14T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46122, + -1.477900004 + ] + }, + "properties": { + "timestamp": "2018-09-15T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45873333, + -1.474510004 + ] + }, + "properties": { + "timestamp": "2018-09-17T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46379833, + -1.47250167 + ] + }, + "properties": { + "timestamp": "2018-09-19T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47203833, + -1.476030004 + ] + }, + "properties": { + "timestamp": "2018-09-20T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46358, + -1.477693337 + ] + }, + "properties": { + "timestamp": "2018-09-22T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46195667, + -1.474113337 + ] + }, + "properties": { + "timestamp": "2018-09-24T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45867833, + -1.47531667 + ] + }, + "properties": { + "timestamp": "2018-09-25T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47074833, + -1.476665004 + ] + }, + "properties": { + "timestamp": "2018-09-27T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47142833, + -1.48939167 + ] + }, + "properties": { + "timestamp": "2018-09-29T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46337833, + -1.483518337 + ] + }, + "properties": { + "timestamp": "2018-09-30T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47485167, + -1.474260004 + ] + }, + "properties": { + "timestamp": "2018-10-01T09:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.459585, + -1.481328337 + ] + }, + "properties": { + "timestamp": "2018-10-01T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46754833, + -1.48674667 + ] + }, + "properties": { + "timestamp": "2018-10-02T05:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46513167, + -1.48463167 + ] + }, + "properties": { + "timestamp": "2018-10-02T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46782167, + -1.483365004 + ] + }, + "properties": { + "timestamp": "2018-10-03T01:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47499333, + -1.474280004 + ] + }, + "properties": { + "timestamp": "2018-10-03T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46775833, + -1.483360004 + ] + }, + "properties": { + "timestamp": "2018-10-03T21:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46634833, + -1.47359667 + ] + }, + "properties": { + "timestamp": "2018-10-04T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46542167, + -1.48170667 + ] + }, + "properties": { + "timestamp": "2018-10-04T17:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.468605, + -1.48476167 + ] + }, + "properties": { + "timestamp": "2018-10-05T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47701667, + -1.47581167 + ] + }, + "properties": { + "timestamp": "2018-10-05T13:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.458825, + -1.47948167 + ] + }, + "properties": { + "timestamp": "2018-10-05T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.456005, + -1.458071671 + ] + }, + "properties": { + "timestamp": "2018-10-06T09:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45927, + -1.48113167 + ] + }, + "properties": { + "timestamp": "2018-10-06T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46815167, + -1.480908337 + ] + }, + "properties": { + "timestamp": "2018-10-07T05:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47324, + -1.479748337 + ] + }, + "properties": { + "timestamp": "2018-10-07T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4705, + -1.489223337 + ] + }, + "properties": { + "timestamp": "2018-10-08T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46293667, + -1.482818337 + ] + }, + "properties": { + "timestamp": "2018-10-09T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.466925, + -1.47677167 + ] + }, + "properties": { + "timestamp": "2018-10-11T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46504333, + -1.48551167 + ] + }, + "properties": { + "timestamp": "2018-10-13T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46595167, + -1.48459167 + ] + }, + "properties": { + "timestamp": "2018-10-14T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.477645, + -1.501845004 + ] + }, + "properties": { + "timestamp": "2018-10-16T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45587167, + -1.461113337 + ] + }, + "properties": { + "timestamp": "2018-10-18T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44204833, + -1.464441671 + ] + }, + "properties": { + "timestamp": "2018-10-19T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42438, + -1.475505004 + ] + }, + "properties": { + "timestamp": "2018-10-21T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.369675, + -1.50572167 + ] + }, + "properties": { + "timestamp": "2018-10-23T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37960167, + -1.506505004 + ] + }, + "properties": { + "timestamp": "2018-10-24T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376855, + -1.506133337 + ] + }, + "properties": { + "timestamp": "2018-10-26T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38297333, + -1.500993337 + ] + }, + "properties": { + "timestamp": "2018-10-28T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36146333, + -1.508260004 + ] + }, + "properties": { + "timestamp": "2018-10-29T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37274833, + -1.50975167 + ] + }, + "properties": { + "timestamp": "2018-10-31T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35893833, + -1.503303337 + ] + }, + "properties": { + "timestamp": "2018-11-02T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38397, + -1.500855004 + ] + }, + "properties": { + "timestamp": "2018-11-05T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.390035, + -1.496055004 + ] + }, + "properties": { + "timestamp": "2018-11-07T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38043333, + -1.505658337 + ] + }, + "properties": { + "timestamp": "2018-11-10T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.381245, + -1.508643337 + ] + }, + "properties": { + "timestamp": "2018-11-12T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37963333, + -1.50535167 + ] + }, + "properties": { + "timestamp": "2018-11-15T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38159, + -1.509280004 + ] + }, + "properties": { + "timestamp": "2018-11-17T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.379715, + -1.50551167 + ] + }, + "properties": { + "timestamp": "2018-11-20T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37773667, + -1.512068337 + ] + }, + "properties": { + "timestamp": "2018-11-22T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37994833, + -1.50583667 + ] + }, + "properties": { + "timestamp": "2018-11-25T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37679833, + -1.482035004 + ] + }, + "properties": { + "timestamp": "2018-11-27T23:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38012667, + -1.502230004 + ] + }, + "properties": { + "timestamp": "2018-11-30T07:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37767167, + -1.484091671 + ] + }, + "properties": { + "timestamp": "2018-12-02T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.382505, + -1.50474667 + ] + }, + "properties": { + "timestamp": "2018-12-05T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33708833, + -1.474945004 + ] + }, + "properties": { + "timestamp": "2018-12-07T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.33600167, + -1.481965004 + ] + }, + "properties": { + "timestamp": "2018-12-10T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34664, + -1.482871671 + ] + }, + "properties": { + "timestamp": "2018-12-12T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47864167, + -1.358291671 + ] + }, + "properties": { + "timestamp": "2018-12-15T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43140333, + -1.399968337 + ] + }, + "properties": { + "timestamp": "2018-12-17T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44175667, + -1.388940004 + ] + }, + "properties": { + "timestamp": "2018-12-20T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48333167, + -1.359115004 + ] + }, + "properties": { + "timestamp": "2018-12-22T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46943167, + -1.371785004 + ] + }, + "properties": { + "timestamp": "2018-12-25T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48034167, + -1.369645004 + ] + }, + "properties": { + "timestamp": "2018-12-27T23:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.497615, + -1.351146671 + ] + }, + "properties": { + "timestamp": "2018-12-30T07:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51261, + -1.324808337 + ] + }, + "properties": { + "timestamp": "2019-01-01T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50042, + -1.349860004 + ] + }, + "properties": { + "timestamp": "2019-01-01T13:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49758, + -1.327833337 + ] + }, + "properties": { + "timestamp": "2019-01-01T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.508645, + -1.314603337 + ] + }, + "properties": { + "timestamp": "2019-01-02T09:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50026, + -1.347638337 + ] + }, + "properties": { + "timestamp": "2019-01-02T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.477935, + -1.374943337 + ] + }, + "properties": { + "timestamp": "2019-01-03T05:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49182667, + -1.364645004 + ] + }, + "properties": { + "timestamp": "2019-01-03T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49285333, + -1.360878337 + ] + }, + "properties": { + "timestamp": "2019-01-04T01:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48216167, + -1.375018337 + ] + }, + "properties": { + "timestamp": "2019-01-04T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49981, + -1.369361671 + ] + }, + "properties": { + "timestamp": "2019-01-04T21:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.480795, + -1.373536671 + ] + }, + "properties": { + "timestamp": "2019-01-05T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48591667, + -1.376258337 + ] + }, + "properties": { + "timestamp": "2019-01-05T18:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48525667, + -1.370433337 + ] + }, + "properties": { + "timestamp": "2019-01-06T04:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47635, + -1.374378337 + ] + }, + "properties": { + "timestamp": "2019-01-06T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.479155, + -1.368001671 + ] + }, + "properties": { + "timestamp": "2019-01-07T01:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.438405, + -1.396536671 + ] + }, + "properties": { + "timestamp": "2019-01-07T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42825333, + -1.394020004 + ] + }, + "properties": { + "timestamp": "2019-01-07T21:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42470333, + -1.411250004 + ] + }, + "properties": { + "timestamp": "2019-01-09T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42316333, + -1.397680004 + ] + }, + "properties": { + "timestamp": "2019-01-10T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44325, + -1.356673337 + ] + }, + "properties": { + "timestamp": "2019-01-12T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45515833, + -1.359901671 + ] + }, + "properties": { + "timestamp": "2019-01-14T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42132, + -1.353775004 + ] + }, + "properties": { + "timestamp": "2019-01-15T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48528167, + -1.349350004 + ] + }, + "properties": { + "timestamp": "2019-01-17T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54481667, + -1.356938337 + ] + }, + "properties": { + "timestamp": "2019-01-19T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52889, + -1.371523337 + ] + }, + "properties": { + "timestamp": "2019-01-20T23:31:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55476833, + -1.363410004 + ] + }, + "properties": { + "timestamp": "2019-01-22T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53813, + -1.375660004 + ] + }, + "properties": { + "timestamp": "2019-01-24T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56500333, + -1.356366671 + ] + }, + "properties": { + "timestamp": "2019-01-25T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.545105, + -1.373928337 + ] + }, + "properties": { + "timestamp": "2019-01-27T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5496, + -1.366248337 + ] + }, + "properties": { + "timestamp": "2019-01-29T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55858833, + -1.357796671 + ] + }, + "properties": { + "timestamp": "2019-01-30T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55844833, + -1.354610004 + ] + }, + "properties": { + "timestamp": "2019-02-01T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.503315, + -1.378781671 + ] + }, + "properties": { + "timestamp": "2019-02-04T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52357167, + -1.377023337 + ] + }, + "properties": { + "timestamp": "2019-02-06T23:31:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51145833, + -1.381231671 + ] + }, + "properties": { + "timestamp": "2019-02-09T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49735167, + -1.386956671 + ] + }, + "properties": { + "timestamp": "2019-02-11T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42644833, + -1.410988337 + ] + }, + "properties": { + "timestamp": "2019-02-14T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40590667, + -1.389593337 + ] + }, + "properties": { + "timestamp": "2019-02-16T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46642833, + -1.472018337 + ] + }, + "properties": { + "timestamp": "2019-02-19T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47221333, + -1.483925004 + ] + }, + "properties": { + "timestamp": "2019-02-21T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46833833, + -1.487150004 + ] + }, + "properties": { + "timestamp": "2019-02-24T07:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46708667, + -1.484160004 + ] + }, + "properties": { + "timestamp": "2019-02-26T23:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.457955, + -1.458626671 + ] + }, + "properties": { + "timestamp": "2019-03-01T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46378, + -1.48113667 + ] + }, + "properties": { + "timestamp": "2019-03-02T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46365333, + -1.489355004 + ] + }, + "properties": { + "timestamp": "2019-03-04T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47162, + -1.476570004 + ] + }, + "properties": { + "timestamp": "2019-03-06T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45647, + -1.483848337 + ] + }, + "properties": { + "timestamp": "2019-03-07T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.473135, + -1.48760167 + ] + }, + "properties": { + "timestamp": "2019-03-09T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47467667, + -1.474900004 + ] + }, + "properties": { + "timestamp": "2019-03-11T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46877667, + -1.483555004 + ] + }, + "properties": { + "timestamp": "2019-03-12T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.472515, + -1.486420004 + ] + }, + "properties": { + "timestamp": "2019-03-14T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45829833, + -1.452176671 + ] + }, + "properties": { + "timestamp": "2019-03-16T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.464915, + -1.478258337 + ] + }, + "properties": { + "timestamp": "2019-03-17T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46715833, + -1.473538337 + ] + }, + "properties": { + "timestamp": "2019-03-19T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46886, + -1.472455004 + ] + }, + "properties": { + "timestamp": "2019-03-21T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.466345, + -1.47923167 + ] + }, + "properties": { + "timestamp": "2019-03-22T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46718333, + -1.478180004 + ] + }, + "properties": { + "timestamp": "2019-03-24T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46891667, + -1.47249167 + ] + }, + "properties": { + "timestamp": "2019-03-26T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45934833, + -1.48062167 + ] + }, + "properties": { + "timestamp": "2019-03-27T23:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.473295, + -1.487608337 + ] + }, + "properties": { + "timestamp": "2019-03-29T15:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46891, + -1.472423337 + ] + }, + "properties": { + "timestamp": "2019-03-31T07:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46316833, + -1.47674667 + ] + }, + "properties": { + "timestamp": "2019-04-01T05:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45360167, + -1.472468337 + ] + }, + "properties": { + "timestamp": "2019-04-01T16:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46308, + -1.48301167 + ] + }, + "properties": { + "timestamp": "2019-04-02T02:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46636667, + -1.489545004 + ] + }, + "properties": { + "timestamp": "2019-04-02T13:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.458695, + -1.481588337 + ] + }, + "properties": { + "timestamp": "2019-04-02T23:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.471885, + -1.47551167 + ] + }, + "properties": { + "timestamp": "2019-04-03T09:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46745, + -1.479270004 + ] + }, + "properties": { + "timestamp": "2019-04-03T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46371667, + -1.46524167 + ] + }, + "properties": { + "timestamp": "2019-04-04T05:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47462333, + -1.477433337 + ] + }, + "properties": { + "timestamp": "2019-04-04T15:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.472185, + -1.481000004 + ] + }, + "properties": { + "timestamp": "2019-04-05T01:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47223167, + -1.478860004 + ] + }, + "properties": { + "timestamp": "2019-04-05T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47123833, + -1.48150167 + ] + }, + "properties": { + "timestamp": "2019-04-05T21:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46398, + -1.477485004 + ] + }, + "properties": { + "timestamp": "2019-04-06T08:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46110833, + -1.47855667 + ] + }, + "properties": { + "timestamp": "2019-04-06T18:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46265, + -1.47741667 + ] + }, + "properties": { + "timestamp": "2019-04-07T06:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47054333, + -1.485280004 + ] + }, + "properties": { + "timestamp": "2019-04-07T16:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.473105, + -1.476238337 + ] + }, + "properties": { + "timestamp": "2019-04-08T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46606833, + -1.487860004 + ] + }, + "properties": { + "timestamp": "2019-04-10T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48592, + -1.494585004 + ] + }, + "properties": { + "timestamp": "2019-04-11T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47452667, + -1.47938667 + ] + }, + "properties": { + "timestamp": "2019-04-13T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45593667, + -1.455143337 + ] + }, + "properties": { + "timestamp": "2019-04-15T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42389, + -1.460098337 + ] + }, + "properties": { + "timestamp": "2019-04-16T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43502, + -1.462281671 + ] + }, + "properties": { + "timestamp": "2019-04-18T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40486167, + -1.480581671 + ] + }, + "properties": { + "timestamp": "2019-04-20T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.399945, + -1.49859167 + ] + }, + "properties": { + "timestamp": "2019-04-21T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37970667, + -1.493070004 + ] + }, + "properties": { + "timestamp": "2019-04-23T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38223667, + -1.486991671 + ] + }, + "properties": { + "timestamp": "2019-04-25T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38201833, + -1.490843337 + ] + }, + "properties": { + "timestamp": "2019-04-26T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38244, + -1.49496167 + ] + }, + "properties": { + "timestamp": "2019-04-28T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38165667, + -1.49447667 + ] + }, + "properties": { + "timestamp": "2019-04-30T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.381595, + -1.49072667 + ] + }, + "properties": { + "timestamp": "2019-05-01T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37917, + -1.492998337 + ] + }, + "properties": { + "timestamp": "2019-05-03T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38087833, + -1.490610004 + ] + }, + "properties": { + "timestamp": "2019-05-05T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38134333, + -1.491010004 + ] + }, + "properties": { + "timestamp": "2019-05-07T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38080667, + -1.492488337 + ] + }, + "properties": { + "timestamp": "2019-05-09T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39526833, + -1.49472667 + ] + }, + "properties": { + "timestamp": "2019-05-10T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38934167, + -1.49671667 + ] + }, + "properties": { + "timestamp": "2019-05-12T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38697, + -1.497943337 + ] + }, + "properties": { + "timestamp": "2019-05-14T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39404167, + -1.49504167 + ] + }, + "properties": { + "timestamp": "2019-05-15T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38871, + -1.49629167 + ] + }, + "properties": { + "timestamp": "2019-05-17T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40746167, + -1.507340004 + ] + }, + "properties": { + "timestamp": "2019-05-19T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40694, + -1.50137167 + ] + }, + "properties": { + "timestamp": "2019-05-20T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40773167, + -1.502680004 + ] + }, + "properties": { + "timestamp": "2019-05-22T15:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40901167, + -1.498985004 + ] + }, + "properties": { + "timestamp": "2019-05-24T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40806167, + -1.50762667 + ] + }, + "properties": { + "timestamp": "2019-05-27T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40719833, + -1.49735167 + ] + }, + "properties": { + "timestamp": "2019-05-29T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40645, + -1.51000167 + ] + }, + "properties": { + "timestamp": "2019-06-01T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40687667, + -1.500183337 + ] + }, + "properties": { + "timestamp": "2019-06-03T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40766, + -1.50765667 + ] + }, + "properties": { + "timestamp": "2019-06-06T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40763167, + -1.496320004 + ] + }, + "properties": { + "timestamp": "2019-06-08T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38909, + -1.496225004 + ] + }, + "properties": { + "timestamp": "2019-06-11T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39444333, + -1.494670004 + ] + }, + "properties": { + "timestamp": "2019-06-13T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38053667, + -1.49249167 + ] + }, + "properties": { + "timestamp": "2019-06-16T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37836333, + -1.484895004 + ] + }, + "properties": { + "timestamp": "2019-06-18T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38153, + -1.494915004 + ] + }, + "properties": { + "timestamp": "2019-06-21T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38478333, + -1.49649667 + ] + }, + "properties": { + "timestamp": "2019-06-23T06:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3806, + -1.490238337 + ] + }, + "properties": { + "timestamp": "2019-06-23T16:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38121667, + -1.490930004 + ] + }, + "properties": { + "timestamp": "2019-06-25T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37901833, + -1.485746671 + ] + }, + "properties": { + "timestamp": "2019-06-28T03:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38166667, + -1.49519667 + ] + }, + "properties": { + "timestamp": "2019-06-30T15:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37988667, + -1.490960004 + ] + }, + "properties": { + "timestamp": "2019-07-01T08:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37549667, + -1.482000004 + ] + }, + "properties": { + "timestamp": "2019-07-01T18:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38693333, + -1.49601167 + ] + }, + "properties": { + "timestamp": "2019-07-02T04:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38097167, + -1.49224167 + ] + }, + "properties": { + "timestamp": "2019-07-02T14:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37517, + -1.480763337 + ] + }, + "properties": { + "timestamp": "2019-07-03T00:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38827167, + -1.50390167 + ] + }, + "properties": { + "timestamp": "2019-07-03T10:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39488333, + -1.494880004 + ] + }, + "properties": { + "timestamp": "2019-07-03T20:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38752667, + -1.50538167 + ] + }, + "properties": { + "timestamp": "2019-07-04T06:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38921333, + -1.49545167 + ] + }, + "properties": { + "timestamp": "2019-07-04T16:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.389825, + -1.49554667 + ] + }, + "properties": { + "timestamp": "2019-07-05T02:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38858833, + -1.502865004 + ] + }, + "properties": { + "timestamp": "2019-07-05T12:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39016833, + -1.494993337 + ] + }, + "properties": { + "timestamp": "2019-07-05T22:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40842167, + -1.505950004 + ] + }, + "properties": { + "timestamp": "2019-07-06T08:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40927333, + -1.49945667 + ] + }, + "properties": { + "timestamp": "2019-07-06T18:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.407215, + -1.50144167 + ] + }, + "properties": { + "timestamp": "2019-07-07T04:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40692833, + -1.501355004 + ] + }, + "properties": { + "timestamp": "2019-07-07T14:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40677167, + -1.502425004 + ] + }, + "properties": { + "timestamp": "2019-07-08T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40763833, + -1.50224667 + ] + }, + "properties": { + "timestamp": "2019-07-10T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40681, + -1.50186667 + ] + }, + "properties": { + "timestamp": "2019-07-13T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.407975, + -1.50210167 + ] + }, + "properties": { + "timestamp": "2019-07-15T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.407575, + -1.502003337 + ] + }, + "properties": { + "timestamp": "2019-07-18T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40859833, + -1.502458337 + ] + }, + "properties": { + "timestamp": "2019-07-20T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40592667, + -1.501003337 + ] + }, + "properties": { + "timestamp": "2019-07-23T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40749333, + -1.502120004 + ] + }, + "properties": { + "timestamp": "2019-07-25T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40827333, + -1.506693337 + ] + }, + "properties": { + "timestamp": "2019-07-28T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37841833, + -1.484898337 + ] + }, + "properties": { + "timestamp": "2019-07-30T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.397605, + -1.49968667 + ] + }, + "properties": { + "timestamp": "2019-08-01T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.387705, + -1.51328667 + ] + }, + "properties": { + "timestamp": "2019-08-03T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.386095, + -1.49606167 + ] + }, + "properties": { + "timestamp": "2019-08-05T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38118667, + -1.485180004 + ] + }, + "properties": { + "timestamp": "2019-08-06T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.385315, + -1.496940004 + ] + }, + "properties": { + "timestamp": "2019-08-08T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38584167, + -1.49652667 + ] + }, + "properties": { + "timestamp": "2019-08-10T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40697833, + -1.500483337 + ] + }, + "properties": { + "timestamp": "2019-08-11T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.406525, + -1.50202167 + ] + }, + "properties": { + "timestamp": "2019-08-13T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40792167, + -1.50332167 + ] + }, + "properties": { + "timestamp": "2019-08-15T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.406615, + -1.498833337 + ] + }, + "properties": { + "timestamp": "2019-08-16T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40723167, + -1.502588337 + ] + }, + "properties": { + "timestamp": "2019-08-18T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40773833, + -1.503683337 + ] + }, + "properties": { + "timestamp": "2019-08-20T07:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40708667, + -1.500375004 + ] + }, + "properties": { + "timestamp": "2019-08-21T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40768, + -1.49936167 + ] + }, + "properties": { + "timestamp": "2019-08-23T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40897, + -1.51015167 + ] + }, + "properties": { + "timestamp": "2019-08-25T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.378165, + -1.486598337 + ] + }, + "properties": { + "timestamp": "2019-08-27T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37163667, + -1.481308337 + ] + }, + "properties": { + "timestamp": "2019-08-28T23:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38147333, + -1.49232167 + ] + }, + "properties": { + "timestamp": "2019-08-30T15:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38237833, + -1.505295004 + ] + }, + "properties": { + "timestamp": "2019-09-01T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38161, + -1.484976671 + ] + }, + "properties": { + "timestamp": "2019-09-02T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38326, + -1.497110004 + ] + }, + "properties": { + "timestamp": "2019-09-04T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38715667, + -1.498415004 + ] + }, + "properties": { + "timestamp": "2019-09-06T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38494667, + -1.487650004 + ] + }, + "properties": { + "timestamp": "2019-09-07T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.386345, + -1.50020667 + ] + }, + "properties": { + "timestamp": "2019-09-09T15:31:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38720667, + -1.497845004 + ] + }, + "properties": { + "timestamp": "2019-09-11T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40940333, + -1.499850004 + ] + }, + "properties": { + "timestamp": "2019-09-12T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40720333, + -1.50645667 + ] + }, + "properties": { + "timestamp": "2019-09-14T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40749833, + -1.502888337 + ] + }, + "properties": { + "timestamp": "2019-09-16T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40983833, + -1.493560004 + ] + }, + "properties": { + "timestamp": "2019-09-17T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41403, + -1.505030004 + ] + }, + "properties": { + "timestamp": "2019-09-19T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40827167, + -1.506683337 + ] + }, + "properties": { + "timestamp": "2019-09-21T07:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41092, + -1.494005004 + ] + }, + "properties": { + "timestamp": "2019-09-22T23:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41086833, + -1.52167167 + ] + }, + "properties": { + "timestamp": "2019-09-24T15:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.380865, + -1.492545004 + ] + }, + "properties": { + "timestamp": "2019-09-28T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40947, + -1.493493337 + ] + }, + "properties": { + "timestamp": "2019-09-29T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40698, + -1.500120004 + ] + }, + "properties": { + "timestamp": "2019-10-01T02:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40712167, + -1.516380004 + ] + }, + "properties": { + "timestamp": "2019-10-01T12:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40748167, + -1.496233337 + ] + }, + "properties": { + "timestamp": "2019-10-01T22:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41166, + -1.50965167 + ] + }, + "properties": { + "timestamp": "2019-10-02T09:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40804833, + -1.49676167 + ] + }, + "properties": { + "timestamp": "2019-10-02T19:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40719333, + -1.506108337 + ] + }, + "properties": { + "timestamp": "2019-10-03T05:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41134667, + -1.497188337 + ] + }, + "properties": { + "timestamp": "2019-10-03T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41074333, + -1.49344167 + ] + }, + "properties": { + "timestamp": "2019-10-04T01:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40865333, + -1.512408337 + ] + }, + "properties": { + "timestamp": "2019-10-04T11:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40764, + -1.499705004 + ] + }, + "properties": { + "timestamp": "2019-10-04T21:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41007, + -1.513415004 + ] + }, + "properties": { + "timestamp": "2019-10-05T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.407755, + -1.513488337 + ] + }, + "properties": { + "timestamp": "2019-10-05T17:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41427, + -1.50535167 + ] + }, + "properties": { + "timestamp": "2019-10-06T03:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40233167, + -1.52184167 + ] + }, + "properties": { + "timestamp": "2019-10-06T13:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39875333, + -1.521298337 + ] + }, + "properties": { + "timestamp": "2019-10-06T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.379635, + -1.505145004 + ] + }, + "properties": { + "timestamp": "2019-10-07T09:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38130833, + -1.484693337 + ] + }, + "properties": { + "timestamp": "2019-10-07T19:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39045333, + -1.495370004 + ] + }, + "properties": { + "timestamp": "2019-10-08T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36799167, + -1.49474167 + ] + }, + "properties": { + "timestamp": "2019-10-10T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.383975, + -1.496210004 + ] + }, + "properties": { + "timestamp": "2019-10-12T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37290167, + -1.480536671 + ] + }, + "properties": { + "timestamp": "2019-10-13T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.396535, + -1.501178337 + ] + }, + "properties": { + "timestamp": "2019-10-15T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.406655, + -1.508355004 + ] + }, + "properties": { + "timestamp": "2019-10-17T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39439167, + -1.49576167 + ] + }, + "properties": { + "timestamp": "2019-10-18T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38717833, + -1.49873667 + ] + }, + "properties": { + "timestamp": "2019-10-20T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38400833, + -1.49751167 + ] + }, + "properties": { + "timestamp": "2019-10-22T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36666, + -1.470093337 + ] + }, + "properties": { + "timestamp": "2019-10-23T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.355435, + -1.478498337 + ] + }, + "properties": { + "timestamp": "2019-10-25T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34426833, + -1.473336671 + ] + }, + "properties": { + "timestamp": "2019-10-27T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35127333, + -1.466586671 + ] + }, + "properties": { + "timestamp": "2019-10-29T03:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36570833, + -1.471493337 + ] + }, + "properties": { + "timestamp": "2019-10-30T19:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34061167, + -1.485800004 + ] + }, + "properties": { + "timestamp": "2019-11-01T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38794, + -1.503425004 + ] + }, + "properties": { + "timestamp": "2019-11-04T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.387605, + -1.503198337 + ] + }, + "properties": { + "timestamp": "2019-11-06T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34865667, + -1.476705004 + ] + }, + "properties": { + "timestamp": "2019-11-09T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34736, + -1.475260004 + ] + }, + "properties": { + "timestamp": "2019-11-11T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34432167, + -1.478245004 + ] + }, + "properties": { + "timestamp": "2019-11-14T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34346167, + -1.476608337 + ] + }, + "properties": { + "timestamp": "2019-11-16T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.343015, + -1.483861671 + ] + }, + "properties": { + "timestamp": "2019-11-19T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.345135, + -1.488526671 + ] + }, + "properties": { + "timestamp": "2019-11-21T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.354095, + -1.479670004 + ] + }, + "properties": { + "timestamp": "2019-11-24T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35408667, + -1.456751671 + ] + }, + "properties": { + "timestamp": "2019-11-26T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.34518, + -1.477085004 + ] + }, + "properties": { + "timestamp": "2019-11-29T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38245333, + -1.425826671 + ] + }, + "properties": { + "timestamp": "2019-12-01T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38435333, + -1.399528337 + ] + }, + "properties": { + "timestamp": "2019-12-04T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37803833, + -1.402305004 + ] + }, + "properties": { + "timestamp": "2019-12-06T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37644167, + -1.389591671 + ] + }, + "properties": { + "timestamp": "2019-12-09T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37222167, + -1.407553337 + ] + }, + "properties": { + "timestamp": "2019-12-11T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3763, + -1.389910004 + ] + }, + "properties": { + "timestamp": "2019-12-14T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376465, + -1.389521671 + ] + }, + "properties": { + "timestamp": "2019-12-16T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.391095, + -1.363071671 + ] + }, + "properties": { + "timestamp": "2019-12-19T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37668333, + -1.389983337 + ] + }, + "properties": { + "timestamp": "2019-12-21T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377545, + -1.403333337 + ] + }, + "properties": { + "timestamp": "2019-12-24T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37633167, + -1.389668337 + ] + }, + "properties": { + "timestamp": "2019-12-26T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376575, + -1.390438337 + ] + }, + "properties": { + "timestamp": "2019-12-29T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.380035, + -1.394061671 + ] + }, + "properties": { + "timestamp": "2019-12-31T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.375955, + -1.389151671 + ] + }, + "properties": { + "timestamp": "2020-01-01T09:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376815, + -1.389118337 + ] + }, + "properties": { + "timestamp": "2020-01-01T21:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37543667, + -1.389536671 + ] + }, + "properties": { + "timestamp": "2020-07-01T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376385, + -1.390313337 + ] + }, + "properties": { + "timestamp": "2020-07-01T17:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37554833, + -1.389486671 + ] + }, + "properties": { + "timestamp": "2020-07-02T04:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37518833, + -1.390123337 + ] + }, + "properties": { + "timestamp": "2020-07-02T14:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38019833, + -1.389428337 + ] + }, + "properties": { + "timestamp": "2020-07-03T00:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.381075, + -1.387721671 + ] + }, + "properties": { + "timestamp": "2020-07-03T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38338, + -1.393066671 + ] + }, + "properties": { + "timestamp": "2020-07-03T21:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.375375, + -1.390315004 + ] + }, + "properties": { + "timestamp": "2020-07-04T09:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38309667, + -1.394036671 + ] + }, + "properties": { + "timestamp": "2020-07-04T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37583, + -1.390053337 + ] + }, + "properties": { + "timestamp": "2020-07-05T05:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37994, + -1.392193337 + ] + }, + "properties": { + "timestamp": "2020-07-05T15:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37956333, + -1.390958337 + ] + }, + "properties": { + "timestamp": "2020-07-06T01:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37574833, + -1.390121671 + ] + }, + "properties": { + "timestamp": "2020-07-06T11:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.379685, + -1.394635004 + ] + }, + "properties": { + "timestamp": "2020-07-06T21:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37583667, + -1.390128337 + ] + }, + "properties": { + "timestamp": "2020-07-07T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.380575, + -1.389998337 + ] + }, + "properties": { + "timestamp": "2020-07-07T17:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37634833, + -1.390233337 + ] + }, + "properties": { + "timestamp": "2020-07-08T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37899, + -1.394446671 + ] + }, + "properties": { + "timestamp": "2020-07-11T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38055667, + -1.390243337 + ] + }, + "properties": { + "timestamp": "2020-07-13T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37611833, + -1.389791671 + ] + }, + "properties": { + "timestamp": "2020-07-16T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38024833, + -1.390495004 + ] + }, + "properties": { + "timestamp": "2020-07-18T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37595667, + -1.389501671 + ] + }, + "properties": { + "timestamp": "2020-07-21T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38019833, + -1.390033337 + ] + }, + "properties": { + "timestamp": "2020-07-23T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37678, + -1.390545004 + ] + }, + "properties": { + "timestamp": "2020-07-26T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37703, + -1.389503337 + ] + }, + "properties": { + "timestamp": "2020-07-28T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37612167, + -1.390178337 + ] + }, + "properties": { + "timestamp": "2020-07-31T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37401, + -1.393181671 + ] + }, + "properties": { + "timestamp": "2020-08-02T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37633833, + -1.389578337 + ] + }, + "properties": { + "timestamp": "2020-08-03T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37611167, + -1.390188337 + ] + }, + "properties": { + "timestamp": "2020-08-05T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38069333, + -1.387615004 + ] + }, + "properties": { + "timestamp": "2020-08-07T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377415, + -1.389131671 + ] + }, + "properties": { + "timestamp": "2020-08-08T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37616333, + -1.389973337 + ] + }, + "properties": { + "timestamp": "2020-08-10T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37698333, + -1.386121671 + ] + }, + "properties": { + "timestamp": "2020-08-12T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37900833, + -1.391843337 + ] + }, + "properties": { + "timestamp": "2020-08-13T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37731333, + -1.389258337 + ] + }, + "properties": { + "timestamp": "2020-08-15T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37559667, + -1.388873337 + ] + }, + "properties": { + "timestamp": "2020-08-17T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.380495, + -1.390276671 + ] + }, + "properties": { + "timestamp": "2020-08-18T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37707333, + -1.389621671 + ] + }, + "properties": { + "timestamp": "2020-08-20T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37578833, + -1.390045004 + ] + }, + "properties": { + "timestamp": "2020-08-22T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37647, + -1.389426671 + ] + }, + "properties": { + "timestamp": "2020-08-23T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376485, + -1.389821671 + ] + }, + "properties": { + "timestamp": "2020-08-25T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.375635, + -1.389706671 + ] + }, + "properties": { + "timestamp": "2020-08-27T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377285, + -1.389340004 + ] + }, + "properties": { + "timestamp": "2020-08-28T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37707, + -1.390406671 + ] + }, + "properties": { + "timestamp": "2020-08-30T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37912333, + -1.388150004 + ] + }, + "properties": { + "timestamp": "2020-09-01T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37672167, + -1.388863337 + ] + }, + "properties": { + "timestamp": "2020-09-02T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376705, + -1.389081671 + ] + }, + "properties": { + "timestamp": "2020-09-04T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37557333, + -1.389405004 + ] + }, + "properties": { + "timestamp": "2020-09-06T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37704833, + -1.390046671 + ] + }, + "properties": { + "timestamp": "2020-09-07T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37750167, + -1.389033337 + ] + }, + "properties": { + "timestamp": "2020-09-09T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37707333, + -1.390025004 + ] + }, + "properties": { + "timestamp": "2020-09-11T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37718833, + -1.389535004 + ] + }, + "properties": { + "timestamp": "2020-09-12T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37746, + -1.389251671 + ] + }, + "properties": { + "timestamp": "2020-09-14T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376765, + -1.389833337 + ] + }, + "properties": { + "timestamp": "2020-09-16T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38447667, + -1.388955004 + ] + }, + "properties": { + "timestamp": "2020-09-17T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.376855, + -1.389685004 + ] + }, + "properties": { + "timestamp": "2020-09-19T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37606833, + -1.389903337 + ] + }, + "properties": { + "timestamp": "2020-09-21T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37715167, + -1.389681671 + ] + }, + "properties": { + "timestamp": "2020-09-22T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37674667, + -1.390113337 + ] + }, + "properties": { + "timestamp": "2020-09-24T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37630833, + -1.390283337 + ] + }, + "properties": { + "timestamp": "2020-09-26T11:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37750333, + -1.389726671 + ] + }, + "properties": { + "timestamp": "2020-09-28T03:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37633833, + -1.390126671 + ] + }, + "properties": { + "timestamp": "2020-09-29T19:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3773, + -1.389660004 + ] + }, + "properties": { + "timestamp": "2020-10-01T02:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37613667, + -1.388798337 + ] + }, + "properties": { + "timestamp": "2020-10-01T12:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37654, + -1.390020004 + ] + }, + "properties": { + "timestamp": "2020-10-01T22:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37691167, + -1.389188337 + ] + }, + "properties": { + "timestamp": "2020-10-02T08:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377575, + -1.389596671 + ] + }, + "properties": { + "timestamp": "2020-10-02T18:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37560333, + -1.390093337 + ] + }, + "properties": { + "timestamp": "2020-10-03T04:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37709167, + -1.388908337 + ] + }, + "properties": { + "timestamp": "2020-10-03T14:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37761667, + -1.389480004 + ] + }, + "properties": { + "timestamp": "2020-10-04T01:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38676, + -1.383805004 + ] + }, + "properties": { + "timestamp": "2020-10-04T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37705, + -1.389603337 + ] + }, + "properties": { + "timestamp": "2020-10-04T21:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37485167, + -1.399218337 + ] + }, + "properties": { + "timestamp": "2020-10-05T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37740833, + -1.389810004 + ] + }, + "properties": { + "timestamp": "2020-10-05T17:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.375535, + -1.389376671 + ] + }, + "properties": { + "timestamp": "2020-10-06T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37608167, + -1.389978337 + ] + }, + "properties": { + "timestamp": "2020-10-06T13:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37694, + -1.389676671 + ] + }, + "properties": { + "timestamp": "2020-10-06T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37530167, + -1.389891671 + ] + }, + "properties": { + "timestamp": "2020-10-07T09:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.380015, + -1.389843337 + ] + }, + "properties": { + "timestamp": "2020-10-07T19:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37649667, + -1.389675004 + ] + }, + "properties": { + "timestamp": "2020-10-09T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377675, + -1.389463337 + ] + }, + "properties": { + "timestamp": "2020-10-10T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37602167, + -1.389983337 + ] + }, + "properties": { + "timestamp": "2020-10-12T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.375615, + -1.389911671 + ] + }, + "properties": { + "timestamp": "2020-10-14T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377335, + -1.389843337 + ] + }, + "properties": { + "timestamp": "2020-10-15T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37587167, + -1.389650004 + ] + }, + "properties": { + "timestamp": "2020-10-17T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37589667, + -1.389830004 + ] + }, + "properties": { + "timestamp": "2020-10-19T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37789167, + -1.389178337 + ] + }, + "properties": { + "timestamp": "2020-10-20T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36081, + -1.389323337 + ] + }, + "properties": { + "timestamp": "2020-10-22T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37838833, + -1.387746671 + ] + }, + "properties": { + "timestamp": "2020-10-24T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37736, + -1.390016671 + ] + }, + "properties": { + "timestamp": "2020-10-25T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.377135, + -1.386230004 + ] + }, + "properties": { + "timestamp": "2020-10-27T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.36698333, + -1.377048337 + ] + }, + "properties": { + "timestamp": "2020-10-29T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37799667, + -1.391575004 + ] + }, + "properties": { + "timestamp": "2020-10-30T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35893667, + -1.391428337 + ] + }, + "properties": { + "timestamp": "2020-11-01T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W80", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64063, + -1.278826671 + ] + }, + "properties": { + "timestamp": "2018-03-24T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63784667, + -1.286223337 + ] + }, + "properties": { + "timestamp": "2018-03-25T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63670167, + -1.286405004 + ] + }, + "properties": { + "timestamp": "2018-03-27T15:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64354, + -1.283730004 + ] + }, + "properties": { + "timestamp": "2018-03-29T07:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63443833, + -1.287855004 + ] + }, + "properties": { + "timestamp": "2018-03-30T23:30:00", + "year": 2018, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.636395, + -1.286445004 + ] + }, + "properties": { + "timestamp": "2018-04-01T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64462167, + -1.282910004 + ] + }, + "properties": { + "timestamp": "2018-04-01T13:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63747667, + -1.284790004 + ] + }, + "properties": { + "timestamp": "2018-04-01T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64456167, + -1.283580004 + ] + }, + "properties": { + "timestamp": "2018-04-02T09:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63710667, + -1.285090004 + ] + }, + "properties": { + "timestamp": "2018-04-02T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63638833, + -1.287525004 + ] + }, + "properties": { + "timestamp": "2018-04-03T05:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63742833, + -1.275110004 + ] + }, + "properties": { + "timestamp": "2018-04-03T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63499333, + -1.287266671 + ] + }, + "properties": { + "timestamp": "2018-04-04T01:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64353, + -1.283815004 + ] + }, + "properties": { + "timestamp": "2018-04-04T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63563, + -1.286336671 + ] + }, + "properties": { + "timestamp": "2018-04-04T22:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63707, + -1.287220004 + ] + }, + "properties": { + "timestamp": "2018-04-05T08:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63721333, + -1.284866671 + ] + }, + "properties": { + "timestamp": "2018-04-05T18:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.6357, + -1.286348337 + ] + }, + "properties": { + "timestamp": "2018-04-06T04:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64314833, + -1.285010004 + ] + }, + "properties": { + "timestamp": "2018-04-06T14:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63752667, + -1.285443337 + ] + }, + "properties": { + "timestamp": "2018-04-07T00:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63642667, + -1.288440004 + ] + }, + "properties": { + "timestamp": "2018-04-07T10:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63314, + -1.289626671 + ] + }, + "properties": { + "timestamp": "2018-04-07T20:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63889, + -1.280326671 + ] + }, + "properties": { + "timestamp": "2018-04-09T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.62091, + -1.296036671 + ] + }, + "properties": { + "timestamp": "2018-04-10T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.637405, + -1.286488337 + ] + }, + "properties": { + "timestamp": "2018-04-12T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63758, + -1.284831671 + ] + }, + "properties": { + "timestamp": "2018-04-14T03:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63495167, + -1.292095004 + ] + }, + "properties": { + "timestamp": "2018-04-15T19:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63978667, + -1.287111671 + ] + }, + "properties": { + "timestamp": "2018-04-17T11:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63775333, + -1.286916671 + ] + }, + "properties": { + "timestamp": "2018-04-19T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63586667, + -1.285986671 + ] + }, + "properties": { + "timestamp": "2018-04-20T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.636575, + -1.287236671 + ] + }, + "properties": { + "timestamp": "2018-04-22T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63636167, + -1.287093337 + ] + }, + "properties": { + "timestamp": "2018-04-24T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63645333, + -1.285611671 + ] + }, + "properties": { + "timestamp": "2018-04-25T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63623167, + -1.286163337 + ] + }, + "properties": { + "timestamp": "2018-04-27T15:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63746333, + -1.286501671 + ] + }, + "properties": { + "timestamp": "2018-04-29T07:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63619167, + -1.287045004 + ] + }, + "properties": { + "timestamp": "2018-04-30T23:30:00", + "year": 2018, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63539833, + -1.287426671 + ] + }, + "properties": { + "timestamp": "2018-05-02T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63697, + -1.286855004 + ] + }, + "properties": { + "timestamp": "2018-05-04T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63588, + -1.283568337 + ] + }, + "properties": { + "timestamp": "2018-05-05T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63663833, + -1.285793337 + ] + }, + "properties": { + "timestamp": "2018-05-07T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63741167, + -1.286595004 + ] + }, + "properties": { + "timestamp": "2018-05-09T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63724333, + -1.285345004 + ] + }, + "properties": { + "timestamp": "2018-05-10T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63545167, + -1.287553337 + ] + }, + "properties": { + "timestamp": "2018-05-12T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64160333, + -1.287376671 + ] + }, + "properties": { + "timestamp": "2018-05-14T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.636265, + -1.287375004 + ] + }, + "properties": { + "timestamp": "2018-05-15T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63582833, + -1.287675004 + ] + }, + "properties": { + "timestamp": "2018-05-17T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63715167, + -1.287385004 + ] + }, + "properties": { + "timestamp": "2018-05-19T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.637325, + -1.286926671 + ] + }, + "properties": { + "timestamp": "2018-05-20T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.635855, + -1.286461671 + ] + }, + "properties": { + "timestamp": "2018-05-22T15:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63628833, + -1.286346671 + ] + }, + "properties": { + "timestamp": "2018-05-24T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63805333, + -1.287070004 + ] + }, + "properties": { + "timestamp": "2018-05-27T07:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63687833, + -1.286225004 + ] + }, + "properties": { + "timestamp": "2018-05-29T23:30:00", + "year": 2018, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63714167, + -1.287165004 + ] + }, + "properties": { + "timestamp": "2018-06-01T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63609667, + -1.286186671 + ] + }, + "properties": { + "timestamp": "2018-06-03T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63695833, + -1.286840004 + ] + }, + "properties": { + "timestamp": "2018-06-06T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63545667, + -1.286530004 + ] + }, + "properties": { + "timestamp": "2018-06-08T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64000333, + -1.288343337 + ] + }, + "properties": { + "timestamp": "2018-06-11T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63794167, + -1.284673337 + ] + }, + "properties": { + "timestamp": "2018-06-13T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.639645, + -1.288141671 + ] + }, + "properties": { + "timestamp": "2018-06-16T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.6378, + -1.284551671 + ] + }, + "properties": { + "timestamp": "2018-06-18T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63973333, + -1.287943337 + ] + }, + "properties": { + "timestamp": "2018-06-21T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63762333, + -1.284268337 + ] + }, + "properties": { + "timestamp": "2018-06-23T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63970333, + -1.288110004 + ] + }, + "properties": { + "timestamp": "2018-06-26T07:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.637685, + -1.283546671 + ] + }, + "properties": { + "timestamp": "2018-06-28T23:30:00", + "year": 2018, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63849333, + -1.284783337 + ] + }, + "properties": { + "timestamp": "2018-07-01T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63872667, + -1.286090004 + ] + }, + "properties": { + "timestamp": "2018-07-01T11:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63662167, + -1.285393337 + ] + }, + "properties": { + "timestamp": "2018-07-01T21:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63977, + -1.288341671 + ] + }, + "properties": { + "timestamp": "2018-07-02T07:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63685333, + -1.285971671 + ] + }, + "properties": { + "timestamp": "2018-07-02T17:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63846333, + -1.284578337 + ] + }, + "properties": { + "timestamp": "2018-07-03T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63963333, + -1.289163337 + ] + }, + "properties": { + "timestamp": "2018-07-03T14:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63725667, + -1.283330004 + ] + }, + "properties": { + "timestamp": "2018-07-04T00:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64123, + -1.286750004 + ] + }, + "properties": { + "timestamp": "2018-07-04T10:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63616167, + -1.285653337 + ] + }, + "properties": { + "timestamp": "2018-07-04T20:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63704, + -1.287303337 + ] + }, + "properties": { + "timestamp": "2018-07-05T06:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63676167, + -1.286333337 + ] + }, + "properties": { + "timestamp": "2018-07-05T19:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63967833, + -1.288298337 + ] + }, + "properties": { + "timestamp": "2018-07-06T05:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63711, + -1.286978337 + ] + }, + "properties": { + "timestamp": "2018-07-06T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63740333, + -1.283565004 + ] + }, + "properties": { + "timestamp": "2018-07-07T01:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63979833, + -1.288363337 + ] + }, + "properties": { + "timestamp": "2018-07-07T12:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63661, + -1.285380004 + ] + }, + "properties": { + "timestamp": "2018-07-07T22:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63815333, + -1.284011671 + ] + }, + "properties": { + "timestamp": "2018-07-10T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64329167, + -1.286938337 + ] + }, + "properties": { + "timestamp": "2018-07-12T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64311833, + -1.281763337 + ] + }, + "properties": { + "timestamp": "2018-07-15T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.635815, + -1.288461671 + ] + }, + "properties": { + "timestamp": "2018-07-17T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63435333, + -1.290311671 + ] + }, + "properties": { + "timestamp": "2018-07-20T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.641945, + -1.288678337 + ] + }, + "properties": { + "timestamp": "2018-07-22T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60614167, + -1.329596671 + ] + }, + "properties": { + "timestamp": "2018-07-25T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63957667, + -1.289853337 + ] + }, + "properties": { + "timestamp": "2018-07-27T15:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63801333, + -1.285175004 + ] + }, + "properties": { + "timestamp": "2018-07-30T03:30:00", + "year": 2018, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63944833, + -1.286395004 + ] + }, + "properties": { + "timestamp": "2018-08-01T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64114333, + -1.283336671 + ] + }, + "properties": { + "timestamp": "2018-08-03T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63998667, + -1.285218337 + ] + }, + "properties": { + "timestamp": "2018-08-04T19:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63935667, + -1.285956671 + ] + }, + "properties": { + "timestamp": "2018-08-06T11:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56437667, + -1.339310004 + ] + }, + "properties": { + "timestamp": "2018-08-08T03:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63972333, + -1.285258337 + ] + }, + "properties": { + "timestamp": "2018-08-09T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64023833, + -1.287446671 + ] + }, + "properties": { + "timestamp": "2018-08-11T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.645245, + -1.282245004 + ] + }, + "properties": { + "timestamp": "2018-08-13T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.640405, + -1.284303337 + ] + }, + "properties": { + "timestamp": "2018-08-14T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64364167, + -1.284976671 + ] + }, + "properties": { + "timestamp": "2018-08-16T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57782667, + -1.390243337 + ] + }, + "properties": { + "timestamp": "2018-08-18T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57782833, + -1.390158337 + ] + }, + "properties": { + "timestamp": "2018-08-19T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58039833, + -1.389970004 + ] + }, + "properties": { + "timestamp": "2018-08-21T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59187333, + -1.365080004 + ] + }, + "properties": { + "timestamp": "2018-08-23T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57471, + -1.393380004 + ] + }, + "properties": { + "timestamp": "2018-08-24T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54159833, + -1.449110004 + ] + }, + "properties": { + "timestamp": "2018-08-26T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54604167, + -1.446355004 + ] + }, + "properties": { + "timestamp": "2018-08-28T07:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54096167, + -1.44823667 + ] + }, + "properties": { + "timestamp": "2018-08-29T23:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54095667, + -1.448938337 + ] + }, + "properties": { + "timestamp": "2018-08-31T15:30:00", + "year": 2018, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53683333, + -1.45206667 + ] + }, + "properties": { + "timestamp": "2018-09-02T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52152, + -1.457388337 + ] + }, + "properties": { + "timestamp": "2018-09-03T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52759333, + -1.44999167 + ] + }, + "properties": { + "timestamp": "2018-09-05T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52961833, + -1.462150004 + ] + }, + "properties": { + "timestamp": "2018-09-07T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52456667, + -1.45596167 + ] + }, + "properties": { + "timestamp": "2018-09-08T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52627167, + -1.45688167 + ] + }, + "properties": { + "timestamp": "2018-09-10T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53122667, + -1.46317167 + ] + }, + "properties": { + "timestamp": "2018-09-12T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52264833, + -1.45893667 + ] + }, + "properties": { + "timestamp": "2018-09-13T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52822, + -1.457165004 + ] + }, + "properties": { + "timestamp": "2018-09-15T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.536815, + -1.45279667 + ] + }, + "properties": { + "timestamp": "2018-09-17T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.523145, + -1.456743337 + ] + }, + "properties": { + "timestamp": "2018-09-18T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53187833, + -1.45581167 + ] + }, + "properties": { + "timestamp": "2018-09-20T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53329167, + -1.45682667 + ] + }, + "properties": { + "timestamp": "2018-09-22T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52234333, + -1.456115004 + ] + }, + "properties": { + "timestamp": "2018-09-23T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53887167, + -1.455288337 + ] + }, + "properties": { + "timestamp": "2018-09-25T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52932667, + -1.457845004 + ] + }, + "properties": { + "timestamp": "2018-09-27T07:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52391667, + -1.45431167 + ] + }, + "properties": { + "timestamp": "2018-09-28T23:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52603833, + -1.456555004 + ] + }, + "properties": { + "timestamp": "2018-09-30T15:30:00", + "year": 2018, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52818667, + -1.454648337 + ] + }, + "properties": { + "timestamp": "2018-10-01T07:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52751833, + -1.459968337 + ] + }, + "properties": { + "timestamp": "2018-10-01T17:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53243167, + -1.46157167 + ] + }, + "properties": { + "timestamp": "2018-10-02T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53791667, + -1.456678337 + ] + }, + "properties": { + "timestamp": "2018-10-02T13:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51779333, + -1.461145004 + ] + }, + "properties": { + "timestamp": "2018-10-02T23:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53441667, + -1.45628167 + ] + }, + "properties": { + "timestamp": "2018-10-03T09:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51797667, + -1.459973337 + ] + }, + "properties": { + "timestamp": "2018-10-03T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52846833, + -1.458613337 + ] + }, + "properties": { + "timestamp": "2018-10-04T05:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52673333, + -1.457940004 + ] + }, + "properties": { + "timestamp": "2018-10-04T15:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51857667, + -1.460718337 + ] + }, + "properties": { + "timestamp": "2018-10-05T01:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529415, + -1.45870167 + ] + }, + "properties": { + "timestamp": "2018-10-05T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51746833, + -1.460245004 + ] + }, + "properties": { + "timestamp": "2018-10-05T22:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53629, + -1.45744167 + ] + }, + "properties": { + "timestamp": "2018-10-06T08:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53003333, + -1.45770667 + ] + }, + "properties": { + "timestamp": "2018-10-06T18:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50858167, + -1.480855004 + ] + }, + "properties": { + "timestamp": "2018-10-07T04:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47851667, + -1.48069667 + ] + }, + "properties": { + "timestamp": "2018-10-07T14:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46037, + -1.472215004 + ] + }, + "properties": { + "timestamp": "2018-10-08T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47227333, + -1.48235167 + ] + }, + "properties": { + "timestamp": "2018-10-09T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45812833, + -1.453465004 + ] + }, + "properties": { + "timestamp": "2018-10-11T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47836333, + -1.485360004 + ] + }, + "properties": { + "timestamp": "2018-10-13T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.459755, + -1.474980004 + ] + }, + "properties": { + "timestamp": "2018-10-14T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47791833, + -1.46815667 + ] + }, + "properties": { + "timestamp": "2018-10-16T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48043333, + -1.461645004 + ] + }, + "properties": { + "timestamp": "2018-10-18T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47519833, + -1.455631671 + ] + }, + "properties": { + "timestamp": "2018-10-19T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.466955, + -1.458128337 + ] + }, + "properties": { + "timestamp": "2018-10-21T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50623, + -1.45191167 + ] + }, + "properties": { + "timestamp": "2018-10-23T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.541145, + -1.452055004 + ] + }, + "properties": { + "timestamp": "2018-10-24T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54832333, + -1.457315004 + ] + }, + "properties": { + "timestamp": "2018-10-26T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52772, + -1.452740004 + ] + }, + "properties": { + "timestamp": "2018-10-28T03:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.544625, + -1.458798337 + ] + }, + "properties": { + "timestamp": "2018-10-29T19:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.548655, + -1.455920004 + ] + }, + "properties": { + "timestamp": "2018-10-31T11:30:00", + "year": 2018, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45138, + -1.461968337 + ] + }, + "properties": { + "timestamp": "2018-11-02T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47647833, + -1.489278337 + ] + }, + "properties": { + "timestamp": "2018-11-05T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47740833, + -1.478455004 + ] + }, + "properties": { + "timestamp": "2018-11-07T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48188167, + -1.497633337 + ] + }, + "properties": { + "timestamp": "2018-11-10T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47564667, + -1.501528337 + ] + }, + "properties": { + "timestamp": "2018-11-12T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47922, + -1.490740004 + ] + }, + "properties": { + "timestamp": "2018-11-15T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46788667, + -1.476365004 + ] + }, + "properties": { + "timestamp": "2018-11-17T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.474615, + -1.49616667 + ] + }, + "properties": { + "timestamp": "2018-11-20T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46461833, + -1.483383337 + ] + }, + "properties": { + "timestamp": "2018-11-22T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47628, + -1.498948337 + ] + }, + "properties": { + "timestamp": "2018-11-25T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.457615, + -1.460126671 + ] + }, + "properties": { + "timestamp": "2018-11-27T15:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43415667, + -1.476640004 + ] + }, + "properties": { + "timestamp": "2018-11-30T03:30:00", + "year": 2018, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.32429, + -1.401351671 + ] + }, + "properties": { + "timestamp": "2018-12-02T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.29772, + -1.387776671 + ] + }, + "properties": { + "timestamp": "2018-12-05T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30724333, + -1.404166671 + ] + }, + "properties": { + "timestamp": "2018-12-07T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30376333, + -1.399896671 + ] + }, + "properties": { + "timestamp": "2018-12-10T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.30388667, + -1.387613337 + ] + }, + "properties": { + "timestamp": "2018-12-12T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.35594167, + -1.389478337 + ] + }, + "properties": { + "timestamp": "2018-12-15T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.37718, + -1.415916671 + ] + }, + "properties": { + "timestamp": "2018-12-17T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38206, + -1.398571671 + ] + }, + "properties": { + "timestamp": "2018-12-20T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.38221667, + -1.406238337 + ] + }, + "properties": { + "timestamp": "2018-12-22T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.39707, + -1.399940004 + ] + }, + "properties": { + "timestamp": "2018-12-25T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41396333, + -1.380595004 + ] + }, + "properties": { + "timestamp": "2018-12-27T15:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.397125, + -1.393655004 + ] + }, + "properties": { + "timestamp": "2018-12-30T03:30:00", + "year": 2018, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.41108667, + -1.392063337 + ] + }, + "properties": { + "timestamp": "2019-01-01T02:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42211667, + -1.394700004 + ] + }, + "properties": { + "timestamp": "2019-01-01T12:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.42899, + -1.395121671 + ] + }, + "properties": { + "timestamp": "2019-01-01T22:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.44246, + -1.382778337 + ] + }, + "properties": { + "timestamp": "2019-01-02T08:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45493167, + -1.384051671 + ] + }, + "properties": { + "timestamp": "2019-01-02T18:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45300167, + -1.377528337 + ] + }, + "properties": { + "timestamp": "2019-01-03T04:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45064333, + -1.375708337 + ] + }, + "properties": { + "timestamp": "2019-01-03T14:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45380667, + -1.383001671 + ] + }, + "properties": { + "timestamp": "2019-01-04T01:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45407333, + -1.376461671 + ] + }, + "properties": { + "timestamp": "2019-01-04T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45632167, + -1.368575004 + ] + }, + "properties": { + "timestamp": "2019-01-04T21:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45453167, + -1.374146671 + ] + }, + "properties": { + "timestamp": "2019-01-05T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4777, + -1.366800004 + ] + }, + "properties": { + "timestamp": "2019-01-05T17:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46765167, + -1.368963337 + ] + }, + "properties": { + "timestamp": "2019-01-06T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45438, + -1.374801671 + ] + }, + "properties": { + "timestamp": "2019-01-06T13:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.43529333, + -1.395036671 + ] + }, + "properties": { + "timestamp": "2019-01-06T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.425985, + -1.392656671 + ] + }, + "properties": { + "timestamp": "2019-01-07T09:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.417425, + -1.399255004 + ] + }, + "properties": { + "timestamp": "2019-01-07T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40227167, + -1.392163337 + ] + }, + "properties": { + "timestamp": "2019-01-08T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.3986, + -1.406086671 + ] + }, + "properties": { + "timestamp": "2019-01-10T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40293667, + -1.414991671 + ] + }, + "properties": { + "timestamp": "2019-01-12T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40744333, + -1.392066671 + ] + }, + "properties": { + "timestamp": "2019-01-13T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.40189167, + -1.402865004 + ] + }, + "properties": { + "timestamp": "2019-01-15T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.452495, + -1.372945004 + ] + }, + "properties": { + "timestamp": "2019-01-17T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59219333, + -1.339793337 + ] + }, + "properties": { + "timestamp": "2019-01-18T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58862833, + -1.350138337 + ] + }, + "properties": { + "timestamp": "2019-01-20T15:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64196333, + -1.284825004 + ] + }, + "properties": { + "timestamp": "2019-01-22T07:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64114667, + -1.289768337 + ] + }, + "properties": { + "timestamp": "2019-01-23T23:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63821333, + -1.281141671 + ] + }, + "properties": { + "timestamp": "2019-01-25T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.64235333, + -1.277693337 + ] + }, + "properties": { + "timestamp": "2019-01-27T11:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63799667, + -1.280706671 + ] + }, + "properties": { + "timestamp": "2019-01-29T03:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63765, + -1.280561671 + ] + }, + "properties": { + "timestamp": "2019-01-30T19:30:00", + "year": 2019, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.61315167, + -1.327723337 + ] + }, + "properties": { + "timestamp": "2019-02-01T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60391833, + -1.318560004 + ] + }, + "properties": { + "timestamp": "2019-02-04T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55949167, + -1.359695004 + ] + }, + "properties": { + "timestamp": "2019-02-06T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.56439, + -1.349100004 + ] + }, + "properties": { + "timestamp": "2019-02-09T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.555805, + -1.365785004 + ] + }, + "properties": { + "timestamp": "2019-02-11T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51482667, + -1.347555004 + ] + }, + "properties": { + "timestamp": "2019-02-14T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52192167, + -1.346655004 + ] + }, + "properties": { + "timestamp": "2019-02-16T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.594065, + -1.334613337 + ] + }, + "properties": { + "timestamp": "2019-02-19T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63700333, + -1.343261671 + ] + }, + "properties": { + "timestamp": "2019-02-21T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.60491833, + -1.317290004 + ] + }, + "properties": { + "timestamp": "2019-02-24T03:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.643515, + -1.281720004 + ] + }, + "properties": { + "timestamp": "2019-02-26T15:30:00", + "year": 2019, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58051833, + -1.402113337 + ] + }, + "properties": { + "timestamp": "2019-03-01T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54612167, + -1.449963337 + ] + }, + "properties": { + "timestamp": "2019-03-02T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55965833, + -1.443100004 + ] + }, + "properties": { + "timestamp": "2019-03-04T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55776667, + -1.447033337 + ] + }, + "properties": { + "timestamp": "2019-03-06T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51739167, + -1.460025004 + ] + }, + "properties": { + "timestamp": "2019-03-07T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53277167, + -1.46454167 + ] + }, + "properties": { + "timestamp": "2019-03-09T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50514, + -1.477435004 + ] + }, + "properties": { + "timestamp": "2019-03-11T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51043, + -1.47441667 + ] + }, + "properties": { + "timestamp": "2019-03-12T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.493205, + -1.47711167 + ] + }, + "properties": { + "timestamp": "2019-03-14T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50818333, + -1.47667167 + ] + }, + "properties": { + "timestamp": "2019-03-16T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50872333, + -1.476513337 + ] + }, + "properties": { + "timestamp": "2019-03-17T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48717, + -1.468628337 + ] + }, + "properties": { + "timestamp": "2019-03-19T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.508695, + -1.476983337 + ] + }, + "properties": { + "timestamp": "2019-03-21T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50667, + -1.477608337 + ] + }, + "properties": { + "timestamp": "2019-03-22T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50073333, + -1.48029667 + ] + }, + "properties": { + "timestamp": "2019-03-24T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51205333, + -1.481528337 + ] + }, + "properties": { + "timestamp": "2019-03-26T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51010167, + -1.475030004 + ] + }, + "properties": { + "timestamp": "2019-03-27T19:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52751, + -1.46370667 + ] + }, + "properties": { + "timestamp": "2019-03-29T11:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.492685, + -1.466988337 + ] + }, + "properties": { + "timestamp": "2019-03-31T03:30:00", + "year": 2019, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48456167, + -1.46614167 + ] + }, + "properties": { + "timestamp": "2019-04-01T04:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48314167, + -1.467563337 + ] + }, + "properties": { + "timestamp": "2019-04-01T14:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49858833, + -1.46901667 + ] + }, + "properties": { + "timestamp": "2019-04-02T00:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48779833, + -1.46843167 + ] + }, + "properties": { + "timestamp": "2019-04-02T10:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50366333, + -1.470980004 + ] + }, + "properties": { + "timestamp": "2019-04-02T20:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48078833, + -1.47422667 + ] + }, + "properties": { + "timestamp": "2019-04-03T06:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47853, + -1.478903337 + ] + }, + "properties": { + "timestamp": "2019-04-03T16:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47786167, + -1.48100167 + ] + }, + "properties": { + "timestamp": "2019-04-04T02:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48380833, + -1.48328167 + ] + }, + "properties": { + "timestamp": "2019-04-04T12:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47806667, + -1.481745004 + ] + }, + "properties": { + "timestamp": "2019-04-04T22:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47903667, + -1.480423337 + ] + }, + "properties": { + "timestamp": "2019-04-05T08:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48141167, + -1.482718337 + ] + }, + "properties": { + "timestamp": "2019-04-05T18:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.477545, + -1.479048337 + ] + }, + "properties": { + "timestamp": "2019-04-06T04:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4766, + -1.479248337 + ] + }, + "properties": { + "timestamp": "2019-04-06T14:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.478965, + -1.482205004 + ] + }, + "properties": { + "timestamp": "2019-04-07T00:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.492705, + -1.48357667 + ] + }, + "properties": { + "timestamp": "2019-04-07T10:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47201667, + -1.48377667 + ] + }, + "properties": { + "timestamp": "2019-04-07T20:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.454815, + -1.468565004 + ] + }, + "properties": { + "timestamp": "2019-04-09T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50555333, + -1.482743337 + ] + }, + "properties": { + "timestamp": "2019-04-10T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48903, + -1.47226667 + ] + }, + "properties": { + "timestamp": "2019-04-12T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51288667, + -1.480545004 + ] + }, + "properties": { + "timestamp": "2019-04-14T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51195667, + -1.48042667 + ] + }, + "properties": { + "timestamp": "2019-04-15T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48706167, + -1.49381667 + ] + }, + "properties": { + "timestamp": "2019-04-17T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52044667, + -1.46999667 + ] + }, + "properties": { + "timestamp": "2019-04-19T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51485333, + -1.46583167 + ] + }, + "properties": { + "timestamp": "2019-04-20T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52085833, + -1.475178337 + ] + }, + "properties": { + "timestamp": "2019-04-22T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51855, + -1.463965004 + ] + }, + "properties": { + "timestamp": "2019-04-24T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518345, + -1.458070004 + ] + }, + "properties": { + "timestamp": "2019-04-25T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53007333, + -1.462603337 + ] + }, + "properties": { + "timestamp": "2019-04-27T11:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52783167, + -1.459720004 + ] + }, + "properties": { + "timestamp": "2019-04-29T03:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52267, + -1.456143337 + ] + }, + "properties": { + "timestamp": "2019-04-30T19:30:00", + "year": 2019, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52947, + -1.463578337 + ] + }, + "properties": { + "timestamp": "2019-05-02T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52086333, + -1.455748337 + ] + }, + "properties": { + "timestamp": "2019-05-04T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53055667, + -1.464130004 + ] + }, + "properties": { + "timestamp": "2019-05-06T11:31:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52561, + -1.457100004 + ] + }, + "properties": { + "timestamp": "2019-05-08T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52712, + -1.457315004 + ] + }, + "properties": { + "timestamp": "2019-05-09T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53067, + -1.46377167 + ] + }, + "properties": { + "timestamp": "2019-05-11T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52953167, + -1.461165004 + ] + }, + "properties": { + "timestamp": "2019-05-13T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51917833, + -1.459555004 + ] + }, + "properties": { + "timestamp": "2019-05-14T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52883833, + -1.46386167 + ] + }, + "properties": { + "timestamp": "2019-05-16T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52470667, + -1.456285004 + ] + }, + "properties": { + "timestamp": "2019-05-18T03:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518685, + -1.465278337 + ] + }, + "properties": { + "timestamp": "2019-05-19T19:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52723333, + -1.46350667 + ] + }, + "properties": { + "timestamp": "2019-05-21T11:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.517185, + -1.460720004 + ] + }, + "properties": { + "timestamp": "2019-05-25T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529375, + -1.46409167 + ] + }, + "properties": { + "timestamp": "2019-05-28T07:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.511885, + -1.46912167 + ] + }, + "properties": { + "timestamp": "2019-05-30T23:30:00", + "year": 2019, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52323333, + -1.46619667 + ] + }, + "properties": { + "timestamp": "2019-06-02T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51828667, + -1.460560004 + ] + }, + "properties": { + "timestamp": "2019-06-04T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52451833, + -1.46654667 + ] + }, + "properties": { + "timestamp": "2019-06-07T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51888, + -1.459155004 + ] + }, + "properties": { + "timestamp": "2019-06-09T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52729333, + -1.459595004 + ] + }, + "properties": { + "timestamp": "2019-06-12T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52623833, + -1.45886667 + ] + }, + "properties": { + "timestamp": "2019-06-14T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52754833, + -1.45876667 + ] + }, + "properties": { + "timestamp": "2019-06-17T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52091333, + -1.45643667 + ] + }, + "properties": { + "timestamp": "2019-06-19T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52624, + -1.460293337 + ] + }, + "properties": { + "timestamp": "2019-06-22T07:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52035833, + -1.45522667 + ] + }, + "properties": { + "timestamp": "2019-06-23T20:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52658833, + -1.459675004 + ] + }, + "properties": { + "timestamp": "2019-06-24T07:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.521515, + -1.455555004 + ] + }, + "properties": { + "timestamp": "2019-06-24T17:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52429833, + -1.45560667 + ] + }, + "properties": { + "timestamp": "2019-06-25T04:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52745667, + -1.460573337 + ] + }, + "properties": { + "timestamp": "2019-06-25T14:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.520705, + -1.455628337 + ] + }, + "properties": { + "timestamp": "2019-06-26T01:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52686833, + -1.460343337 + ] + }, + "properties": { + "timestamp": "2019-06-26T11:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52076833, + -1.456338337 + ] + }, + "properties": { + "timestamp": "2019-06-26T21:00:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51876833, + -1.459163337 + ] + }, + "properties": { + "timestamp": "2019-06-28T23:30:00", + "year": 2019, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51890333, + -1.459613337 + ] + }, + "properties": { + "timestamp": "2019-07-01T01:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.526965, + -1.45967167 + ] + }, + "properties": { + "timestamp": "2019-07-01T11:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52764667, + -1.45977167 + ] + }, + "properties": { + "timestamp": "2019-07-01T21:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53078333, + -1.464413337 + ] + }, + "properties": { + "timestamp": "2019-07-02T07:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52656833, + -1.459543337 + ] + }, + "properties": { + "timestamp": "2019-07-02T17:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52745167, + -1.46131667 + ] + }, + "properties": { + "timestamp": "2019-07-03T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52871333, + -1.45777167 + ] + }, + "properties": { + "timestamp": "2019-07-03T13:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.526325, + -1.458820004 + ] + }, + "properties": { + "timestamp": "2019-07-03T23:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52805, + -1.457330004 + ] + }, + "properties": { + "timestamp": "2019-07-04T09:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52691833, + -1.459195004 + ] + }, + "properties": { + "timestamp": "2019-07-04T19:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529965, + -1.463743337 + ] + }, + "properties": { + "timestamp": "2019-07-05T06:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52671167, + -1.457763337 + ] + }, + "properties": { + "timestamp": "2019-07-05T16:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51893333, + -1.46063167 + ] + }, + "properties": { + "timestamp": "2019-07-06T02:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529965, + -1.463908337 + ] + }, + "properties": { + "timestamp": "2019-07-06T12:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52687167, + -1.459003337 + ] + }, + "properties": { + "timestamp": "2019-07-06T22:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52947333, + -1.464343337 + ] + }, + "properties": { + "timestamp": "2019-07-07T08:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528635, + -1.459060004 + ] + }, + "properties": { + "timestamp": "2019-07-07T18:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52847333, + -1.46214667 + ] + }, + "properties": { + "timestamp": "2019-07-09T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52722, + -1.458430004 + ] + }, + "properties": { + "timestamp": "2019-07-11T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52426333, + -1.45612667 + ] + }, + "properties": { + "timestamp": "2019-07-14T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528415, + -1.460040004 + ] + }, + "properties": { + "timestamp": "2019-07-16T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527305, + -1.46021167 + ] + }, + "properties": { + "timestamp": "2019-07-19T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52823167, + -1.457525004 + ] + }, + "properties": { + "timestamp": "2019-07-21T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52566667, + -1.462005004 + ] + }, + "properties": { + "timestamp": "2019-07-24T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527865, + -1.45732667 + ] + }, + "properties": { + "timestamp": "2019-07-26T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52725333, + -1.462070004 + ] + }, + "properties": { + "timestamp": "2019-07-29T03:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52321333, + -1.466123337 + ] + }, + "properties": { + "timestamp": "2019-07-31T15:30:00", + "year": 2019, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52961333, + -1.457670004 + ] + }, + "properties": { + "timestamp": "2019-08-02T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52953167, + -1.461850004 + ] + }, + "properties": { + "timestamp": "2019-08-04T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51824667, + -1.469773337 + ] + }, + "properties": { + "timestamp": "2019-08-05T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52881, + -1.46406167 + ] + }, + "properties": { + "timestamp": "2019-08-07T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51987667, + -1.468488337 + ] + }, + "properties": { + "timestamp": "2019-08-09T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52663333, + -1.45763167 + ] + }, + "properties": { + "timestamp": "2019-08-10T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52698833, + -1.464758337 + ] + }, + "properties": { + "timestamp": "2019-08-12T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527775, + -1.458593337 + ] + }, + "properties": { + "timestamp": "2019-08-14T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52718167, + -1.459293337 + ] + }, + "properties": { + "timestamp": "2019-08-15T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52604833, + -1.46301667 + ] + }, + "properties": { + "timestamp": "2019-08-17T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52774833, + -1.458903337 + ] + }, + "properties": { + "timestamp": "2019-08-19T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52792167, + -1.45836667 + ] + }, + "properties": { + "timestamp": "2019-08-20T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52816167, + -1.46001167 + ] + }, + "properties": { + "timestamp": "2019-08-22T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52881667, + -1.463735004 + ] + }, + "properties": { + "timestamp": "2019-08-24T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52774333, + -1.45880667 + ] + }, + "properties": { + "timestamp": "2019-08-25T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5308, + -1.46391667 + ] + }, + "properties": { + "timestamp": "2019-08-27T11:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52871667, + -1.46237167 + ] + }, + "properties": { + "timestamp": "2019-08-29T03:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52790167, + -1.458883337 + ] + }, + "properties": { + "timestamp": "2019-08-30T19:30:00", + "year": 2019, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52835333, + -1.462348337 + ] + }, + "properties": { + "timestamp": "2019-09-01T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529305, + -1.463260004 + ] + }, + "properties": { + "timestamp": "2019-09-03T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52765333, + -1.458473337 + ] + }, + "properties": { + "timestamp": "2019-09-04T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530195, + -1.463893337 + ] + }, + "properties": { + "timestamp": "2019-09-06T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52843667, + -1.458318337 + ] + }, + "properties": { + "timestamp": "2019-09-08T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52606667, + -1.457150004 + ] + }, + "properties": { + "timestamp": "2019-09-09T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52816667, + -1.46334667 + ] + }, + "properties": { + "timestamp": "2019-09-11T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52866167, + -1.462150004 + ] + }, + "properties": { + "timestamp": "2019-09-13T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52729667, + -1.45888167 + ] + }, + "properties": { + "timestamp": "2019-09-14T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52833333, + -1.463605004 + ] + }, + "properties": { + "timestamp": "2019-09-16T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528805, + -1.461138337 + ] + }, + "properties": { + "timestamp": "2019-09-18T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52775, + -1.45870667 + ] + }, + "properties": { + "timestamp": "2019-09-19T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529385, + -1.465030004 + ] + }, + "properties": { + "timestamp": "2019-09-21T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528405, + -1.460303337 + ] + }, + "properties": { + "timestamp": "2019-09-23T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52757333, + -1.458575004 + ] + }, + "properties": { + "timestamp": "2019-09-24T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.531365, + -1.46471167 + ] + }, + "properties": { + "timestamp": "2019-09-26T11:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52708833, + -1.46339167 + ] + }, + "properties": { + "timestamp": "2019-09-28T03:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527605, + -1.458515004 + ] + }, + "properties": { + "timestamp": "2019-09-29T19:30:00", + "year": 2019, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51301167, + -1.464778337 + ] + }, + "properties": { + "timestamp": "2019-10-01T02:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530605, + -1.464335004 + ] + }, + "properties": { + "timestamp": "2019-10-01T12:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52766667, + -1.458723337 + ] + }, + "properties": { + "timestamp": "2019-10-01T22:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53097333, + -1.464858337 + ] + }, + "properties": { + "timestamp": "2019-10-02T08:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51250167, + -1.471625004 + ] + }, + "properties": { + "timestamp": "2019-10-02T18:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.522225, + -1.474593337 + ] + }, + "properties": { + "timestamp": "2019-10-03T04:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53022167, + -1.464798337 + ] + }, + "properties": { + "timestamp": "2019-10-03T14:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527815, + -1.45882667 + ] + }, + "properties": { + "timestamp": "2019-10-04T00:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52743, + -1.462930004 + ] + }, + "properties": { + "timestamp": "2019-10-04T11:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52767667, + -1.45852167 + ] + }, + "properties": { + "timestamp": "2019-10-04T22:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53002667, + -1.463463337 + ] + }, + "properties": { + "timestamp": "2019-10-05T08:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51741667, + -1.467188337 + ] + }, + "properties": { + "timestamp": "2019-10-05T18:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52107333, + -1.464863337 + ] + }, + "properties": { + "timestamp": "2019-10-06T04:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52985167, + -1.46257667 + ] + }, + "properties": { + "timestamp": "2019-10-06T14:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52778667, + -1.458425004 + ] + }, + "properties": { + "timestamp": "2019-10-07T00:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.529655, + -1.46294167 + ] + }, + "properties": { + "timestamp": "2019-10-07T10:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527605, + -1.458668337 + ] + }, + "properties": { + "timestamp": "2019-10-07T21:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52991333, + -1.464388337 + ] + }, + "properties": { + "timestamp": "2019-10-09T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51826, + -1.463240004 + ] + }, + "properties": { + "timestamp": "2019-10-10T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52664, + -1.465540004 + ] + }, + "properties": { + "timestamp": "2019-10-12T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52954333, + -1.463953337 + ] + }, + "properties": { + "timestamp": "2019-10-14T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52624167, + -1.456828337 + ] + }, + "properties": { + "timestamp": "2019-10-15T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52816833, + -1.458735004 + ] + }, + "properties": { + "timestamp": "2019-10-17T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52505, + -1.46905667 + ] + }, + "properties": { + "timestamp": "2019-10-19T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.512975, + -1.465368337 + ] + }, + "properties": { + "timestamp": "2019-10-20T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52786, + -1.468820004 + ] + }, + "properties": { + "timestamp": "2019-10-22T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52956167, + -1.462715004 + ] + }, + "properties": { + "timestamp": "2019-10-24T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52904667, + -1.45813667 + ] + }, + "properties": { + "timestamp": "2019-10-25T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52627, + -1.463645004 + ] + }, + "properties": { + "timestamp": "2019-10-27T15:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52453167, + -1.46767167 + ] + }, + "properties": { + "timestamp": "2019-10-29T07:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51393, + -1.467120004 + ] + }, + "properties": { + "timestamp": "2019-10-30T23:30:00", + "year": 2019, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51504667, + -1.46707167 + ] + }, + "properties": { + "timestamp": "2019-11-01T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53095667, + -1.463658337 + ] + }, + "properties": { + "timestamp": "2019-11-04T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51733167, + -1.469383337 + ] + }, + "properties": { + "timestamp": "2019-11-06T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52818167, + -1.46395167 + ] + }, + "properties": { + "timestamp": "2019-11-09T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51515167, + -1.465858337 + ] + }, + "properties": { + "timestamp": "2019-11-11T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53110167, + -1.463620004 + ] + }, + "properties": { + "timestamp": "2019-11-14T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.514205, + -1.465560004 + ] + }, + "properties": { + "timestamp": "2019-11-16T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.523325, + -1.467033337 + ] + }, + "properties": { + "timestamp": "2019-11-19T07:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51948333, + -1.460203337 + ] + }, + "properties": { + "timestamp": "2019-11-21T23:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52748667, + -1.45813667 + ] + }, + "properties": { + "timestamp": "2019-11-24T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53362833, + -1.451083337 + ] + }, + "properties": { + "timestamp": "2019-11-27T03:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55940167, + -1.353985004 + ] + }, + "properties": { + "timestamp": "2019-11-29T15:30:00", + "year": 2019, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.583685, + -1.363545004 + ] + }, + "properties": { + "timestamp": "2019-12-02T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.58666833, + -1.377525004 + ] + }, + "properties": { + "timestamp": "2019-12-04T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.59912667, + -1.322035004 + ] + }, + "properties": { + "timestamp": "2019-12-07T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63736833, + -1.284633337 + ] + }, + "properties": { + "timestamp": "2019-12-09T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.63701, + -1.286638337 + ] + }, + "properties": { + "timestamp": "2019-12-12T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.57204333, + -1.383968337 + ] + }, + "properties": { + "timestamp": "2019-12-14T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54221, + -1.443110004 + ] + }, + "properties": { + "timestamp": "2019-12-17T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52855667, + -1.462320004 + ] + }, + "properties": { + "timestamp": "2019-12-19T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52769667, + -1.46259667 + ] + }, + "properties": { + "timestamp": "2019-12-22T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.54653667, + -1.462345004 + ] + }, + "properties": { + "timestamp": "2019-12-24T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52541, + -1.470825004 + ] + }, + "properties": { + "timestamp": "2019-12-27T03:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.540305, + -1.457075004 + ] + }, + "properties": { + "timestamp": "2019-12-29T15:30:00", + "year": 2019, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51652, + -1.467003337 + ] + }, + "properties": { + "timestamp": "2020-01-01T00:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52928833, + -1.462768337 + ] + }, + "properties": { + "timestamp": "2020-01-01T10:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51663, + -1.466988337 + ] + }, + "properties": { + "timestamp": "2020-01-01T20:30:00", + "year": 2020, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52525333, + -1.469183337 + ] + }, + "properties": { + "timestamp": "2020-07-01T06:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52782, + -1.45880667 + ] + }, + "properties": { + "timestamp": "2020-07-01T16:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52778333, + -1.458598337 + ] + }, + "properties": { + "timestamp": "2020-07-02T02:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530605, + -1.46366667 + ] + }, + "properties": { + "timestamp": "2020-07-02T12:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52785833, + -1.45857667 + ] + }, + "properties": { + "timestamp": "2020-07-02T22:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52920167, + -1.458183337 + ] + }, + "properties": { + "timestamp": "2020-07-03T08:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52713333, + -1.458868337 + ] + }, + "properties": { + "timestamp": "2020-07-03T19:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53078333, + -1.464018337 + ] + }, + "properties": { + "timestamp": "2020-07-04T06:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52774, + -1.45870167 + ] + }, + "properties": { + "timestamp": "2020-07-04T16:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52775167, + -1.458543337 + ] + }, + "properties": { + "timestamp": "2020-07-05T02:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52779167, + -1.459010004 + ] + }, + "properties": { + "timestamp": "2020-07-05T13:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52780833, + -1.458643337 + ] + }, + "properties": { + "timestamp": "2020-07-05T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53003, + -1.463660004 + ] + }, + "properties": { + "timestamp": "2020-07-06T10:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52609667, + -1.460563337 + ] + }, + "properties": { + "timestamp": "2020-07-06T20:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53089667, + -1.464625004 + ] + }, + "properties": { + "timestamp": "2020-07-07T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52775333, + -1.45833667 + ] + }, + "properties": { + "timestamp": "2020-07-07T17:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52765, + -1.45845167 + ] + }, + "properties": { + "timestamp": "2020-07-08T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53011, + -1.46354667 + ] + }, + "properties": { + "timestamp": "2020-07-11T07:31:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52740833, + -1.459138337 + ] + }, + "properties": { + "timestamp": "2020-07-13T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53319333, + -1.46484667 + ] + }, + "properties": { + "timestamp": "2020-07-16T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52778, + -1.458580004 + ] + }, + "properties": { + "timestamp": "2020-07-18T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52955833, + -1.46395167 + ] + }, + "properties": { + "timestamp": "2020-07-21T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52701333, + -1.45778667 + ] + }, + "properties": { + "timestamp": "2020-07-23T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53276333, + -1.464378337 + ] + }, + "properties": { + "timestamp": "2020-07-26T07:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52772, + -1.45845667 + ] + }, + "properties": { + "timestamp": "2020-07-28T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51944, + -1.465870004 + ] + }, + "properties": { + "timestamp": "2020-07-31T23:30:00", + "year": 2020, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.5299, + -1.465953337 + ] + }, + "properties": { + "timestamp": "2020-08-02T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53063833, + -1.46359167 + ] + }, + "properties": { + "timestamp": "2020-08-04T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.523645, + -1.466875004 + ] + }, + "properties": { + "timestamp": "2020-08-05T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52636833, + -1.460938337 + ] + }, + "properties": { + "timestamp": "2020-08-07T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53045167, + -1.463853337 + ] + }, + "properties": { + "timestamp": "2020-08-09T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51967333, + -1.476895004 + ] + }, + "properties": { + "timestamp": "2020-08-10T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52497833, + -1.470738337 + ] + }, + "properties": { + "timestamp": "2020-08-12T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52605167, + -1.46492167 + ] + }, + "properties": { + "timestamp": "2020-08-14T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51544833, + -1.467220004 + ] + }, + "properties": { + "timestamp": "2020-08-15T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52577, + -1.467485004 + ] + }, + "properties": { + "timestamp": "2020-08-17T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53046667, + -1.46367667 + ] + }, + "properties": { + "timestamp": "2020-08-19T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52349167, + -1.479873337 + ] + }, + "properties": { + "timestamp": "2020-08-20T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52509833, + -1.46509667 + ] + }, + "properties": { + "timestamp": "2020-08-22T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53052667, + -1.46374167 + ] + }, + "properties": { + "timestamp": "2020-08-24T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51928833, + -1.459568337 + ] + }, + "properties": { + "timestamp": "2020-08-25T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52669, + -1.465515004 + ] + }, + "properties": { + "timestamp": "2020-08-27T15:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52992167, + -1.46446667 + ] + }, + "properties": { + "timestamp": "2020-08-29T07:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51552833, + -1.467433337 + ] + }, + "properties": { + "timestamp": "2020-08-30T23:30:00", + "year": 2020, + "month": 8, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.520605, + -1.478043337 + ] + }, + "properties": { + "timestamp": "2020-09-01T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53085167, + -1.463823337 + ] + }, + "properties": { + "timestamp": "2020-09-03T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.503725, + -1.48280167 + ] + }, + "properties": { + "timestamp": "2020-09-04T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45668833, + -1.478970004 + ] + }, + "properties": { + "timestamp": "2020-09-06T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45429333, + -1.465485004 + ] + }, + "properties": { + "timestamp": "2020-09-08T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47057, + -1.47700167 + ] + }, + "properties": { + "timestamp": "2020-09-09T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46037167, + -1.471913337 + ] + }, + "properties": { + "timestamp": "2020-09-11T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49869167, + -1.481178337 + ] + }, + "properties": { + "timestamp": "2020-09-13T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50451333, + -1.482095004 + ] + }, + "properties": { + "timestamp": "2020-09-14T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.479175, + -1.46809167 + ] + }, + "properties": { + "timestamp": "2020-09-16T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46012167, + -1.460531671 + ] + }, + "properties": { + "timestamp": "2020-09-18T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.45730667, + -1.47929667 + ] + }, + "properties": { + "timestamp": "2020-09-19T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49421833, + -1.47752667 + ] + }, + "properties": { + "timestamp": "2020-09-21T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47443833, + -1.466558337 + ] + }, + "properties": { + "timestamp": "2020-09-23T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48345167, + -1.45904667 + ] + }, + "properties": { + "timestamp": "2020-09-24T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48723, + -1.46927667 + ] + }, + "properties": { + "timestamp": "2020-09-26T15:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53204333, + -1.46391667 + ] + }, + "properties": { + "timestamp": "2020-09-28T07:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51944, + -1.459030004 + ] + }, + "properties": { + "timestamp": "2020-09-29T23:30:00", + "year": 2020, + "month": 9, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52921833, + -1.46129667 + ] + }, + "properties": { + "timestamp": "2020-10-01T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53108667, + -1.464908337 + ] + }, + "properties": { + "timestamp": "2020-10-01T14:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51692333, + -1.466695004 + ] + }, + "properties": { + "timestamp": "2020-10-02T00:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53037333, + -1.463793337 + ] + }, + "properties": { + "timestamp": "2020-10-02T10:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.523875, + -1.453773337 + ] + }, + "properties": { + "timestamp": "2020-10-02T20:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53082333, + -1.463800004 + ] + }, + "properties": { + "timestamp": "2020-10-03T06:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52627167, + -1.47162667 + ] + }, + "properties": { + "timestamp": "2020-10-03T16:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52346, + -1.47801667 + ] + }, + "properties": { + "timestamp": "2020-10-04T02:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53083, + -1.461118337 + ] + }, + "properties": { + "timestamp": "2020-10-04T12:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52604833, + -1.457280004 + ] + }, + "properties": { + "timestamp": "2020-10-04T22:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52893333, + -1.462688337 + ] + }, + "properties": { + "timestamp": "2020-10-05T08:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51811, + -1.45947667 + ] + }, + "properties": { + "timestamp": "2020-10-05T18:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52609, + -1.46500167 + ] + }, + "properties": { + "timestamp": "2020-10-06T04:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52779167, + -1.464405004 + ] + }, + "properties": { + "timestamp": "2020-10-06T14:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51795833, + -1.460398337 + ] + }, + "properties": { + "timestamp": "2020-10-07T00:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48491333, + -1.47515167 + ] + }, + "properties": { + "timestamp": "2020-10-07T10:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48633667, + -1.47599167 + ] + }, + "properties": { + "timestamp": "2020-10-07T20:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48037833, + -1.47003167 + ] + }, + "properties": { + "timestamp": "2020-10-09T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47814333, + -1.465305004 + ] + }, + "properties": { + "timestamp": "2020-10-10T19:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.46420833, + -1.460391671 + ] + }, + "properties": { + "timestamp": "2020-10-12T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47626333, + -1.466928337 + ] + }, + "properties": { + "timestamp": "2020-10-14T03:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48256333, + -1.466450004 + ] + }, + "properties": { + "timestamp": "2020-10-15T19:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47396833, + -1.469015004 + ] + }, + "properties": { + "timestamp": "2020-10-17T11:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47699, + -1.469155004 + ] + }, + "properties": { + "timestamp": "2020-10-19T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47701667, + -1.455518337 + ] + }, + "properties": { + "timestamp": "2020-10-20T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47659167, + -1.46725167 + ] + }, + "properties": { + "timestamp": "2020-10-22T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47693167, + -1.467648337 + ] + }, + "properties": { + "timestamp": "2020-10-24T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50819833, + -1.47615667 + ] + }, + "properties": { + "timestamp": "2020-10-25T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.487935, + -1.475785004 + ] + }, + "properties": { + "timestamp": "2020-10-27T15:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48682, + -1.47596667 + ] + }, + "properties": { + "timestamp": "2020-10-29T07:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50039833, + -1.477915004 + ] + }, + "properties": { + "timestamp": "2020-10-30T23:30:00", + "year": 2020, + "month": 10, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50174333, + -1.479240004 + ] + }, + "properties": { + "timestamp": "2020-11-01T23:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49148167, + -1.47778167 + ] + }, + "properties": { + "timestamp": "2020-11-04T07:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49772667, + -1.481865004 + ] + }, + "properties": { + "timestamp": "2020-11-07T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48850667, + -1.47653167 + ] + }, + "properties": { + "timestamp": "2020-11-09T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.477035, + -1.48955667 + ] + }, + "properties": { + "timestamp": "2020-11-12T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48212833, + -1.46967667 + ] + }, + "properties": { + "timestamp": "2020-11-14T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49228333, + -1.49690667 + ] + }, + "properties": { + "timestamp": "2020-11-17T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49326833, + -1.511410004 + ] + }, + "properties": { + "timestamp": "2020-11-19T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50206333, + -1.505933337 + ] + }, + "properties": { + "timestamp": "2020-11-22T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49603333, + -1.48675167 + ] + }, + "properties": { + "timestamp": "2020-11-24T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.503405, + -1.479903337 + ] + }, + "properties": { + "timestamp": "2020-11-27T03:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52514667, + -1.464750004 + ] + }, + "properties": { + "timestamp": "2020-11-29T15:30:00", + "year": 2020, + "month": 11, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52658167, + -1.457693337 + ] + }, + "properties": { + "timestamp": "2020-12-02T03:31:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52511667, + -1.464950004 + ] + }, + "properties": { + "timestamp": "2020-12-04T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49838167, + -1.48226167 + ] + }, + "properties": { + "timestamp": "2020-12-07T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.4918, + -1.487878337 + ] + }, + "properties": { + "timestamp": "2020-12-09T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48882667, + -1.467408337 + ] + }, + "properties": { + "timestamp": "2020-12-12T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48661333, + -1.471623337 + ] + }, + "properties": { + "timestamp": "2020-12-14T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50337667, + -1.485165004 + ] + }, + "properties": { + "timestamp": "2020-12-17T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.510395, + -1.48856667 + ] + }, + "properties": { + "timestamp": "2020-12-19T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50028833, + -1.478508337 + ] + }, + "properties": { + "timestamp": "2020-12-22T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48953167, + -1.468455004 + ] + }, + "properties": { + "timestamp": "2020-12-24T15:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50483, + -1.483065004 + ] + }, + "properties": { + "timestamp": "2020-12-27T03:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52020833, + -1.459215004 + ] + }, + "properties": { + "timestamp": "2020-12-29T23:30:00", + "year": 2020, + "month": 12, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518915, + -1.460835004 + ] + }, + "properties": { + "timestamp": "2021-01-01T01:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53045833, + -1.463805004 + ] + }, + "properties": { + "timestamp": "2021-01-01T11:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51878667, + -1.460828337 + ] + }, + "properties": { + "timestamp": "2021-01-01T21:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.524055, + -1.467243337 + ] + }, + "properties": { + "timestamp": "2021-01-02T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51981833, + -1.46044167 + ] + }, + "properties": { + "timestamp": "2021-01-02T17:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52106333, + -1.461098337 + ] + }, + "properties": { + "timestamp": "2021-01-03T03:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52920333, + -1.46504667 + ] + }, + "properties": { + "timestamp": "2021-01-03T13:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518615, + -1.45848167 + ] + }, + "properties": { + "timestamp": "2021-01-03T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53051667, + -1.464103337 + ] + }, + "properties": { + "timestamp": "2021-01-04T09:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51918667, + -1.459595004 + ] + }, + "properties": { + "timestamp": "2021-01-04T19:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52797, + -1.465475004 + ] + }, + "properties": { + "timestamp": "2021-01-05T05:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53025167, + -1.461768337 + ] + }, + "properties": { + "timestamp": "2021-01-05T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.519105, + -1.459640004 + ] + }, + "properties": { + "timestamp": "2021-01-06T01:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52993, + -1.46591167 + ] + }, + "properties": { + "timestamp": "2021-01-06T11:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51772167, + -1.459030004 + ] + }, + "properties": { + "timestamp": "2021-01-06T21:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53061, + -1.46388167 + ] + }, + "properties": { + "timestamp": "2021-01-07T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51906667, + -1.459865004 + ] + }, + "properties": { + "timestamp": "2021-01-07T17:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.526585, + -1.465670004 + ] + }, + "properties": { + "timestamp": "2021-01-08T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52975167, + -1.463543337 + ] + }, + "properties": { + "timestamp": "2021-01-10T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51871667, + -1.45959667 + ] + }, + "properties": { + "timestamp": "2021-01-11T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528235, + -1.465370004 + ] + }, + "properties": { + "timestamp": "2021-01-13T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53078167, + -1.464065004 + ] + }, + "properties": { + "timestamp": "2021-01-15T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52529, + -1.459835004 + ] + }, + "properties": { + "timestamp": "2021-01-16T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52832833, + -1.465700004 + ] + }, + "properties": { + "timestamp": "2021-01-18T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530145, + -1.46332167 + ] + }, + "properties": { + "timestamp": "2021-01-20T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.55394833, + -1.46748167 + ] + }, + "properties": { + "timestamp": "2021-01-21T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52481333, + -1.46424667 + ] + }, + "properties": { + "timestamp": "2021-01-23T15:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53068, + -1.46396167 + ] + }, + "properties": { + "timestamp": "2021-01-25T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52044833, + -1.455800004 + ] + }, + "properties": { + "timestamp": "2021-01-26T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52651667, + -1.464695004 + ] + }, + "properties": { + "timestamp": "2021-01-28T15:31:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53079167, + -1.463985004 + ] + }, + "properties": { + "timestamp": "2021-01-30T07:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52286667, + -1.462953337 + ] + }, + "properties": { + "timestamp": "2021-01-31T23:30:00", + "year": 2021, + "month": 1, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52768167, + -1.464020004 + ] + }, + "properties": { + "timestamp": "2021-02-03T07:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52532833, + -1.459645004 + ] + }, + "properties": { + "timestamp": "2021-02-05T23:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52264667, + -1.468618337 + ] + }, + "properties": { + "timestamp": "2021-02-08T07:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52541, + -1.46004167 + ] + }, + "properties": { + "timestamp": "2021-02-10T23:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52911667, + -1.464790004 + ] + }, + "properties": { + "timestamp": "2021-02-13T07:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.517485, + -1.468200004 + ] + }, + "properties": { + "timestamp": "2021-02-15T23:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527015, + -1.463625004 + ] + }, + "properties": { + "timestamp": "2021-02-18T07:31:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52424833, + -1.45975167 + ] + }, + "properties": { + "timestamp": "2021-02-20T23:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52843167, + -1.463150004 + ] + }, + "properties": { + "timestamp": "2021-02-23T07:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52514333, + -1.45910167 + ] + }, + "properties": { + "timestamp": "2021-02-25T23:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52345833, + -1.462493337 + ] + }, + "properties": { + "timestamp": "2021-02-28T07:30:00", + "year": 2021, + "month": 2, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53044333, + -1.463918337 + ] + }, + "properties": { + "timestamp": "2021-03-02T07:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52398167, + -1.46094667 + ] + }, + "properties": { + "timestamp": "2021-03-03T23:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52417667, + -1.461763337 + ] + }, + "properties": { + "timestamp": "2021-03-05T15:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52393833, + -1.462320004 + ] + }, + "properties": { + "timestamp": "2021-03-07T07:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51871167, + -1.459528337 + ] + }, + "properties": { + "timestamp": "2021-03-08T23:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52881167, + -1.463315004 + ] + }, + "properties": { + "timestamp": "2021-03-10T15:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53068, + -1.463615004 + ] + }, + "properties": { + "timestamp": "2021-03-12T07:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52439333, + -1.460385004 + ] + }, + "properties": { + "timestamp": "2021-03-14T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52524167, + -1.459818337 + ] + }, + "properties": { + "timestamp": "2021-03-15T19:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52495833, + -1.463025004 + ] + }, + "properties": { + "timestamp": "2021-03-17T11:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.523645, + -1.46040667 + ] + }, + "properties": { + "timestamp": "2021-03-19T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52556333, + -1.45994667 + ] + }, + "properties": { + "timestamp": "2021-03-20T19:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53021667, + -1.461175004 + ] + }, + "properties": { + "timestamp": "2021-03-22T11:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52539667, + -1.46062167 + ] + }, + "properties": { + "timestamp": "2021-03-24T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51788333, + -1.459230004 + ] + }, + "properties": { + "timestamp": "2021-03-25T19:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52586, + -1.461973337 + ] + }, + "properties": { + "timestamp": "2021-03-27T11:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.524305, + -1.460613337 + ] + }, + "properties": { + "timestamp": "2021-03-31T03:30:00", + "year": 2021, + "month": 3, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53067833, + -1.465233337 + ] + }, + "properties": { + "timestamp": "2021-04-01T04:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.524625, + -1.462895004 + ] + }, + "properties": { + "timestamp": "2021-04-01T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52927833, + -1.463938337 + ] + }, + "properties": { + "timestamp": "2021-04-02T01:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527985, + -1.463768337 + ] + }, + "properties": { + "timestamp": "2021-04-02T11:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50493333, + -1.47251667 + ] + }, + "properties": { + "timestamp": "2021-04-02T21:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52880333, + -1.464615004 + ] + }, + "properties": { + "timestamp": "2021-04-03T07:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51742, + -1.472400004 + ] + }, + "properties": { + "timestamp": "2021-04-03T17:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518475, + -1.467438337 + ] + }, + "properties": { + "timestamp": "2021-04-04T03:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52968333, + -1.461460004 + ] + }, + "properties": { + "timestamp": "2021-04-04T13:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.524985, + -1.459568337 + ] + }, + "properties": { + "timestamp": "2021-04-04T23:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52939167, + -1.463823337 + ] + }, + "properties": { + "timestamp": "2021-04-05T09:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52445167, + -1.460530004 + ] + }, + "properties": { + "timestamp": "2021-04-05T19:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52882833, + -1.46444167 + ] + }, + "properties": { + "timestamp": "2021-04-06T05:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.525, + -1.464385004 + ] + }, + "properties": { + "timestamp": "2021-04-06T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52056, + -1.455665004 + ] + }, + "properties": { + "timestamp": "2021-04-07T01:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53014333, + -1.463428337 + ] + }, + "properties": { + "timestamp": "2021-04-07T11:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.519625, + -1.455453337 + ] + }, + "properties": { + "timestamp": "2021-04-07T21:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530375, + -1.465633337 + ] + }, + "properties": { + "timestamp": "2021-04-09T07:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52053, + -1.454670004 + ] + }, + "properties": { + "timestamp": "2021-04-10T23:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52718333, + -1.463430004 + ] + }, + "properties": { + "timestamp": "2021-04-12T15:31:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52644833, + -1.46349167 + ] + }, + "properties": { + "timestamp": "2021-04-14T07:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52457333, + -1.46012167 + ] + }, + "properties": { + "timestamp": "2021-04-15T23:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52815667, + -1.460913337 + ] + }, + "properties": { + "timestamp": "2021-04-17T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52883667, + -1.46368667 + ] + }, + "properties": { + "timestamp": "2021-04-19T07:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51977, + -1.45881167 + ] + }, + "properties": { + "timestamp": "2021-04-20T23:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52870833, + -1.463743337 + ] + }, + "properties": { + "timestamp": "2021-04-22T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53039333, + -1.461308337 + ] + }, + "properties": { + "timestamp": "2021-04-24T07:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52499667, + -1.45967667 + ] + }, + "properties": { + "timestamp": "2021-04-25T23:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52414667, + -1.464725004 + ] + }, + "properties": { + "timestamp": "2021-04-27T15:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53023833, + -1.46118167 + ] + }, + "properties": { + "timestamp": "2021-04-29T07:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52436167, + -1.46025667 + ] + }, + "properties": { + "timestamp": "2021-04-30T23:30:00", + "year": 2021, + "month": 4, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.524845, + -1.464875004 + ] + }, + "properties": { + "timestamp": "2021-05-02T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52579167, + -1.463408337 + ] + }, + "properties": { + "timestamp": "2021-05-04T07:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.527675, + -1.45965667 + ] + }, + "properties": { + "timestamp": "2021-05-05T23:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52556833, + -1.465693337 + ] + }, + "properties": { + "timestamp": "2021-05-07T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528165, + -1.46403667 + ] + }, + "properties": { + "timestamp": "2021-05-09T07:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52563833, + -1.45852667 + ] + }, + "properties": { + "timestamp": "2021-05-10T23:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52759333, + -1.460953337 + ] + }, + "properties": { + "timestamp": "2021-05-12T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53165667, + -1.46185167 + ] + }, + "properties": { + "timestamp": "2021-05-14T07:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.525645, + -1.459793337 + ] + }, + "properties": { + "timestamp": "2021-05-15T23:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530515, + -1.464260004 + ] + }, + "properties": { + "timestamp": "2021-05-17T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53052833, + -1.46301167 + ] + }, + "properties": { + "timestamp": "2021-05-19T07:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52493, + -1.45979167 + ] + }, + "properties": { + "timestamp": "2021-05-20T23:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.530245, + -1.46080167 + ] + }, + "properties": { + "timestamp": "2021-05-22T15:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52405167, + -1.460590004 + ] + }, + "properties": { + "timestamp": "2021-05-24T23:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52863667, + -1.464400004 + ] + }, + "properties": { + "timestamp": "2021-05-27T07:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52518167, + -1.45900667 + ] + }, + "properties": { + "timestamp": "2021-05-29T23:30:00", + "year": 2021, + "month": 5, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53086333, + -1.46071167 + ] + }, + "properties": { + "timestamp": "2021-06-01T07:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.517685, + -1.460780004 + ] + }, + "properties": { + "timestamp": "2021-06-03T23:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52809667, + -1.464325004 + ] + }, + "properties": { + "timestamp": "2021-06-06T07:31:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51814833, + -1.45824667 + ] + }, + "properties": { + "timestamp": "2021-06-08T23:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52483167, + -1.46439667 + ] + }, + "properties": { + "timestamp": "2021-06-11T07:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51982, + -1.459463337 + ] + }, + "properties": { + "timestamp": "2021-06-13T23:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53041, + -1.46082667 + ] + }, + "properties": { + "timestamp": "2021-06-16T07:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52105, + -1.461860004 + ] + }, + "properties": { + "timestamp": "2021-06-18T23:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52539333, + -1.464588337 + ] + }, + "properties": { + "timestamp": "2021-06-21T07:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51942833, + -1.45872167 + ] + }, + "properties": { + "timestamp": "2021-06-23T23:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52464667, + -1.464723337 + ] + }, + "properties": { + "timestamp": "2021-06-26T15:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51967167, + -1.458715004 + ] + }, + "properties": { + "timestamp": "2021-06-29T03:30:00", + "year": 2021, + "month": 6, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51776, + -1.45918167 + ] + }, + "properties": { + "timestamp": "2021-07-01T02:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52744667, + -1.46263167 + ] + }, + "properties": { + "timestamp": "2021-07-01T12:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51833667, + -1.459485004 + ] + }, + "properties": { + "timestamp": "2021-07-01T22:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52559667, + -1.46396167 + ] + }, + "properties": { + "timestamp": "2021-07-02T08:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51744833, + -1.469823337 + ] + }, + "properties": { + "timestamp": "2021-07-02T18:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51809167, + -1.47244167 + ] + }, + "properties": { + "timestamp": "2021-07-03T04:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51559, + -1.475633337 + ] + }, + "properties": { + "timestamp": "2021-07-03T14:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51549167, + -1.47276667 + ] + }, + "properties": { + "timestamp": "2021-07-04T00:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.53012833, + -1.463628337 + ] + }, + "properties": { + "timestamp": "2021-07-04T10:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51919167, + -1.45811167 + ] + }, + "properties": { + "timestamp": "2021-07-04T21:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52488167, + -1.46390667 + ] + }, + "properties": { + "timestamp": "2021-07-05T07:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518705, + -1.460030004 + ] + }, + "properties": { + "timestamp": "2021-07-05T17:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51869167, + -1.47266667 + ] + }, + "properties": { + "timestamp": "2021-07-06T03:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51794833, + -1.47363167 + ] + }, + "properties": { + "timestamp": "2021-07-06T13:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.51404833, + -1.468350004 + ] + }, + "properties": { + "timestamp": "2021-07-06T23:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.528075, + -1.464153337 + ] + }, + "properties": { + "timestamp": "2021-07-07T09:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.518175, + -1.460188337 + ] + }, + "properties": { + "timestamp": "2021-07-07T19:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.52588833, + -1.464785004 + ] + }, + "properties": { + "timestamp": "2021-07-09T07:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.50109, + -1.46704167 + ] + }, + "properties": { + "timestamp": "2021-07-11T23:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.47769833, + -1.466230004 + ] + }, + "properties": { + "timestamp": "2021-07-14T07:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.49277833, + -1.467413337 + ] + }, + "properties": { + "timestamp": "2021-07-16T23:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.48601333, + -1.46609167 + ] + }, + "properties": { + "timestamp": "2021-07-19T07:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.495775, + -1.46945167 + ] + }, + "properties": { + "timestamp": "2021-07-21T23:30:00", + "year": 2021, + "month": 7, + "species": "Wildebeest", + "individual_id": "W81", + "study": "White-bearded wildebeest (Connochaetes taurinus) - Greater Mara Ecosystem (2017-2021)" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.547868, + -3.961034998 + ] + }, + "properties": { + "timestamp": "2009-04-17T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.549198, + -3.967012002 + ] + }, + "properties": { + "timestamp": "2009-04-19T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510876, + -3.967888003 + ] + }, + "properties": { + "timestamp": "2009-04-20T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.524597, + -3.940884 + ] + }, + "properties": { + "timestamp": "2009-04-22T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.518445, + -3.939925996 + ] + }, + "properties": { + "timestamp": "2009-04-23T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.541085, + -3.929806 + ] + }, + "properties": { + "timestamp": "2009-05-23T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515918, + -3.937709002 + ] + }, + "properties": { + "timestamp": "2009-05-24T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.525724, + -3.932317997 + ] + }, + "properties": { + "timestamp": "2009-05-26T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.532898, + -3.928002 + ] + }, + "properties": { + "timestamp": "2009-05-27T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.522233, + -3.932434 + ] + }, + "properties": { + "timestamp": "2009-05-29T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.519238, + -3.931658 + ] + }, + "properties": { + "timestamp": "2009-05-30T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.528829, + -3.927621002 + ] + }, + "properties": { + "timestamp": "2009-06-01T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.520317, + -3.931859005 + ] + }, + "properties": { + "timestamp": "2009-06-02T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.517249, + -3.932770001 + ] + }, + "properties": { + "timestamp": "2009-06-04T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.976721, + -3.748216003 + ] + }, + "properties": { + "timestamp": "2009-06-15T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.986882, + -3.723025005 + ] + }, + "properties": { + "timestamp": "2009-06-17T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.972632, + -3.758274 + ] + }, + "properties": { + "timestamp": "2009-06-19T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.981535, + -3.753323998 + ] + }, + "properties": { + "timestamp": "2009-06-20T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008049, + -3.760528001 + ] + }, + "properties": { + "timestamp": "2009-06-22T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002905, + -3.764023003 + ] + }, + "properties": { + "timestamp": "2009-06-23T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.984216, + -3.757322999 + ] + }, + "properties": { + "timestamp": "2009-06-25T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00592, + -3.761214004 + ] + }, + "properties": { + "timestamp": "2009-06-26T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.012614, + -3.759169005 + ] + }, + "properties": { + "timestamp": "2009-06-28T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007947, + -3.758058003 + ] + }, + "properties": { + "timestamp": "2009-06-29T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016728, + -3.759796003 + ] + }, + "properties": { + "timestamp": "2009-07-01T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003996, + -3.750265002 + ] + }, + "properties": { + "timestamp": "2009-07-02T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.014148, + -3.757160998 + ] + }, + "properties": { + "timestamp": "2009-07-04T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017387, + -3.761165998 + ] + }, + "properties": { + "timestamp": "2009-07-05T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022005, + -3.758710997 + ] + }, + "properties": { + "timestamp": "2009-07-07T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054736, + -3.767542004 + ] + }, + "properties": { + "timestamp": "2009-07-09T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057174, + -3.765718996 + ] + }, + "properties": { + "timestamp": "2009-07-15T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075606, + -3.754896999 + ] + }, + "properties": { + "timestamp": "2009-07-17T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.088538, + -3.754990004 + ] + }, + "properties": { + "timestamp": "2009-07-20T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085925, + -3.753685997 + ] + }, + "properties": { + "timestamp": "2009-07-23T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05498, + -3.768965003 + ] + }, + "properties": { + "timestamp": "2009-07-26T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060014, + -3.749164004 + ] + }, + "properties": { + "timestamp": "2009-07-29T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.066789, + -3.750152001 + ] + }, + "properties": { + "timestamp": "2009-07-31T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050106, + -3.762520002 + ] + }, + "properties": { + "timestamp": "2009-08-03T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.070158, + -3.752174004 + ] + }, + "properties": { + "timestamp": "2009-08-08T00:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045703, + -3.777930003 + ] + }, + "properties": { + "timestamp": "2009-08-09T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03682, + -3.731902997 + ] + }, + "properties": { + "timestamp": "2009-08-13T00:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.043892, + -3.731002998 + ] + }, + "properties": { + "timestamp": "2009-08-15T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045597, + -3.735006005 + ] + }, + "properties": { + "timestamp": "2009-08-18T00:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0587, + -3.764052002 + ] + }, + "properties": { + "timestamp": "2009-08-21T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049601, + -3.785450003 + ] + }, + "properties": { + "timestamp": "2009-08-24T00:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.056071, + -3.770004 + ] + }, + "properties": { + "timestamp": "2009-08-26T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.125285, + -3.754302997 + ] + }, + "properties": { + "timestamp": "2009-08-29T00:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051884, + -3.788922997 + ] + }, + "properties": { + "timestamp": "2009-08-31T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051241, + -3.773243004 + ] + }, + "properties": { + "timestamp": "2009-09-03T00:01:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG060", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.53182, + -3.916232 + ] + }, + "properties": { + "timestamp": "2009-04-18T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.534839, + -3.918422998 + ] + }, + "properties": { + "timestamp": "2009-04-20T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.537138, + -3.918248001 + ] + }, + "properties": { + "timestamp": "2009-04-21T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.529492, + -3.933554003 + ] + }, + "properties": { + "timestamp": "2009-04-23T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.535372, + -3.936115002 + ] + }, + "properties": { + "timestamp": "2009-04-24T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.561084, + -3.928802998 + ] + }, + "properties": { + "timestamp": "2009-04-26T00:02:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.550216, + -3.932289001 + ] + }, + "properties": { + "timestamp": "2009-04-27T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.544539, + -3.923238998 + ] + }, + "properties": { + "timestamp": "2009-04-29T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.541508, + -3.930960996 + ] + }, + "properties": { + "timestamp": "2009-05-01T00:03:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.542489, + -3.921934999 + ] + }, + "properties": { + "timestamp": "2009-05-06T00:02:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.542025, + -3.923016997 + ] + }, + "properties": { + "timestamp": "2009-05-07T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.541463, + -3.926556004 + ] + }, + "properties": { + "timestamp": "2009-05-08T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.543717, + -3.936758997 + ] + }, + "properties": { + "timestamp": "2009-05-10T00:01:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.485583, + -3.965592999 + ] + }, + "properties": { + "timestamp": "2009-06-02T07:02:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.451591, + -3.935236997 + ] + }, + "properties": { + "timestamp": "2009-06-02T13:43:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47983, + -3.944527001 + ] + }, + "properties": { + "timestamp": "2009-06-03T02:02:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486601, + -3.965747003 + ] + }, + "properties": { + "timestamp": "2009-06-03T12:59:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486528, + -3.968402998 + ] + }, + "properties": { + "timestamp": "2009-06-04T00:56:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486694, + -3.965908004 + ] + }, + "properties": { + "timestamp": "2009-06-04T10:54:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.485262, + -3.966647003 + ] + }, + "properties": { + "timestamp": "2009-06-04T13:21:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478088, + -3.953771002 + ] + }, + "properties": { + "timestamp": "2009-06-05T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515177, + -3.963536998 + ] + }, + "properties": { + "timestamp": "2009-06-11T00:02:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.456437, + -3.932148999 + ] + }, + "properties": { + "timestamp": "2009-06-12T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.472632, + -3.944205002 + ] + }, + "properties": { + "timestamp": "2009-06-14T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481291, + -3.952909002 + ] + }, + "properties": { + "timestamp": "2009-06-15T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.246452, + -3.895411998 + ] + }, + "properties": { + "timestamp": "2009-06-17T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021057, + -3.699341004 + ] + }, + "properties": { + "timestamp": "2009-06-18T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.99161, + -3.629906 + ] + }, + "properties": { + "timestamp": "2009-06-20T00:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.993298, + -3.654957006 + ] + }, + "properties": { + "timestamp": "2009-06-20T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.989421, + -3.652245005 + ] + }, + "properties": { + "timestamp": "2009-06-20T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971606, + -3.652384002 + ] + }, + "properties": { + "timestamp": "2009-06-20T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.958203, + -3.660665997 + ] + }, + "properties": { + "timestamp": "2009-06-20T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.959672, + -3.661540002 + ] + }, + "properties": { + "timestamp": "2009-06-20T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.951799, + -3.655944003 + ] + }, + "properties": { + "timestamp": "2009-06-20T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.966036, + -3.658569003 + ] + }, + "properties": { + "timestamp": "2009-06-20T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.960559, + -3.656558005 + ] + }, + "properties": { + "timestamp": "2009-06-20T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.958272, + -3.657430999 + ] + }, + "properties": { + "timestamp": "2009-06-20T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.958541, + -3.661110999 + ] + }, + "properties": { + "timestamp": "2009-06-20T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.956523, + -3.664913003 + ] + }, + "properties": { + "timestamp": "2009-06-20T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.964954, + -3.671703005 + ] + }, + "properties": { + "timestamp": "2009-06-20T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970483, + -3.663236005 + ] + }, + "properties": { + "timestamp": "2009-06-20T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971102, + -3.663149001 + ] + }, + "properties": { + "timestamp": "2009-06-20T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974784, + -3.663672004 + ] + }, + "properties": { + "timestamp": "2009-06-20T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975399, + -3.663061 + ] + }, + "properties": { + "timestamp": "2009-06-21T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975456, + -3.663196997 + ] + }, + "properties": { + "timestamp": "2009-06-21T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.97135, + -3.663451002 + ] + }, + "properties": { + "timestamp": "2009-06-21T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.97592, + -3.655198003 + ] + }, + "properties": { + "timestamp": "2009-06-21T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975586, + -3.649059003 + ] + }, + "properties": { + "timestamp": "2009-06-21T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975952, + -3.649069002 + ] + }, + "properties": { + "timestamp": "2009-06-21T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975354, + -3.648803 + ] + }, + "properties": { + "timestamp": "2009-06-21T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.97771, + -3.649586001 + ] + }, + "properties": { + "timestamp": "2009-06-21T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.977474, + -3.649347004 + ] + }, + "properties": { + "timestamp": "2009-06-21T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.976351, + -3.651944 + ] + }, + "properties": { + "timestamp": "2009-06-21T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968302, + -3.657907 + ] + }, + "properties": { + "timestamp": "2009-06-21T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.959151, + -3.662998997 + ] + }, + "properties": { + "timestamp": "2009-06-21T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.957694, + -3.659463002 + ] + }, + "properties": { + "timestamp": "2009-06-21T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.973503, + -3.659205997 + ] + }, + "properties": { + "timestamp": "2009-06-21T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.972929, + -3.658941 + ] + }, + "properties": { + "timestamp": "2009-06-21T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974402, + -3.654424001 + ] + }, + "properties": { + "timestamp": "2009-06-21T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975378, + -3.655152001 + ] + }, + "properties": { + "timestamp": "2009-06-22T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975716, + -3.654954 + ] + }, + "properties": { + "timestamp": "2009-06-22T01:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974333, + -3.654704004 + ] + }, + "properties": { + "timestamp": "2009-06-22T02:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.976811, + -3.654189004 + ] + }, + "properties": { + "timestamp": "2009-06-22T04:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.972392, + -3.652969005 + ] + }, + "properties": { + "timestamp": "2009-06-22T05:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.960742, + -3.658388999 + ] + }, + "properties": { + "timestamp": "2009-06-22T07:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.963135, + -3.660555997 + ] + }, + "properties": { + "timestamp": "2009-06-22T09:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.966003, + -3.658187003 + ] + }, + "properties": { + "timestamp": "2009-06-22T11:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.967167, + -3.655562004 + ] + }, + "properties": { + "timestamp": "2009-06-22T12:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.967163, + -3.654617004 + ] + }, + "properties": { + "timestamp": "2009-06-22T14:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.967281, + -3.654367001 + ] + }, + "properties": { + "timestamp": "2009-06-22T15:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.96591, + -3.662613003 + ] + }, + "properties": { + "timestamp": "2009-06-22T17:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.967529, + -3.661386997 + ] + }, + "properties": { + "timestamp": "2009-06-22T18:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.973975, + -3.663853001 + ] + }, + "properties": { + "timestamp": "2009-06-22T20:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.981234, + -3.663489004 + ] + }, + "properties": { + "timestamp": "2009-06-22T21:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.982491, + -3.664346005 + ] + }, + "properties": { + "timestamp": "2009-06-22T23:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.982996, + -3.66436 + ] + }, + "properties": { + "timestamp": "2009-06-23T00:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.984623, + -3.668825005 + ] + }, + "properties": { + "timestamp": "2009-06-23T03:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003109, + -3.692567003 + ] + }, + "properties": { + "timestamp": "2009-06-23T06:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000993, + -3.696820004 + ] + }, + "properties": { + "timestamp": "2009-06-23T09:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001005, + -3.690458999 + ] + }, + "properties": { + "timestamp": "2009-06-23T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995984, + -3.686636998 + ] + }, + "properties": { + "timestamp": "2009-06-23T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.991406, + -3.684136 + ] + }, + "properties": { + "timestamp": "2009-06-23T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.987089, + -3.685146997 + ] + }, + "properties": { + "timestamp": "2009-06-23T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.985111, + -3.684899003 + ] + }, + "properties": { + "timestamp": "2009-06-23T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.979256, + -3.701608005 + ] + }, + "properties": { + "timestamp": "2009-06-24T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.980566, + -3.701720997 + ] + }, + "properties": { + "timestamp": "2009-06-24T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.98055, + -3.701726002 + ] + }, + "properties": { + "timestamp": "2009-06-24T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975867, + -3.730128999 + ] + }, + "properties": { + "timestamp": "2009-06-24T04:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.983911, + -3.755418003 + ] + }, + "properties": { + "timestamp": "2009-06-24T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.996395, + -3.766248005 + ] + }, + "properties": { + "timestamp": "2009-06-24T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.013424, + -3.778809001 + ] + }, + "properties": { + "timestamp": "2009-06-24T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01252, + -3.773722005 + ] + }, + "properties": { + "timestamp": "2009-06-24T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01071, + -3.764724001 + ] + }, + "properties": { + "timestamp": "2009-06-24T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007926, + -3.759704 + ] + }, + "properties": { + "timestamp": "2009-06-24T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007918, + -3.759260997 + ] + }, + "properties": { + "timestamp": "2009-06-24T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007841, + -3.758514004 + ] + }, + "properties": { + "timestamp": "2009-06-24T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007536, + -3.755916002 + ] + }, + "properties": { + "timestamp": "2009-06-24T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007975, + -3.755503997 + ] + }, + "properties": { + "timestamp": "2009-06-24T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008024, + -3.755888001 + ] + }, + "properties": { + "timestamp": "2009-06-24T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007576, + -3.755827004 + ] + }, + "properties": { + "timestamp": "2009-06-24T22:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007743, + -3.755256998 + ] + }, + "properties": { + "timestamp": "2009-06-25T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007593, + -3.755762004 + ] + }, + "properties": { + "timestamp": "2009-06-25T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007487, + -3.755741005 + ] + }, + "properties": { + "timestamp": "2009-06-25T03:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007475, + -3.756375997 + ] + }, + "properties": { + "timestamp": "2009-06-25T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008232, + -3.759265998 + ] + }, + "properties": { + "timestamp": "2009-06-25T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016345, + -3.775523998 + ] + }, + "properties": { + "timestamp": "2009-06-25T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.012911, + -3.769118999 + ] + }, + "properties": { + "timestamp": "2009-06-25T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01075, + -3.764241997 + ] + }, + "properties": { + "timestamp": "2009-06-25T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007764, + -3.758515004 + ] + }, + "properties": { + "timestamp": "2009-06-25T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007747, + -3.758513996 + ] + }, + "properties": { + "timestamp": "2009-06-25T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007137, + -3.757004005 + ] + }, + "properties": { + "timestamp": "2009-06-25T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006868, + -3.756355 + ] + }, + "properties": { + "timestamp": "2009-06-25T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007239, + -3.755770003 + ] + }, + "properties": { + "timestamp": "2009-06-25T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007247, + -3.755745004 + ] + }, + "properties": { + "timestamp": "2009-06-25T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007275, + -3.756337997 + ] + }, + "properties": { + "timestamp": "2009-06-25T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006022, + -3.757992999 + ] + }, + "properties": { + "timestamp": "2009-06-25T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006051, + -3.758606005 + ] + }, + "properties": { + "timestamp": "2009-06-26T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00557, + -3.758055001 + ] + }, + "properties": { + "timestamp": "2009-06-26T01:32:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005741, + -3.757903005 + ] + }, + "properties": { + "timestamp": "2009-06-26T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008411, + -3.759179005 + ] + }, + "properties": { + "timestamp": "2009-06-26T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009957, + -3.762980997 + ] + }, + "properties": { + "timestamp": "2009-06-26T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008899, + -3.768855999 + ] + }, + "properties": { + "timestamp": "2009-06-26T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007471, + -3.768788997 + ] + }, + "properties": { + "timestamp": "2009-06-26T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00734, + -3.769118001 + ] + }, + "properties": { + "timestamp": "2009-06-26T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007361, + -3.769144003 + ] + }, + "properties": { + "timestamp": "2009-06-26T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007186, + -3.769122005 + ] + }, + "properties": { + "timestamp": "2009-06-26T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006759, + -3.768132002 + ] + }, + "properties": { + "timestamp": "2009-06-26T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006702, + -3.757540998 + ] + }, + "properties": { + "timestamp": "2009-06-26T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006832, + -3.757456005 + ] + }, + "properties": { + "timestamp": "2009-06-26T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007035, + -3.757309005 + ] + }, + "properties": { + "timestamp": "2009-06-26T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007894, + -3.756231999 + ] + }, + "properties": { + "timestamp": "2009-06-26T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007902, + -3.756131001 + ] + }, + "properties": { + "timestamp": "2009-06-26T22:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007552, + -3.756322 + ] + }, + "properties": { + "timestamp": "2009-06-27T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007572, + -3.756171001 + ] + }, + "properties": { + "timestamp": "2009-06-27T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007609, + -3.756082002 + ] + }, + "properties": { + "timestamp": "2009-06-27T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009326, + -3.757436004 + ] + }, + "properties": { + "timestamp": "2009-06-27T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010006, + -3.757437004 + ] + }, + "properties": { + "timestamp": "2009-06-27T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009924, + -3.757424001 + ] + }, + "properties": { + "timestamp": "2009-06-27T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010588, + -3.759131 + ] + }, + "properties": { + "timestamp": "2009-06-27T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.013147, + -3.768864998 + ] + }, + "properties": { + "timestamp": "2009-06-27T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.013293, + -3.771153002 + ] + }, + "properties": { + "timestamp": "2009-06-27T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0085, + -3.759913003 + ] + }, + "properties": { + "timestamp": "2009-06-27T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008736, + -3.758934002 + ] + }, + "properties": { + "timestamp": "2009-06-27T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007857, + -3.757492001 + ] + }, + "properties": { + "timestamp": "2009-06-27T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00734, + -3.756599004 + ] + }, + "properties": { + "timestamp": "2009-06-27T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008028, + -3.755875999 + ] + }, + "properties": { + "timestamp": "2009-06-27T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008077, + -3.756237 + ] + }, + "properties": { + "timestamp": "2009-06-27T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007979, + -3.756201998 + ] + }, + "properties": { + "timestamp": "2009-06-27T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007939, + -3.756157003 + ] + }, + "properties": { + "timestamp": "2009-06-28T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007918, + -3.756116998 + ] + }, + "properties": { + "timestamp": "2009-06-28T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008252, + -3.754875002 + ] + }, + "properties": { + "timestamp": "2009-06-28T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006958, + -3.752148004 + ] + }, + "properties": { + "timestamp": "2009-06-28T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005648, + -3.750975999 + ] + }, + "properties": { + "timestamp": "2009-06-28T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005444, + -3.751096001 + ] + }, + "properties": { + "timestamp": "2009-06-28T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004919, + -3.751125998 + ] + }, + "properties": { + "timestamp": "2009-06-28T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005452, + -3.751100003 + ] + }, + "properties": { + "timestamp": "2009-06-28T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005485, + -3.751069002 + ] + }, + "properties": { + "timestamp": "2009-06-28T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005497, + -3.750991002 + ] + }, + "properties": { + "timestamp": "2009-06-28T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005603, + -3.750895997 + ] + }, + "properties": { + "timestamp": "2009-06-28T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003833, + -3.749690005 + ] + }, + "properties": { + "timestamp": "2009-06-28T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003882, + -3.749172004 + ] + }, + "properties": { + "timestamp": "2009-06-28T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004651, + -3.749144001 + ] + }, + "properties": { + "timestamp": "2009-06-28T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003894, + -3.750471001 + ] + }, + "properties": { + "timestamp": "2009-06-28T21:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004154, + -3.751098 + ] + }, + "properties": { + "timestamp": "2009-06-28T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004765, + -3.751635002 + ] + }, + "properties": { + "timestamp": "2009-06-29T00:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007869, + -3.756702001 + ] + }, + "properties": { + "timestamp": "2009-06-29T01:37:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007792, + -3.756474001 + ] + }, + "properties": { + "timestamp": "2009-06-29T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008659, + -3.757696004 + ] + }, + "properties": { + "timestamp": "2009-06-29T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.015238, + -3.773998004 + ] + }, + "properties": { + "timestamp": "2009-06-29T06:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009399, + -3.760608003 + ] + }, + "properties": { + "timestamp": "2009-06-29T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010465, + -3.759255996 + ] + }, + "properties": { + "timestamp": "2009-06-29T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010465, + -3.759290996 + ] + }, + "properties": { + "timestamp": "2009-06-29T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010563, + -3.759077005 + ] + }, + "properties": { + "timestamp": "2009-06-29T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009741, + -3.758183998 + ] + }, + "properties": { + "timestamp": "2009-06-29T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009208, + -3.757852004 + ] + }, + "properties": { + "timestamp": "2009-06-29T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007654, + -3.751466999 + ] + }, + "properties": { + "timestamp": "2009-06-29T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007377, + -3.751263998 + ] + }, + "properties": { + "timestamp": "2009-06-29T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007357, + -3.751239997 + ] + }, + "properties": { + "timestamp": "2009-06-29T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005676, + -3.752121998 + ] + }, + "properties": { + "timestamp": "2009-06-29T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004154, + -3.750058003 + ] + }, + "properties": { + "timestamp": "2009-06-29T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004179, + -3.750149003 + ] + }, + "properties": { + "timestamp": "2009-06-30T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004102, + -3.762358004 + ] + }, + "properties": { + "timestamp": "2009-06-30T01:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002767, + -3.764870999 + ] + }, + "properties": { + "timestamp": "2009-06-30T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.999992, + -3.767785998 + ] + }, + "properties": { + "timestamp": "2009-06-30T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006384, + -3.774044004 + ] + }, + "properties": { + "timestamp": "2009-06-30T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.999943, + -3.771593002 + ] + }, + "properties": { + "timestamp": "2009-06-30T07:32:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000049, + -3.772503997 + ] + }, + "properties": { + "timestamp": "2009-06-30T08:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.99976, + -3.770931004 + ] + }, + "properties": { + "timestamp": "2009-06-30T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.998051, + -3.771214004 + ] + }, + "properties": { + "timestamp": "2009-06-30T11:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.997921, + -3.770834004 + ] + }, + "properties": { + "timestamp": "2009-06-30T12:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.99753, + -3.770833996 + ] + }, + "properties": { + "timestamp": "2009-06-30T14:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995898, + -3.766347001 + ] + }, + "properties": { + "timestamp": "2009-06-30T15:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.982125, + -3.753457999 + ] + }, + "properties": { + "timestamp": "2009-06-30T17:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.980644, + -3.752838998 + ] + }, + "properties": { + "timestamp": "2009-06-30T18:09:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.980542, + -3.752886003 + ] + }, + "properties": { + "timestamp": "2009-06-30T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974601, + -3.751911003 + ] + }, + "properties": { + "timestamp": "2009-06-30T23:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974198, + -3.751634003 + ] + }, + "properties": { + "timestamp": "2009-07-01T01:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974247, + -3.754698004 + ] + }, + "properties": { + "timestamp": "2009-07-01T03:52:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.979378, + -3.765179005 + ] + }, + "properties": { + "timestamp": "2009-07-01T05:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.982023, + -3.768427005 + ] + }, + "properties": { + "timestamp": "2009-07-01T06:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.981352, + -3.769855998 + ] + }, + "properties": { + "timestamp": "2009-07-01T07:34:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968144, + -3.777676005 + ] + }, + "properties": { + "timestamp": "2009-07-01T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.969991, + -3.775001999 + ] + }, + "properties": { + "timestamp": "2009-07-01T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971057, + -3.77872 + ] + }, + "properties": { + "timestamp": "2009-07-01T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970166, + -3.780529999 + ] + }, + "properties": { + "timestamp": "2009-07-01T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974349, + -3.772926005 + ] + }, + "properties": { + "timestamp": "2009-07-01T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.969417, + -3.771898998 + ] + }, + "properties": { + "timestamp": "2009-07-01T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.964209, + -3.764675999 + ] + }, + "properties": { + "timestamp": "2009-07-01T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.964217, + -3.762813002 + ] + }, + "properties": { + "timestamp": "2009-07-01T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.959326, + -3.766409003 + ] + }, + "properties": { + "timestamp": "2009-07-01T21:51:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971769, + -3.770624997 + ] + }, + "properties": { + "timestamp": "2009-07-01T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971753, + -3.770622999 + ] + }, + "properties": { + "timestamp": "2009-07-02T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971769, + -3.770436 + ] + }, + "properties": { + "timestamp": "2009-07-02T02:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.977568, + -3.771299003 + ] + }, + "properties": { + "timestamp": "2009-07-02T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.987329, + -3.770652 + ] + }, + "properties": { + "timestamp": "2009-07-02T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007255, + -3.775932001 + ] + }, + "properties": { + "timestamp": "2009-07-02T06:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008639, + -3.762164998 + ] + }, + "properties": { + "timestamp": "2009-07-02T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008708, + -3.759506999 + ] + }, + "properties": { + "timestamp": "2009-07-02T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008508, + -3.759044 + ] + }, + "properties": { + "timestamp": "2009-07-02T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008533, + -3.759009005 + ] + }, + "properties": { + "timestamp": "2009-07-02T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008549, + -3.758996005 + ] + }, + "properties": { + "timestamp": "2009-07-02T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006226, + -3.752205 + ] + }, + "properties": { + "timestamp": "2009-07-02T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003507, + -3.750900999 + ] + }, + "properties": { + "timestamp": "2009-07-02T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003027, + -3.748439001 + ] + }, + "properties": { + "timestamp": "2009-07-02T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003206, + -3.748258997 + ] + }, + "properties": { + "timestamp": "2009-07-02T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003491, + -3.748480998 + ] + }, + "properties": { + "timestamp": "2009-07-02T20:47:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001685, + -3.748209997 + ] + }, + "properties": { + "timestamp": "2009-07-02T22:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000342, + -3.749474002 + ] + }, + "properties": { + "timestamp": "2009-07-02T23:11:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003109, + -3.747923002 + ] + }, + "properties": { + "timestamp": "2009-07-03T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003019, + -3.748754 + ] + }, + "properties": { + "timestamp": "2009-07-03T03:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006563, + -3.757549997 + ] + }, + "properties": { + "timestamp": "2009-07-03T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.014921, + -3.773836005 + ] + }, + "properties": { + "timestamp": "2009-07-03T07:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00955, + -3.762773001 + ] + }, + "properties": { + "timestamp": "2009-07-03T08:34:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00721, + -3.747463 + ] + }, + "properties": { + "timestamp": "2009-07-03T10:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007186, + -3.747906002 + ] + }, + "properties": { + "timestamp": "2009-07-03T11:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00662, + -3.746840001 + ] + }, + "properties": { + "timestamp": "2009-07-03T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007304, + -3.746677005 + ] + }, + "properties": { + "timestamp": "2009-07-03T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007007, + -3.746465001 + ] + }, + "properties": { + "timestamp": "2009-07-03T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009123, + -3.745524 + ] + }, + "properties": { + "timestamp": "2009-07-03T17:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009998, + -3.744436997 + ] + }, + "properties": { + "timestamp": "2009-07-03T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01165, + -3.745392998 + ] + }, + "properties": { + "timestamp": "2009-07-03T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.011768, + -3.745341001 + ] + }, + "properties": { + "timestamp": "2009-07-04T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010209, + -3.745202998 + ] + }, + "properties": { + "timestamp": "2009-07-04T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010669, + -3.745610003 + ] + }, + "properties": { + "timestamp": "2009-07-04T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010832, + -3.745630997 + ] + }, + "properties": { + "timestamp": "2009-07-04T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.011015, + -3.745543003 + ] + }, + "properties": { + "timestamp": "2009-07-04T07:13:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.011373, + -3.745916998 + ] + }, + "properties": { + "timestamp": "2009-07-04T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01165, + -3.745763003 + ] + }, + "properties": { + "timestamp": "2009-07-04T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.011218, + -3.745817005 + ] + }, + "properties": { + "timestamp": "2009-07-04T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.011198, + -3.745901998 + ] + }, + "properties": { + "timestamp": "2009-07-04T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.011462, + -3.745913003 + ] + }, + "properties": { + "timestamp": "2009-07-04T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019194, + -3.746046 + ] + }, + "properties": { + "timestamp": "2009-07-04T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021236, + -3.742924998 + ] + }, + "properties": { + "timestamp": "2009-07-04T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02122, + -3.742933003 + ] + }, + "properties": { + "timestamp": "2009-07-04T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018913, + -3.743301003 + ] + }, + "properties": { + "timestamp": "2009-07-04T21:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019491, + -3.744392001 + ] + }, + "properties": { + "timestamp": "2009-07-04T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019104, + -3.744076001 + ] + }, + "properties": { + "timestamp": "2009-07-05T00:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019116, + -3.744069004 + ] + }, + "properties": { + "timestamp": "2009-07-05T01:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019177, + -3.744088004 + ] + }, + "properties": { + "timestamp": "2009-07-05T03:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020154, + -3.749039 + ] + }, + "properties": { + "timestamp": "2009-07-05T04:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021106, + -3.752105004 + ] + }, + "properties": { + "timestamp": "2009-07-05T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025757, + -3.774073999 + ] + }, + "properties": { + "timestamp": "2009-07-05T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026685, + -3.772743997 + ] + }, + "properties": { + "timestamp": "2009-07-05T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027795, + -3.770911 + ] + }, + "properties": { + "timestamp": "2009-07-05T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028345, + -3.767147002 + ] + }, + "properties": { + "timestamp": "2009-07-05T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027376, + -3.757953002 + ] + }, + "properties": { + "timestamp": "2009-07-05T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026644, + -3.749248 + ] + }, + "properties": { + "timestamp": "2009-07-05T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025, + -3.744733004 + ] + }, + "properties": { + "timestamp": "2009-07-05T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022021, + -3.744645999 + ] + }, + "properties": { + "timestamp": "2009-07-05T17:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022046, + -3.744653998 + ] + }, + "properties": { + "timestamp": "2009-07-05T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021525, + -3.744687999 + ] + }, + "properties": { + "timestamp": "2009-07-05T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022498, + -3.744853003 + ] + }, + "properties": { + "timestamp": "2009-07-05T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019706, + -3.743895003 + ] + }, + "properties": { + "timestamp": "2009-07-05T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0212, + -3.744012999 + ] + }, + "properties": { + "timestamp": "2009-07-06T00:10:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018217, + -3.741773001 + ] + }, + "properties": { + "timestamp": "2009-07-06T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018209, + -3.741790004 + ] + }, + "properties": { + "timestamp": "2009-07-06T04:52:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016789, + -3.741912997 + ] + }, + "properties": { + "timestamp": "2009-07-06T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016597, + -3.741916001 + ] + }, + "properties": { + "timestamp": "2009-07-06T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016821, + -3.742019002 + ] + }, + "properties": { + "timestamp": "2009-07-06T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019397, + -3.746267998 + ] + }, + "properties": { + "timestamp": "2009-07-07T00:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019413, + -3.746076002 + ] + }, + "properties": { + "timestamp": "2009-07-07T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019226, + -3.746316003 + ] + }, + "properties": { + "timestamp": "2009-07-07T03:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022083, + -3.761535004 + ] + }, + "properties": { + "timestamp": "2009-07-07T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024524, + -3.773300999 + ] + }, + "properties": { + "timestamp": "2009-07-07T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02511, + -3.773553002 + ] + }, + "properties": { + "timestamp": "2009-07-07T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027649, + -3.771830998 + ] + }, + "properties": { + "timestamp": "2009-07-07T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028719, + -3.762419 + ] + }, + "properties": { + "timestamp": "2009-07-07T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027942, + -3.760197999 + ] + }, + "properties": { + "timestamp": "2009-07-07T12:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023035, + -3.725985001 + ] + }, + "properties": { + "timestamp": "2009-07-08T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023966, + -3.724302005 + ] + }, + "properties": { + "timestamp": "2009-07-08T19:08:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024276, + -3.724195 + ] + }, + "properties": { + "timestamp": "2009-07-08T20:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024386, + -3.724369997 + ] + }, + "properties": { + "timestamp": "2009-07-08T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0264, + -3.721723997 + ] + }, + "properties": { + "timestamp": "2009-07-08T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02644, + -3.721694002 + ] + }, + "properties": { + "timestamp": "2009-07-09T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026493, + -3.721632998 + ] + }, + "properties": { + "timestamp": "2009-07-09T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025842, + -3.72298 + ] + }, + "properties": { + "timestamp": "2009-07-09T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025557, + -3.721552997 + ] + }, + "properties": { + "timestamp": "2009-07-09T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025513, + -3.721456005 + ] + }, + "properties": { + "timestamp": "2009-07-09T08:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025468, + -3.721474003 + ] + }, + "properties": { + "timestamp": "2009-07-09T11:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026416, + -3.721581998 + ] + }, + "properties": { + "timestamp": "2009-07-09T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02797, + -3.721555003 + ] + }, + "properties": { + "timestamp": "2009-07-09T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027336, + -3.716201001 + ] + }, + "properties": { + "timestamp": "2009-07-09T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02915, + -3.708337004 + ] + }, + "properties": { + "timestamp": "2009-07-09T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028841, + -3.709335003 + ] + }, + "properties": { + "timestamp": "2009-07-09T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02878, + -3.710158002 + ] + }, + "properties": { + "timestamp": "2009-07-09T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028792, + -3.709766004 + ] + }, + "properties": { + "timestamp": "2009-07-10T02:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02911, + -3.710130998 + ] + }, + "properties": { + "timestamp": "2009-07-10T03:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026713, + -3.712972001 + ] + }, + "properties": { + "timestamp": "2009-07-10T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025741, + -3.757344001 + ] + }, + "properties": { + "timestamp": "2009-07-10T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025712, + -3.774382002 + ] + }, + "properties": { + "timestamp": "2009-07-10T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027974, + -3.760338003 + ] + }, + "properties": { + "timestamp": "2009-07-10T10:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024862, + -3.727848002 + ] + }, + "properties": { + "timestamp": "2009-07-10T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024927, + -3.727841004 + ] + }, + "properties": { + "timestamp": "2009-07-10T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024719, + -3.726283999 + ] + }, + "properties": { + "timestamp": "2009-07-10T13:44:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025252, + -3.724565002 + ] + }, + "properties": { + "timestamp": "2009-07-10T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027926, + -3.711869001 + ] + }, + "properties": { + "timestamp": "2009-07-10T16:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028345, + -3.712090999 + ] + }, + "properties": { + "timestamp": "2009-07-10T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.036605, + -3.700584 + ] + }, + "properties": { + "timestamp": "2009-07-10T17:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037337, + -3.698247999 + ] + }, + "properties": { + "timestamp": "2009-07-10T18:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030607, + -3.718434997 + ] + }, + "properties": { + "timestamp": "2009-07-10T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030497, + -3.718554003 + ] + }, + "properties": { + "timestamp": "2009-07-10T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03005, + -3.719381002 + ] + }, + "properties": { + "timestamp": "2009-07-10T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028446, + -3.722129997 + ] + }, + "properties": { + "timestamp": "2009-07-11T01:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029057, + -3.722462999 + ] + }, + "properties": { + "timestamp": "2009-07-11T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029663, + -3.720461005 + ] + }, + "properties": { + "timestamp": "2009-07-11T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025749, + -3.722945001 + ] + }, + "properties": { + "timestamp": "2009-07-11T05:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026481, + -3.761182997 + ] + }, + "properties": { + "timestamp": "2009-07-11T07:14:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023242, + -3.741754005 + ] + }, + "properties": { + "timestamp": "2009-07-11T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022416, + -3.740638997 + ] + }, + "properties": { + "timestamp": "2009-07-11T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022152, + -3.740630997 + ] + }, + "properties": { + "timestamp": "2009-07-11T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022526, + -3.741018 + ] + }, + "properties": { + "timestamp": "2009-07-11T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021118, + -3.741245999 + ] + }, + "properties": { + "timestamp": "2009-07-11T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021167, + -3.741249003 + ] + }, + "properties": { + "timestamp": "2009-07-11T22:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021147, + -3.741251004 + ] + }, + "properties": { + "timestamp": "2009-07-12T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02122, + -3.740147002 + ] + }, + "properties": { + "timestamp": "2009-07-12T01:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021147, + -3.739605004 + ] + }, + "properties": { + "timestamp": "2009-07-12T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020841, + -3.739100005 + ] + }, + "properties": { + "timestamp": "2009-07-12T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020174, + -3.744265 + ] + }, + "properties": { + "timestamp": "2009-07-12T07:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019051, + -3.744030005 + ] + }, + "properties": { + "timestamp": "2009-07-12T08:44:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016585, + -3.742061003 + ] + }, + "properties": { + "timestamp": "2009-07-12T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016866, + -3.741994997 + ] + }, + "properties": { + "timestamp": "2009-07-12T11:08:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016874, + -3.742016003 + ] + }, + "properties": { + "timestamp": "2009-07-12T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019132, + -3.742479005 + ] + }, + "properties": { + "timestamp": "2009-07-12T14:35:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019242, + -3.743887999 + ] + }, + "properties": { + "timestamp": "2009-07-12T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020109, + -3.744989001 + ] + }, + "properties": { + "timestamp": "2009-07-12T18:50:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020109, + -3.745795999 + ] + }, + "properties": { + "timestamp": "2009-07-12T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020667, + -3.745816001 + ] + }, + "properties": { + "timestamp": "2009-07-13T00:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021297, + -3.746232004 + ] + }, + "properties": { + "timestamp": "2009-07-13T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021712, + -3.746980999 + ] + }, + "properties": { + "timestamp": "2009-07-13T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025431, + -3.765396004 + ] + }, + "properties": { + "timestamp": "2009-07-13T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025667, + -3.758916997 + ] + }, + "properties": { + "timestamp": "2009-07-13T07:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024654, + -3.752260002 + ] + }, + "properties": { + "timestamp": "2009-07-13T07:59:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024101, + -3.751002998 + ] + }, + "properties": { + "timestamp": "2009-07-13T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020215, + -3.744411999 + ] + }, + "properties": { + "timestamp": "2009-07-13T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020483, + -3.744825999 + ] + }, + "properties": { + "timestamp": "2009-07-13T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018616, + -3.742005 + ] + }, + "properties": { + "timestamp": "2009-07-13T13:55:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018892, + -3.741698003 + ] + }, + "properties": { + "timestamp": "2009-07-13T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.019161, + -3.743359003 + ] + }, + "properties": { + "timestamp": "2009-07-13T16:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021525, + -3.743269005 + ] + }, + "properties": { + "timestamp": "2009-07-13T17:43:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021578, + -3.743163001 + ] + }, + "properties": { + "timestamp": "2009-07-13T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021106, + -3.742568 + ] + }, + "properties": { + "timestamp": "2009-07-13T21:16:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023462, + -3.736771997 + ] + }, + "properties": { + "timestamp": "2009-07-13T22:21:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023482, + -3.736288001 + ] + }, + "properties": { + "timestamp": "2009-07-13T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023458, + -3.736953997 + ] + }, + "properties": { + "timestamp": "2009-07-14T00:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024333, + -3.736654002 + ] + }, + "properties": { + "timestamp": "2009-07-14T01:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025118, + -3.737867003 + ] + }, + "properties": { + "timestamp": "2009-07-14T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02513, + -3.737834998 + ] + }, + "properties": { + "timestamp": "2009-07-14T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02594, + -3.757175 + ] + }, + "properties": { + "timestamp": "2009-07-14T06:21:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022762, + -3.773885004 + ] + }, + "properties": { + "timestamp": "2009-07-14T07:19:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024731, + -3.769164998 + ] + }, + "properties": { + "timestamp": "2009-07-14T08:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023409, + -3.757220997 + ] + }, + "properties": { + "timestamp": "2009-07-14T09:45:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023385, + -3.757566005 + ] + }, + "properties": { + "timestamp": "2009-07-14T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02428, + -3.757828002 + ] + }, + "properties": { + "timestamp": "2009-07-14T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025065, + -3.731806004 + ] + }, + "properties": { + "timestamp": "2009-07-14T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02793, + -3.721517997 + ] + }, + "properties": { + "timestamp": "2009-07-14T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030347, + -3.717854004 + ] + }, + "properties": { + "timestamp": "2009-07-14T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030396, + -3.717471997 + ] + }, + "properties": { + "timestamp": "2009-07-14T20:06:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030554, + -3.717272003 + ] + }, + "properties": { + "timestamp": "2009-07-14T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030086, + -3.718221001 + ] + }, + "properties": { + "timestamp": "2009-07-14T23:17:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030037, + -3.718194002 + ] + }, + "properties": { + "timestamp": "2009-07-15T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030119, + -3.718347003 + ] + }, + "properties": { + "timestamp": "2009-07-15T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02937, + -3.719600002 + ] + }, + "properties": { + "timestamp": "2009-07-15T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027804, + -3.721733004 + ] + }, + "properties": { + "timestamp": "2009-07-15T04:51:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02806, + -3.721379003 + ] + }, + "properties": { + "timestamp": "2009-07-15T06:05:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028011, + -3.721472997 + ] + }, + "properties": { + "timestamp": "2009-07-15T07:45:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029167, + -3.721088999 + ] + }, + "properties": { + "timestamp": "2009-07-15T08:39:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029415, + -3.721044998 + ] + }, + "properties": { + "timestamp": "2009-07-15T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029443, + -3.721635001 + ] + }, + "properties": { + "timestamp": "2009-07-15T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02946, + -3.721502997 + ] + }, + "properties": { + "timestamp": "2009-07-15T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02924, + -3.721576004 + ] + }, + "properties": { + "timestamp": "2009-07-15T12:55:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029374, + -3.721553003 + ] + }, + "properties": { + "timestamp": "2009-07-15T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029411, + -3.721526999 + ] + }, + "properties": { + "timestamp": "2009-07-15T14:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028357, + -3.721587003 + ] + }, + "properties": { + "timestamp": "2009-07-15T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02972, + -3.719134005 + ] + }, + "properties": { + "timestamp": "2009-07-15T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02972, + -3.719143003 + ] + }, + "properties": { + "timestamp": "2009-07-15T19:20:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029598, + -3.718920001 + ] + }, + "properties": { + "timestamp": "2009-07-15T20:05:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029643, + -3.718783005 + ] + }, + "properties": { + "timestamp": "2009-07-15T21:47:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029598, + -3.717645002 + ] + }, + "properties": { + "timestamp": "2009-07-15T23:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029382, + -3.717749003 + ] + }, + "properties": { + "timestamp": "2009-07-16T00:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029451, + -3.717384005 + ] + }, + "properties": { + "timestamp": "2009-07-16T02:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029407, + -3.717385998 + ] + }, + "properties": { + "timestamp": "2009-07-16T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024711, + -3.743148002 + ] + }, + "properties": { + "timestamp": "2009-07-16T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025472, + -3.774376001 + ] + }, + "properties": { + "timestamp": "2009-07-16T06:28:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0262, + -3.773578997 + ] + }, + "properties": { + "timestamp": "2009-07-16T07:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026778, + -3.773678999 + ] + }, + "properties": { + "timestamp": "2009-07-16T07:59:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02808, + -3.773119 + ] + }, + "properties": { + "timestamp": "2009-07-16T09:21:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027999, + -3.772608005 + ] + }, + "properties": { + "timestamp": "2009-07-16T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027954, + -3.771973998 + ] + }, + "properties": { + "timestamp": "2009-07-16T10:37:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027812, + -3.771235 + ] + }, + "properties": { + "timestamp": "2009-07-16T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02865, + -3.768299004 + ] + }, + "properties": { + "timestamp": "2009-07-16T13:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027218, + -3.760598999 + ] + }, + "properties": { + "timestamp": "2009-07-16T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020508, + -3.745035003 + ] + }, + "properties": { + "timestamp": "2009-07-16T16:10:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.020821, + -3.743784004 + ] + }, + "properties": { + "timestamp": "2009-07-16T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02203, + -3.737792005 + ] + }, + "properties": { + "timestamp": "2009-07-16T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022087, + -3.737764002 + ] + }, + "properties": { + "timestamp": "2009-07-16T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021639, + -3.737144004 + ] + }, + "properties": { + "timestamp": "2009-07-16T22:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022266, + -3.733846999 + ] + }, + "properties": { + "timestamp": "2009-07-16T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022115, + -3.733459997 + ] + }, + "properties": { + "timestamp": "2009-07-17T01:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022103, + -3.733479002 + ] + }, + "properties": { + "timestamp": "2009-07-17T02:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022054, + -3.733450005 + ] + }, + "properties": { + "timestamp": "2009-07-17T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021627, + -3.733473001 + ] + }, + "properties": { + "timestamp": "2009-07-17T04:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022013, + -3.733581999 + ] + }, + "properties": { + "timestamp": "2009-07-17T05:16:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022123, + -3.733627998 + ] + }, + "properties": { + "timestamp": "2009-07-17T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02196, + -3.733581005 + ] + }, + "properties": { + "timestamp": "2009-07-17T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021619, + -3.733484999 + ] + }, + "properties": { + "timestamp": "2009-07-17T09:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017932, + -3.733464003 + ] + }, + "properties": { + "timestamp": "2009-07-17T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017867, + -3.73374 + ] + }, + "properties": { + "timestamp": "2009-07-17T11:24:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017969, + -3.73346 + ] + }, + "properties": { + "timestamp": "2009-07-17T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018909, + -3.732823002 + ] + }, + "properties": { + "timestamp": "2009-07-17T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.018689, + -3.730657999 + ] + }, + "properties": { + "timestamp": "2009-07-17T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022685, + -3.726000004 + ] + }, + "properties": { + "timestamp": "2009-07-17T16:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023572, + -3.724819001 + ] + }, + "properties": { + "timestamp": "2009-07-17T17:45:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023653, + -3.724765004 + ] + }, + "properties": { + "timestamp": "2009-07-17T19:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023596, + -3.724238004 + ] + }, + "properties": { + "timestamp": "2009-07-17T21:40:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027641, + -3.706843998 + ] + }, + "properties": { + "timestamp": "2009-07-17T23:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028373, + -3.706517002 + ] + }, + "properties": { + "timestamp": "2009-07-18T00:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028662, + -3.705640002 + ] + }, + "properties": { + "timestamp": "2009-07-18T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028739, + -3.705566999 + ] + }, + "properties": { + "timestamp": "2009-07-18T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027865, + -3.705341998 + ] + }, + "properties": { + "timestamp": "2009-07-18T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029964, + -3.719022002 + ] + }, + "properties": { + "timestamp": "2009-07-18T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.026099, + -3.762180004 + ] + }, + "properties": { + "timestamp": "2009-07-18T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027075, + -3.771289004 + ] + }, + "properties": { + "timestamp": "2009-07-18T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025688, + -3.768275999 + ] + }, + "properties": { + "timestamp": "2009-07-18T10:42:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027848, + -3.760529001 + ] + }, + "properties": { + "timestamp": "2009-07-18T11:28:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024622, + -3.733092005 + ] + }, + "properties": { + "timestamp": "2009-07-18T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02404, + -3.730462001 + ] + }, + "properties": { + "timestamp": "2009-07-18T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025301, + -3.729544005 + ] + }, + "properties": { + "timestamp": "2009-07-18T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027458, + -3.713916003 + ] + }, + "properties": { + "timestamp": "2009-07-18T16:38:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023808, + -3.686347001 + ] + }, + "properties": { + "timestamp": "2009-07-18T18:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017476, + -3.688834003 + ] + }, + "properties": { + "timestamp": "2009-07-18T19:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01827, + -3.688705004 + ] + }, + "properties": { + "timestamp": "2009-07-18T20:22:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017936, + -3.688569001 + ] + }, + "properties": { + "timestamp": "2009-07-18T21:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029431, + -3.694231005 + ] + }, + "properties": { + "timestamp": "2009-07-18T22:58:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027157, + -3.707549997 + ] + }, + "properties": { + "timestamp": "2009-07-19T00:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027718, + -3.709345997 + ] + }, + "properties": { + "timestamp": "2009-07-19T02:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.035079, + -3.711001001 + ] + }, + "properties": { + "timestamp": "2009-07-19T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.038139, + -3.709594998 + ] + }, + "properties": { + "timestamp": "2009-07-19T05:56:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037793, + -3.710169998 + ] + }, + "properties": { + "timestamp": "2009-07-19T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037756, + -3.710146003 + ] + }, + "properties": { + "timestamp": "2009-07-19T08:26:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037724, + -3.710325003 + ] + }, + "properties": { + "timestamp": "2009-07-19T09:10:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037826, + -3.710266998 + ] + }, + "properties": { + "timestamp": "2009-07-19T10:09:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037712, + -3.710308998 + ] + }, + "properties": { + "timestamp": "2009-07-19T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037801, + -3.710415999 + ] + }, + "properties": { + "timestamp": "2009-07-19T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.037858, + -3.710101 + ] + }, + "properties": { + "timestamp": "2009-07-19T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.036755, + -3.710781998 + ] + }, + "properties": { + "timestamp": "2009-07-19T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.036149, + -3.699766 + ] + }, + "properties": { + "timestamp": "2009-07-19T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.035893, + -3.700429998 + ] + }, + "properties": { + "timestamp": "2009-07-19T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03564, + -3.700612999 + ] + }, + "properties": { + "timestamp": "2009-07-19T23:21:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.035726, + -3.701058001 + ] + }, + "properties": { + "timestamp": "2009-07-20T00:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.035763, + -3.701167004 + ] + }, + "properties": { + "timestamp": "2009-07-20T02:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.036707, + -3.704620998 + ] + }, + "properties": { + "timestamp": "2009-07-20T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.036226, + -3.711086997 + ] + }, + "properties": { + "timestamp": "2009-07-20T07:09:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.033582, + -3.716847999 + ] + }, + "properties": { + "timestamp": "2009-07-20T08:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.023783, + -3.749386997 + ] + }, + "properties": { + "timestamp": "2009-07-20T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025972, + -3.776464005 + ] + }, + "properties": { + "timestamp": "2009-07-20T10:53:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027983, + -3.76885 + ] + }, + "properties": { + "timestamp": "2009-07-20T12:07:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027848, + -3.760350998 + ] + }, + "properties": { + "timestamp": "2009-07-20T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024866, + -3.747415001 + ] + }, + "properties": { + "timestamp": "2009-07-20T14:24:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02491, + -3.744372997 + ] + }, + "properties": { + "timestamp": "2009-07-20T15:34:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024178, + -3.730932999 + ] + }, + "properties": { + "timestamp": "2009-07-20T17:45:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022363, + -3.729784003 + ] + }, + "properties": { + "timestamp": "2009-07-20T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022624, + -3.730508003 + ] + }, + "properties": { + "timestamp": "2009-07-20T20:42:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022074, + -3.731119005 + ] + }, + "properties": { + "timestamp": "2009-07-20T21:39:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021761, + -3.731130002 + ] + }, + "properties": { + "timestamp": "2009-07-20T23:12:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02404, + -3.732588997 + ] + }, + "properties": { + "timestamp": "2009-07-21T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024093, + -3.732696998 + ] + }, + "properties": { + "timestamp": "2009-07-21T02:05:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.022148, + -3.733936005 + ] + }, + "properties": { + "timestamp": "2009-07-21T03:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.021452, + -3.733499004 + ] + }, + "properties": { + "timestamp": "2009-07-21T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024455, + -3.748185998 + ] + }, + "properties": { + "timestamp": "2009-07-21T06:15:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030518, + -3.771395001 + ] + }, + "properties": { + "timestamp": "2009-07-21T08:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04847, + -3.766548998 + ] + }, + "properties": { + "timestamp": "2009-07-21T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048853, + -3.76648 + ] + }, + "properties": { + "timestamp": "2009-07-21T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062512, + -3.751755002 + ] + }, + "properties": { + "timestamp": "2009-07-21T14:08:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.064197, + -3.750111997 + ] + }, + "properties": { + "timestamp": "2009-07-21T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06744, + -3.749250998 + ] + }, + "properties": { + "timestamp": "2009-07-21T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071232, + -3.749252005 + ] + }, + "properties": { + "timestamp": "2009-07-21T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071785, + -3.748882004 + ] + }, + "properties": { + "timestamp": "2009-07-21T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.072058, + -3.748476999 + ] + }, + "properties": { + "timestamp": "2009-07-21T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.072205, + -3.748321998 + ] + }, + "properties": { + "timestamp": "2009-07-21T21:38:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071973, + -3.748110998 + ] + }, + "properties": { + "timestamp": "2009-07-21T23:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071765, + -3.748837005 + ] + }, + "properties": { + "timestamp": "2009-07-22T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071785, + -3.748851998 + ] + }, + "properties": { + "timestamp": "2009-07-22T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082328, + -3.754529003 + ] + }, + "properties": { + "timestamp": "2009-07-22T03:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085506, + -3.754924004 + ] + }, + "properties": { + "timestamp": "2009-07-22T04:56:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.086523, + -3.754509997 + ] + }, + "properties": { + "timestamp": "2009-07-22T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082951, + -3.754104004 + ] + }, + "properties": { + "timestamp": "2009-07-22T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077018, + -3.754693001 + ] + }, + "properties": { + "timestamp": "2009-07-22T08:58:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077075, + -3.754681998 + ] + }, + "properties": { + "timestamp": "2009-07-22T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077071, + -3.754676997 + ] + }, + "properties": { + "timestamp": "2009-07-22T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.076823, + -3.754605003 + ] + }, + "properties": { + "timestamp": "2009-07-22T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077482, + -3.754916001 + ] + }, + "properties": { + "timestamp": "2009-07-22T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082581, + -3.754141002 + ] + }, + "properties": { + "timestamp": "2009-07-22T16:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082479, + -3.754076998 + ] + }, + "properties": { + "timestamp": "2009-07-22T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082336, + -3.753972 + ] + }, + "properties": { + "timestamp": "2009-07-22T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.083146, + -3.753848997 + ] + }, + "properties": { + "timestamp": "2009-07-22T20:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082987, + -3.753813001 + ] + }, + "properties": { + "timestamp": "2009-07-22T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082528, + -3.754351001 + ] + }, + "properties": { + "timestamp": "2009-07-22T22:34:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082076, + -3.754421001 + ] + }, + "properties": { + "timestamp": "2009-07-23T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082308, + -3.754028999 + ] + }, + "properties": { + "timestamp": "2009-07-23T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082316, + -3.754068998 + ] + }, + "properties": { + "timestamp": "2009-07-23T02:29:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.091321, + -3.755398999 + ] + }, + "properties": { + "timestamp": "2009-07-23T04:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.08809, + -3.755571 + ] + }, + "properties": { + "timestamp": "2009-07-23T05:53:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.076078, + -3.754560001 + ] + }, + "properties": { + "timestamp": "2009-07-23T07:19:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075033, + -3.754924005 + ] + }, + "properties": { + "timestamp": "2009-07-23T08:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071257, + -3.755452001 + ] + }, + "properties": { + "timestamp": "2009-07-23T09:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054956, + -3.768899002 + ] + }, + "properties": { + "timestamp": "2009-07-23T09:39:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048771, + -3.778575004 + ] + }, + "properties": { + "timestamp": "2009-07-23T10:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048881, + -3.778228997 + ] + }, + "properties": { + "timestamp": "2009-07-23T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049898, + -3.775950002 + ] + }, + "properties": { + "timestamp": "2009-07-23T12:55:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04987, + -3.775898001 + ] + }, + "properties": { + "timestamp": "2009-07-23T13:34:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.056828, + -3.767991998 + ] + }, + "properties": { + "timestamp": "2009-07-23T15:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060889, + -3.75115 + ] + }, + "properties": { + "timestamp": "2009-07-23T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06156, + -3.750949001 + ] + }, + "properties": { + "timestamp": "2009-07-23T19:53:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062752, + -3.750595005 + ] + }, + "properties": { + "timestamp": "2009-07-23T21:18:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.064103, + -3.749999998 + ] + }, + "properties": { + "timestamp": "2009-07-23T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.066101, + -3.749473997 + ] + }, + "properties": { + "timestamp": "2009-07-23T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.066618, + -3.749508001 + ] + }, + "properties": { + "timestamp": "2009-07-24T01:11:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.067676, + -3.749425997 + ] + }, + "properties": { + "timestamp": "2009-07-24T03:45:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.074438, + -3.750836004 + ] + }, + "properties": { + "timestamp": "2009-07-24T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077079, + -3.752927001 + ] + }, + "properties": { + "timestamp": "2009-07-24T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075395, + -3.754941999 + ] + }, + "properties": { + "timestamp": "2009-07-24T09:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075338, + -3.755062997 + ] + }, + "properties": { + "timestamp": "2009-07-24T13:51:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077177, + -3.754103005 + ] + }, + "properties": { + "timestamp": "2009-07-24T15:06:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.076811, + -3.752986999 + ] + }, + "properties": { + "timestamp": "2009-07-24T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077763, + -3.752791997 + ] + }, + "properties": { + "timestamp": "2009-07-24T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077983, + -3.753193003 + ] + }, + "properties": { + "timestamp": "2009-07-24T18:51:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082349, + -3.754440998 + ] + }, + "properties": { + "timestamp": "2009-07-24T20:06:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082906, + -3.754286997 + ] + }, + "properties": { + "timestamp": "2009-07-24T22:06:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.083207, + -3.754511998 + ] + }, + "properties": { + "timestamp": "2009-07-24T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.083724, + -3.754807997 + ] + }, + "properties": { + "timestamp": "2009-07-24T23:10:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.084753, + -3.754614999 + ] + }, + "properties": { + "timestamp": "2009-07-25T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085091, + -3.754436998 + ] + }, + "properties": { + "timestamp": "2009-07-25T02:14:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085734, + -3.754175999 + ] + }, + "properties": { + "timestamp": "2009-07-25T03:37:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.087712, + -3.75563 + ] + }, + "properties": { + "timestamp": "2009-07-25T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075765, + -3.755054004 + ] + }, + "properties": { + "timestamp": "2009-07-25T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.07522, + -3.755289003 + ] + }, + "properties": { + "timestamp": "2009-07-25T08:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061914, + -3.760593999 + ] + }, + "properties": { + "timestamp": "2009-07-25T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055522, + -3.769164005 + ] + }, + "properties": { + "timestamp": "2009-07-25T13:34:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055721, + -3.768961004 + ] + }, + "properties": { + "timestamp": "2009-07-25T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059428, + -3.763831003 + ] + }, + "properties": { + "timestamp": "2009-07-25T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06145, + -3.761006001 + ] + }, + "properties": { + "timestamp": "2009-07-25T15:44:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062004, + -3.760531003 + ] + }, + "properties": { + "timestamp": "2009-07-25T16:06:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062431, + -3.759867999 + ] + }, + "properties": { + "timestamp": "2009-07-25T17:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062496, + -3.759825998 + ] + }, + "properties": { + "timestamp": "2009-07-25T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.063643, + -3.759032004 + ] + }, + "properties": { + "timestamp": "2009-07-25T20:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06499, + -3.757759 + ] + }, + "properties": { + "timestamp": "2009-07-25T21:28:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.065381, + -3.756671998 + ] + }, + "properties": { + "timestamp": "2009-07-25T23:04:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06545, + -3.756840003 + ] + }, + "properties": { + "timestamp": "2009-07-26T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.065503, + -3.757019004 + ] + }, + "properties": { + "timestamp": "2009-07-26T01:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.065678, + -3.756492 + ] + }, + "properties": { + "timestamp": "2009-07-26T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062785, + -3.762156004 + ] + }, + "properties": { + "timestamp": "2009-07-26T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06108, + -3.763629999 + ] + }, + "properties": { + "timestamp": "2009-07-26T05:38:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060986, + -3.763939998 + ] + }, + "properties": { + "timestamp": "2009-07-26T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052852, + -3.771335998 + ] + }, + "properties": { + "timestamp": "2009-07-26T07:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049345, + -3.778385005 + ] + }, + "properties": { + "timestamp": "2009-07-26T08:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.056478, + -3.766715005 + ] + }, + "properties": { + "timestamp": "2009-07-26T09:50:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057487, + -3.766390997 + ] + }, + "properties": { + "timestamp": "2009-07-26T10:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057784, + -3.766342998 + ] + }, + "properties": { + "timestamp": "2009-07-26T10:44:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059111, + -3.764910004 + ] + }, + "properties": { + "timestamp": "2009-07-26T13:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060938, + -3.762128003 + ] + }, + "properties": { + "timestamp": "2009-07-26T15:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062533, + -3.760013004 + ] + }, + "properties": { + "timestamp": "2009-07-26T17:11:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062431, + -3.760323005 + ] + }, + "properties": { + "timestamp": "2009-07-26T18:09:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062321, + -3.750755 + ] + }, + "properties": { + "timestamp": "2009-07-26T22:22:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.068717, + -3.748101002 + ] + }, + "properties": { + "timestamp": "2009-07-27T04:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.069198, + -3.747702002 + ] + }, + "properties": { + "timestamp": "2009-07-27T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.069295, + -3.747597999 + ] + }, + "properties": { + "timestamp": "2009-07-27T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071033, + -3.748020997 + ] + }, + "properties": { + "timestamp": "2009-07-27T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.070081, + -3.748827003 + ] + }, + "properties": { + "timestamp": "2009-07-27T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.070475, + -3.749109996 + ] + }, + "properties": { + "timestamp": "2009-07-27T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.070638, + -3.749360004 + ] + }, + "properties": { + "timestamp": "2009-07-27T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.070646, + -3.749228 + ] + }, + "properties": { + "timestamp": "2009-07-27T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071301, + -3.749574999 + ] + }, + "properties": { + "timestamp": "2009-07-27T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071667, + -3.748941998 + ] + }, + "properties": { + "timestamp": "2009-07-27T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.07172, + -3.748960996 + ] + }, + "properties": { + "timestamp": "2009-07-27T19:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071745, + -3.748770005 + ] + }, + "properties": { + "timestamp": "2009-07-27T20:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071436, + -3.749123 + ] + }, + "properties": { + "timestamp": "2009-07-27T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071346, + -3.749032003 + ] + }, + "properties": { + "timestamp": "2009-07-27T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.071737, + -3.749209004 + ] + }, + "properties": { + "timestamp": "2009-07-28T01:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.07192, + -3.749308996 + ] + }, + "properties": { + "timestamp": "2009-07-28T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005383, + -3.809753996 + ] + }, + "properties": { + "timestamp": "2009-07-28T14:27:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016353, + -3.796073003 + ] + }, + "properties": { + "timestamp": "2009-07-30T22:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.016427, + -3.795987005 + ] + }, + "properties": { + "timestamp": "2009-07-31T00:50:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017802, + -3.786098001 + ] + }, + "properties": { + "timestamp": "2009-07-31T12:38:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001888, + -3.750113003 + ] + }, + "properties": { + "timestamp": "2009-07-31T16:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002047, + -3.750039999 + ] + }, + "properties": { + "timestamp": "2009-07-31T17:43:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00188, + -3.748773999 + ] + }, + "properties": { + "timestamp": "2009-07-31T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029736, + -3.729538002 + ] + }, + "properties": { + "timestamp": "2009-08-01T07:50:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030489, + -3.730904004 + ] + }, + "properties": { + "timestamp": "2009-08-01T08:46:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030522, + -3.730726997 + ] + }, + "properties": { + "timestamp": "2009-08-01T10:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030526, + -3.730806002 + ] + }, + "properties": { + "timestamp": "2009-08-01T11:15:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030615, + -3.730768999 + ] + }, + "properties": { + "timestamp": "2009-08-01T12:15:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030786, + -3.72998 + ] + }, + "properties": { + "timestamp": "2009-08-01T14:51:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029093, + -3.726382005 + ] + }, + "properties": { + "timestamp": "2009-08-01T19:46:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.032007, + -3.727312 + ] + }, + "properties": { + "timestamp": "2009-08-02T06:41:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028035, + -3.761279996 + ] + }, + "properties": { + "timestamp": "2009-08-02T10:13:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.027938, + -3.764153002 + ] + }, + "properties": { + "timestamp": "2009-08-02T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.046509, + -3.724741998 + ] + }, + "properties": { + "timestamp": "2009-08-03T01:58:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045365, + -3.724119996 + ] + }, + "properties": { + "timestamp": "2009-08-03T07:43:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.044857, + -3.723077003 + ] + }, + "properties": { + "timestamp": "2009-08-03T11:34:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04565, + -3.721327999 + ] + }, + "properties": { + "timestamp": "2009-08-03T16:39:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045789, + -3.722273998 + ] + }, + "properties": { + "timestamp": "2009-08-03T20:50:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045841, + -3.722607002 + ] + }, + "properties": { + "timestamp": "2009-08-03T22:07:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045927, + -3.722858001 + ] + }, + "properties": { + "timestamp": "2009-08-03T22:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045496, + -3.724111005 + ] + }, + "properties": { + "timestamp": "2009-08-04T02:47:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.046838, + -3.724319005 + ] + }, + "properties": { + "timestamp": "2009-08-04T03:06:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045931, + -3.726167002 + ] + }, + "properties": { + "timestamp": "2009-08-04T12:02:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045886, + -3.726287999 + ] + }, + "properties": { + "timestamp": "2009-08-04T17:26:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.033968, + -3.767154998 + ] + }, + "properties": { + "timestamp": "2009-08-05T11:38:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.036715, + -3.760278999 + ] + }, + "properties": { + "timestamp": "2009-08-05T16:26:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.040104, + -3.753965003 + ] + }, + "properties": { + "timestamp": "2009-08-06T04:53:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.042973, + -3.752309003 + ] + }, + "properties": { + "timestamp": "2009-08-06T06:55:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.042952, + -3.752127005 + ] + }, + "properties": { + "timestamp": "2009-08-06T09:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.041317, + -3.745132999 + ] + }, + "properties": { + "timestamp": "2009-08-06T11:11:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.041223, + -3.740759002 + ] + }, + "properties": { + "timestamp": "2009-08-06T13:55:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.042049, + -3.734532999 + ] + }, + "properties": { + "timestamp": "2009-08-06T18:50:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.039709, + -3.733170003 + ] + }, + "properties": { + "timestamp": "2009-08-06T23:27:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.039962, + -3.733511003 + ] + }, + "properties": { + "timestamp": "2009-08-06T23:56:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.038721, + -3.734170003 + ] + }, + "properties": { + "timestamp": "2009-08-07T05:27:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.038395, + -3.734368001 + ] + }, + "properties": { + "timestamp": "2009-08-07T06:44:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03608, + -3.737561998 + ] + }, + "properties": { + "timestamp": "2009-08-07T10:11:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.031795, + -3.743997001 + ] + }, + "properties": { + "timestamp": "2009-08-07T10:40:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028158, + -3.751184002 + ] + }, + "properties": { + "timestamp": "2009-08-07T13:04:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028145, + -3.750117004 + ] + }, + "properties": { + "timestamp": "2009-08-07T15:39:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025151, + -3.744840002 + ] + }, + "properties": { + "timestamp": "2009-08-07T16:12:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.025452, + -3.744455 + ] + }, + "properties": { + "timestamp": "2009-08-07T20:18:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.029122, + -3.749790005 + ] + }, + "properties": { + "timestamp": "2009-08-07T22:42:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.02985, + -3.750038005 + ] + }, + "properties": { + "timestamp": "2009-08-08T01:12:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028528, + -3.749465005 + ] + }, + "properties": { + "timestamp": "2009-08-08T02:40:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028589, + -3.749436003 + ] + }, + "properties": { + "timestamp": "2009-08-08T04:47:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028674, + -3.749966002 + ] + }, + "properties": { + "timestamp": "2009-08-08T05:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.042037, + -3.727706005 + ] + }, + "properties": { + "timestamp": "2009-08-09T00:24:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.044885, + -3.719541997 + ] + }, + "properties": { + "timestamp": "2009-08-09T06:04:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04484, + -3.716385 + ] + }, + "properties": { + "timestamp": "2009-08-09T09:11:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.044979, + -3.716369999 + ] + }, + "properties": { + "timestamp": "2009-08-09T14:27:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.044548, + -3.714299998 + ] + }, + "properties": { + "timestamp": "2009-08-09T15:25:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.043046, + -3.710220998 + ] + }, + "properties": { + "timestamp": "2009-08-09T15:49:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG064", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.520227, + -3.898505004 + ] + }, + "properties": { + "timestamp": "2009-04-19T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.522306, + -3.897873998 + ] + }, + "properties": { + "timestamp": "2009-04-21T00:03:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.518534, + -3.900549 + ] + }, + "properties": { + "timestamp": "2009-04-22T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.523088, + -3.899340998 + ] + }, + "properties": { + "timestamp": "2009-04-24T00:03:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.520402, + -3.900989004 + ] + }, + "properties": { + "timestamp": "2009-04-25T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.519539, + -3.901283996 + ] + }, + "properties": { + "timestamp": "2009-04-27T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51558, + -3.899793998 + ] + }, + "properties": { + "timestamp": "2009-04-28T12:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507609, + -3.891000002 + ] + }, + "properties": { + "timestamp": "2009-04-30T00:00:00", + "year": 2009, + "month": 4, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.518534, + -3.900511997 + ] + }, + "properties": { + "timestamp": "2009-05-01T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.518221, + -3.900678001 + ] + }, + "properties": { + "timestamp": "2009-05-03T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.544853, + -3.887357 + ] + }, + "properties": { + "timestamp": "2009-05-04T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.519792, + -3.902681996 + ] + }, + "properties": { + "timestamp": "2009-05-06T00:03:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510295, + -3.896921 + ] + }, + "properties": { + "timestamp": "2009-05-07T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512451, + -3.897113998 + ] + }, + "properties": { + "timestamp": "2009-05-09T00:03:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515877, + -3.898224002 + ] + }, + "properties": { + "timestamp": "2009-05-10T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.517159, + -3.897491997 + ] + }, + "properties": { + "timestamp": "2009-05-12T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515625, + -3.897674001 + ] + }, + "properties": { + "timestamp": "2009-05-13T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513953, + -3.901179002 + ] + }, + "properties": { + "timestamp": "2009-05-15T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51663, + -3.898527002 + ] + }, + "properties": { + "timestamp": "2009-05-17T00:01:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.521708, + -3.899043 + ] + }, + "properties": { + "timestamp": "2009-05-18T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515267, + -3.898320001 + ] + }, + "properties": { + "timestamp": "2009-05-20T00:03:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.517655, + -3.899835003 + ] + }, + "properties": { + "timestamp": "2009-05-22T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51558, + -3.897336003 + ] + }, + "properties": { + "timestamp": "2009-05-24T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514799, + -3.898313002 + ] + }, + "properties": { + "timestamp": "2009-05-26T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514498, + -3.901193 + ] + }, + "properties": { + "timestamp": "2009-05-27T12:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515051, + -3.898517004 + ] + }, + "properties": { + "timestamp": "2009-05-29T00:03:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514567, + -3.898463997 + ] + }, + "properties": { + "timestamp": "2009-05-31T00:00:00", + "year": 2009, + "month": 5, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51488, + -3.900074004 + ] + }, + "properties": { + "timestamp": "2009-06-01T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51401, + -3.899997997 + ] + }, + "properties": { + "timestamp": "2009-06-03T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51381, + -3.899201999 + ] + }, + "properties": { + "timestamp": "2009-06-04T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51377, + -3.899697998 + ] + }, + "properties": { + "timestamp": "2009-06-06T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514653, + -3.900928002 + ] + }, + "properties": { + "timestamp": "2009-06-09T00:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503658, + -3.892158 + ] + }, + "properties": { + "timestamp": "2009-06-10T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515295, + -3.899027999 + ] + }, + "properties": { + "timestamp": "2009-06-12T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514925, + -3.900111999 + ] + }, + "properties": { + "timestamp": "2009-06-14T00:02:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513147, + -3.899235997 + ] + }, + "properties": { + "timestamp": "2009-06-15T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514425, + -3.900173 + ] + }, + "properties": { + "timestamp": "2009-06-17T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514408, + -3.900168999 + ] + }, + "properties": { + "timestamp": "2009-06-19T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513835, + -3.900486998 + ] + }, + "properties": { + "timestamp": "2009-06-19T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514274, + -3.900297002 + ] + }, + "properties": { + "timestamp": "2009-06-19T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51639, + -3.899759999 + ] + }, + "properties": { + "timestamp": "2009-06-19T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515059, + -3.899994002 + ] + }, + "properties": { + "timestamp": "2009-06-19T18:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514551, + -3.899974004 + ] + }, + "properties": { + "timestamp": "2009-06-19T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514893, + -3.900250002 + ] + }, + "properties": { + "timestamp": "2009-06-19T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515682, + -3.900279003 + ] + }, + "properties": { + "timestamp": "2009-06-19T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5132, + -3.899940001 + ] + }, + "properties": { + "timestamp": "2009-06-20T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51355, + -3.900196003 + ] + }, + "properties": { + "timestamp": "2009-06-20T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514246, + -3.901500996 + ] + }, + "properties": { + "timestamp": "2009-06-20T03:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512512, + -3.900153002 + ] + }, + "properties": { + "timestamp": "2009-06-20T07:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512472, + -3.900192001 + ] + }, + "properties": { + "timestamp": "2009-06-20T08:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51462, + -3.900695003 + ] + }, + "properties": { + "timestamp": "2009-06-20T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514441, + -3.900129997 + ] + }, + "properties": { + "timestamp": "2009-06-20T11:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514742, + -3.899623998 + ] + }, + "properties": { + "timestamp": "2009-06-20T13:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515544, + -3.898482003 + ] + }, + "properties": { + "timestamp": "2009-06-20T14:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514681, + -3.897196003 + ] + }, + "properties": { + "timestamp": "2009-06-20T16:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51462, + -3.900185002 + ] + }, + "properties": { + "timestamp": "2009-06-20T17:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51497, + -3.899884003 + ] + }, + "properties": { + "timestamp": "2009-06-20T19:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515218, + -3.900118001 + ] + }, + "properties": { + "timestamp": "2009-06-20T20:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51366, + -3.900271998 + ] + }, + "properties": { + "timestamp": "2009-06-20T22:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513542, + -3.900616002 + ] + }, + "properties": { + "timestamp": "2009-06-20T23:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512992, + -3.899949001 + ] + }, + "properties": { + "timestamp": "2009-06-21T01:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513029, + -3.899952003 + ] + }, + "properties": { + "timestamp": "2009-06-21T02:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511613, + -3.899142004 + ] + }, + "properties": { + "timestamp": "2009-06-21T04:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510864, + -3.896409 + ] + }, + "properties": { + "timestamp": "2009-06-21T05:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508541, + -3.894694004 + ] + }, + "properties": { + "timestamp": "2009-06-21T07:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511637, + -3.898069997 + ] + }, + "properties": { + "timestamp": "2009-06-21T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513652, + -3.899120004 + ] + }, + "properties": { + "timestamp": "2009-06-21T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513672, + -3.899099004 + ] + }, + "properties": { + "timestamp": "2009-06-21T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513635, + -3.899166999 + ] + }, + "properties": { + "timestamp": "2009-06-21T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510657, + -3.896734997 + ] + }, + "properties": { + "timestamp": "2009-06-21T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511369, + -3.898191998 + ] + }, + "properties": { + "timestamp": "2009-06-21T16:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51294, + -3.900043 + ] + }, + "properties": { + "timestamp": "2009-06-21T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512948, + -3.900048998 + ] + }, + "properties": { + "timestamp": "2009-06-21T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512321, + -3.900039998 + ] + }, + "properties": { + "timestamp": "2009-06-21T21:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512276, + -3.900268002 + ] + }, + "properties": { + "timestamp": "2009-06-21T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512537, + -3.900269002 + ] + }, + "properties": { + "timestamp": "2009-06-22T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512386, + -3.900232003 + ] + }, + "properties": { + "timestamp": "2009-06-22T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512826, + -3.898111999 + ] + }, + "properties": { + "timestamp": "2009-06-22T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515865, + -3.898589001 + ] + }, + "properties": { + "timestamp": "2009-06-22T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515906, + -3.899070996 + ] + }, + "properties": { + "timestamp": "2009-06-22T07:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515776, + -3.899008996 + ] + }, + "properties": { + "timestamp": "2009-06-22T09:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515755, + -3.899041002 + ] + }, + "properties": { + "timestamp": "2009-06-22T10:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5158, + -3.899008001 + ] + }, + "properties": { + "timestamp": "2009-06-22T12:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515869, + -3.898531004 + ] + }, + "properties": { + "timestamp": "2009-06-22T13:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.516134, + -3.897797002 + ] + }, + "properties": { + "timestamp": "2009-06-22T15:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514201, + -3.898721998 + ] + }, + "properties": { + "timestamp": "2009-06-22T16:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514172, + -3.899301997 + ] + }, + "properties": { + "timestamp": "2009-06-22T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514083, + -3.901876998 + ] + }, + "properties": { + "timestamp": "2009-06-22T19:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513379, + -3.901892996 + ] + }, + "properties": { + "timestamp": "2009-06-22T21:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513265, + -3.900369996 + ] + }, + "properties": { + "timestamp": "2009-06-22T23:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511861, + -3.900806001 + ] + }, + "properties": { + "timestamp": "2009-06-23T00:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511597, + -3.900543999 + ] + }, + "properties": { + "timestamp": "2009-06-23T02:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511617, + -3.900519999 + ] + }, + "properties": { + "timestamp": "2009-06-23T03:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512891, + -3.901205001 + ] + }, + "properties": { + "timestamp": "2009-06-23T05:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515108, + -3.898648003 + ] + }, + "properties": { + "timestamp": "2009-06-23T07:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515405, + -3.899118003 + ] + }, + "properties": { + "timestamp": "2009-06-23T08:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515792, + -3.899005003 + ] + }, + "properties": { + "timestamp": "2009-06-23T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514754, + -3.899570996 + ] + }, + "properties": { + "timestamp": "2009-06-23T11:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514714, + -3.899573001 + ] + }, + "properties": { + "timestamp": "2009-06-23T13:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514795, + -3.898887001 + ] + }, + "properties": { + "timestamp": "2009-06-23T14:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513119, + -3.895871003 + ] + }, + "properties": { + "timestamp": "2009-06-23T16:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505868, + -3.890049003 + ] + }, + "properties": { + "timestamp": "2009-06-23T17:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503967, + -3.891235997 + ] + }, + "properties": { + "timestamp": "2009-06-23T20:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500765, + -3.890965004 + ] + }, + "properties": { + "timestamp": "2009-06-23T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500814, + -3.891582999 + ] + }, + "properties": { + "timestamp": "2009-06-24T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500781, + -3.891336996 + ] + }, + "properties": { + "timestamp": "2009-06-24T02:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50009, + -3.891482003 + ] + }, + "properties": { + "timestamp": "2009-06-24T03:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504537, + -3.901326997 + ] + }, + "properties": { + "timestamp": "2009-06-24T05:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506258, + -3.901863003 + ] + }, + "properties": { + "timestamp": "2009-06-24T07:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50992, + -3.903218997 + ] + }, + "properties": { + "timestamp": "2009-06-24T08:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512801, + -3.900983005 + ] + }, + "properties": { + "timestamp": "2009-06-24T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512805, + -3.901007004 + ] + }, + "properties": { + "timestamp": "2009-06-24T11:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512919, + -3.901568003 + ] + }, + "properties": { + "timestamp": "2009-06-24T13:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512923, + -3.901512998 + ] + }, + "properties": { + "timestamp": "2009-06-24T14:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508342, + -3.897658998 + ] + }, + "properties": { + "timestamp": "2009-06-24T16:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506441, + -3.890391999 + ] + }, + "properties": { + "timestamp": "2009-06-24T17:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508175, + -3.889057999 + ] + }, + "properties": { + "timestamp": "2009-06-24T19:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507808, + -3.88932 + ] + }, + "properties": { + "timestamp": "2009-06-24T20:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506799, + -3.890008 + ] + }, + "properties": { + "timestamp": "2009-06-24T22:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505477, + -3.888170996 + ] + }, + "properties": { + "timestamp": "2009-06-24T23:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504093, + -3.890198996 + ] + }, + "properties": { + "timestamp": "2009-06-25T01:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503512, + -3.890812004 + ] + }, + "properties": { + "timestamp": "2009-06-25T02:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499699, + -3.893313003 + ] + }, + "properties": { + "timestamp": "2009-06-25T04:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499174, + -3.900058997 + ] + }, + "properties": { + "timestamp": "2009-06-25T05:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504338, + -3.902005003 + ] + }, + "properties": { + "timestamp": "2009-06-25T07:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504285, + -3.902492996 + ] + }, + "properties": { + "timestamp": "2009-06-25T08:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504651, + -3.902646002 + ] + }, + "properties": { + "timestamp": "2009-06-25T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50472, + -3.901864997 + ] + }, + "properties": { + "timestamp": "2009-06-25T11:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504488, + -3.901912996 + ] + }, + "properties": { + "timestamp": "2009-06-25T13:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504439, + -3.901857003 + ] + }, + "properties": { + "timestamp": "2009-06-25T14:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499516, + -3.899193 + ] + }, + "properties": { + "timestamp": "2009-06-25T16:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498914, + -3.899710003 + ] + }, + "properties": { + "timestamp": "2009-06-25T17:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504574, + -3.890426003 + ] + }, + "properties": { + "timestamp": "2009-06-25T19:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504712, + -3.890483001 + ] + }, + "properties": { + "timestamp": "2009-06-25T20:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502795, + -3.891675005 + ] + }, + "properties": { + "timestamp": "2009-06-25T22:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499207, + -3.891189003 + ] + }, + "properties": { + "timestamp": "2009-06-26T01:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499162, + -3.891808002 + ] + }, + "properties": { + "timestamp": "2009-06-26T02:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501729, + -3.898569 + ] + }, + "properties": { + "timestamp": "2009-06-26T04:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498043, + -3.898974003 + ] + }, + "properties": { + "timestamp": "2009-06-26T05:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502507, + -3.900622002 + ] + }, + "properties": { + "timestamp": "2009-06-26T07:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503385, + -3.900947004 + ] + }, + "properties": { + "timestamp": "2009-06-26T08:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504732, + -3.901889003 + ] + }, + "properties": { + "timestamp": "2009-06-26T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504688, + -3.901868002 + ] + }, + "properties": { + "timestamp": "2009-06-26T11:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504968, + -3.901829004 + ] + }, + "properties": { + "timestamp": "2009-06-26T13:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506563, + -3.902100001 + ] + }, + "properties": { + "timestamp": "2009-06-26T14:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507263, + -3.897415003 + ] + }, + "properties": { + "timestamp": "2009-06-26T16:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510433, + -3.896968002 + ] + }, + "properties": { + "timestamp": "2009-06-26T17:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506063, + -3.890582003 + ] + }, + "properties": { + "timestamp": "2009-06-26T19:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506038, + -3.890655998 + ] + }, + "properties": { + "timestamp": "2009-06-26T20:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504679, + -3.888387004 + ] + }, + "properties": { + "timestamp": "2009-06-26T22:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505302, + -3.888293001 + ] + }, + "properties": { + "timestamp": "2009-06-27T00:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504867, + -3.890048998 + ] + }, + "properties": { + "timestamp": "2009-06-27T02:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499048, + -3.899383 + ] + }, + "properties": { + "timestamp": "2009-06-27T05:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499809, + -3.899898002 + ] + }, + "properties": { + "timestamp": "2009-06-27T06:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511467, + -3.900966004 + ] + }, + "properties": { + "timestamp": "2009-06-27T08:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512187, + -3.900932999 + ] + }, + "properties": { + "timestamp": "2009-06-27T09:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512866, + -3.900745 + ] + }, + "properties": { + "timestamp": "2009-06-27T11:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512956, + -3.900722996 + ] + }, + "properties": { + "timestamp": "2009-06-27T12:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511727, + -3.900441004 + ] + }, + "properties": { + "timestamp": "2009-06-27T14:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513928, + -3.898863002 + ] + }, + "properties": { + "timestamp": "2009-06-27T15:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510693, + -3.896831001 + ] + }, + "properties": { + "timestamp": "2009-06-27T17:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505131, + -3.889957997 + ] + }, + "properties": { + "timestamp": "2009-06-27T18:32:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50376, + -3.891866004 + ] + }, + "properties": { + "timestamp": "2009-06-27T20:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504273, + -3.891045998 + ] + }, + "properties": { + "timestamp": "2009-06-28T00:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504329, + -3.891171001 + ] + }, + "properties": { + "timestamp": "2009-06-28T01:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504028, + -3.891352998 + ] + }, + "properties": { + "timestamp": "2009-06-28T03:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503687, + -3.893127998 + ] + }, + "properties": { + "timestamp": "2009-06-28T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505957, + -3.894801003 + ] + }, + "properties": { + "timestamp": "2009-06-28T06:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513888, + -3.900049001 + ] + }, + "properties": { + "timestamp": "2009-06-28T08:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514592, + -3.900704003 + ] + }, + "properties": { + "timestamp": "2009-06-28T09:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514396, + -3.900492999 + ] + }, + "properties": { + "timestamp": "2009-06-28T11:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514412, + -3.900516999 + ] + }, + "properties": { + "timestamp": "2009-06-28T12:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514421, + -3.900569999 + ] + }, + "properties": { + "timestamp": "2009-06-28T14:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513289, + -3.897950002 + ] + }, + "properties": { + "timestamp": "2009-06-28T15:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514701, + -3.897236997 + ] + }, + "properties": { + "timestamp": "2009-06-28T17:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514266, + -3.897240002 + ] + }, + "properties": { + "timestamp": "2009-06-28T18:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504753, + -3.889827998 + ] + }, + "properties": { + "timestamp": "2009-06-28T20:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504728, + -3.889813001 + ] + }, + "properties": { + "timestamp": "2009-06-28T21:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503398, + -3.889249997 + ] + }, + "properties": { + "timestamp": "2009-06-28T23:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503003, + -3.889463999 + ] + }, + "properties": { + "timestamp": "2009-06-29T00:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502096, + -3.891244999 + ] + }, + "properties": { + "timestamp": "2009-06-29T03:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500407, + -3.890111004 + ] + }, + "properties": { + "timestamp": "2009-06-29T04:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510348, + -3.895948999 + ] + }, + "properties": { + "timestamp": "2009-06-29T06:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511544, + -3.897887002 + ] + }, + "properties": { + "timestamp": "2009-06-29T08:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514299, + -3.898772 + ] + }, + "properties": { + "timestamp": "2009-06-29T09:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514783, + -3.899585001 + ] + }, + "properties": { + "timestamp": "2009-06-29T11:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514738, + -3.899596003 + ] + }, + "properties": { + "timestamp": "2009-06-29T12:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51471, + -3.899568 + ] + }, + "properties": { + "timestamp": "2009-06-29T14:01:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511381, + -3.896896997 + ] + }, + "properties": { + "timestamp": "2009-06-29T15:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510339, + -3.895462997 + ] + }, + "properties": { + "timestamp": "2009-06-29T18:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505046, + -3.887364998 + ] + }, + "properties": { + "timestamp": "2009-06-29T21:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504419, + -3.888176001 + ] + }, + "properties": { + "timestamp": "2009-06-29T22:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504895, + -3.888748998 + ] + }, + "properties": { + "timestamp": "2009-06-30T00:03:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504374, + -3.889837005 + ] + }, + "properties": { + "timestamp": "2009-06-30T01:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502901, + -3.890628004 + ] + }, + "properties": { + "timestamp": "2009-06-30T03:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508427, + -3.897209004 + ] + }, + "properties": { + "timestamp": "2009-06-30T05:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510828, + -3.900025002 + ] + }, + "properties": { + "timestamp": "2009-06-30T06:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513086, + -3.901023004 + ] + }, + "properties": { + "timestamp": "2009-06-30T08:33:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514604, + -3.900737002 + ] + }, + "properties": { + "timestamp": "2009-06-30T10:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514396, + -3.900356999 + ] + }, + "properties": { + "timestamp": "2009-06-30T11:31:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514404, + -3.900346999 + ] + }, + "properties": { + "timestamp": "2009-06-30T13:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515202, + -3.898516005 + ] + }, + "properties": { + "timestamp": "2009-06-30T14:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511405, + -3.896641001 + ] + }, + "properties": { + "timestamp": "2009-06-30T18:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511532, + -3.897136997 + ] + }, + "properties": { + "timestamp": "2009-06-30T19:30:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504887, + -3.888919003 + ] + }, + "properties": { + "timestamp": "2009-06-30T21:00:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504342, + -3.889707002 + ] + }, + "properties": { + "timestamp": "2009-06-30T22:32:00", + "year": 2009, + "month": 6, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504427, + -3.890294005 + ] + }, + "properties": { + "timestamp": "2009-07-01T00:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504053, + -3.890699999 + ] + }, + "properties": { + "timestamp": "2009-07-01T01:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502112, + -3.889959003 + ] + }, + "properties": { + "timestamp": "2009-07-01T03:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502661, + -3.896044001 + ] + }, + "properties": { + "timestamp": "2009-07-01T05:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515373, + -3.900369005 + ] + }, + "properties": { + "timestamp": "2009-07-01T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514632, + -3.900689001 + ] + }, + "properties": { + "timestamp": "2009-07-01T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514461, + -3.899709997 + ] + }, + "properties": { + "timestamp": "2009-07-01T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514799, + -3.899624998 + ] + }, + "properties": { + "timestamp": "2009-07-01T12:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51475, + -3.899652998 + ] + }, + "properties": { + "timestamp": "2009-07-01T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514856, + -3.899630997 + ] + }, + "properties": { + "timestamp": "2009-07-01T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513159, + -3.896932003 + ] + }, + "properties": { + "timestamp": "2009-07-01T16:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510042, + -3.896065997 + ] + }, + "properties": { + "timestamp": "2009-07-01T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508057, + -3.889602003 + ] + }, + "properties": { + "timestamp": "2009-07-01T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504553, + -3.888757998 + ] + }, + "properties": { + "timestamp": "2009-07-01T22:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504891, + -3.889698996 + ] + }, + "properties": { + "timestamp": "2009-07-02T00:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504838, + -3.889799996 + ] + }, + "properties": { + "timestamp": "2009-07-02T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504203, + -3.889879999 + ] + }, + "properties": { + "timestamp": "2009-07-02T03:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511308, + -3.899660996 + ] + }, + "properties": { + "timestamp": "2009-07-02T05:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512337, + -3.900326002 + ] + }, + "properties": { + "timestamp": "2009-07-02T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512695, + -3.900397003 + ] + }, + "properties": { + "timestamp": "2009-07-02T08:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514217, + -3.900576996 + ] + }, + "properties": { + "timestamp": "2009-07-02T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514172, + -3.900561 + ] + }, + "properties": { + "timestamp": "2009-07-02T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513383, + -3.900567998 + ] + }, + "properties": { + "timestamp": "2009-07-02T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509627, + -3.898509002 + ] + }, + "properties": { + "timestamp": "2009-07-02T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509871, + -3.896748004 + ] + }, + "properties": { + "timestamp": "2009-07-02T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509985, + -3.896225997 + ] + }, + "properties": { + "timestamp": "2009-07-02T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508655, + -3.895322002 + ] + }, + "properties": { + "timestamp": "2009-07-02T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503068, + -3.889020998 + ] + }, + "properties": { + "timestamp": "2009-07-02T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502722, + -3.889344998 + ] + }, + "properties": { + "timestamp": "2009-07-02T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501839, + -3.890277 + ] + }, + "properties": { + "timestamp": "2009-07-03T00:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501392, + -3.890839003 + ] + }, + "properties": { + "timestamp": "2009-07-03T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501457, + -3.890860002 + ] + }, + "properties": { + "timestamp": "2009-07-03T03:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503723, + -3.896044999 + ] + }, + "properties": { + "timestamp": "2009-07-03T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5104, + -3.896289999 + ] + }, + "properties": { + "timestamp": "2009-07-03T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513595, + -3.900998004 + ] + }, + "properties": { + "timestamp": "2009-07-03T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51366, + -3.900994003 + ] + }, + "properties": { + "timestamp": "2009-07-03T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5151, + -3.899480001 + ] + }, + "properties": { + "timestamp": "2009-07-03T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515108, + -3.899473002 + ] + }, + "properties": { + "timestamp": "2009-07-03T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515084, + -3.899454004 + ] + }, + "properties": { + "timestamp": "2009-07-03T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515767, + -3.899443003 + ] + }, + "properties": { + "timestamp": "2009-07-03T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51453, + -3.897172002 + ] + }, + "properties": { + "timestamp": "2009-07-03T17:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50791, + -3.890996005 + ] + }, + "properties": { + "timestamp": "2009-07-03T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507853, + -3.888215999 + ] + }, + "properties": { + "timestamp": "2009-07-03T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50435, + -3.887651004 + ] + }, + "properties": { + "timestamp": "2009-07-03T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50249, + -3.887939998 + ] + }, + "properties": { + "timestamp": "2009-07-03T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502633, + -3.889347002 + ] + }, + "properties": { + "timestamp": "2009-07-04T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503796, + -3.890583997 + ] + }, + "properties": { + "timestamp": "2009-07-04T02:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503373, + -3.891160001 + ] + }, + "properties": { + "timestamp": "2009-07-04T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509973, + -3.898951996 + ] + }, + "properties": { + "timestamp": "2009-07-04T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511857, + -3.900539004 + ] + }, + "properties": { + "timestamp": "2009-07-04T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512773, + -3.900944002 + ] + }, + "properties": { + "timestamp": "2009-07-04T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512765, + -3.900921003 + ] + }, + "properties": { + "timestamp": "2009-07-04T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512781, + -3.900925 + ] + }, + "properties": { + "timestamp": "2009-07-04T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512887, + -3.900751 + ] + }, + "properties": { + "timestamp": "2009-07-04T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512927, + -3.900698 + ] + }, + "properties": { + "timestamp": "2009-07-04T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512586, + -3.897871996 + ] + }, + "properties": { + "timestamp": "2009-07-04T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5099, + -3.897198002 + ] + }, + "properties": { + "timestamp": "2009-07-04T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504244, + -3.88881 + ] + }, + "properties": { + "timestamp": "2009-07-04T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504574, + -3.887261005 + ] + }, + "properties": { + "timestamp": "2009-07-04T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505371, + -3.886787002 + ] + }, + "properties": { + "timestamp": "2009-07-04T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504211, + -3.886619996 + ] + }, + "properties": { + "timestamp": "2009-07-05T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504073, + -3.888600002 + ] + }, + "properties": { + "timestamp": "2009-07-05T01:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503955, + -3.888508004 + ] + }, + "properties": { + "timestamp": "2009-07-05T03:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504391, + -3.894928998 + ] + }, + "properties": { + "timestamp": "2009-07-05T05:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514225, + -3.899740001 + ] + }, + "properties": { + "timestamp": "2009-07-05T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514396, + -3.900514005 + ] + }, + "properties": { + "timestamp": "2009-07-05T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513827, + -3.900504997 + ] + }, + "properties": { + "timestamp": "2009-07-05T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513814, + -3.900493001 + ] + }, + "properties": { + "timestamp": "2009-07-05T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51381, + -3.900470004 + ] + }, + "properties": { + "timestamp": "2009-07-05T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5144, + -3.900471997 + ] + }, + "properties": { + "timestamp": "2009-07-05T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515507, + -3.899460002 + ] + }, + "properties": { + "timestamp": "2009-07-05T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515804, + -3.899974001 + ] + }, + "properties": { + "timestamp": "2009-07-05T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5158, + -3.900003997 + ] + }, + "properties": { + "timestamp": "2009-07-05T19:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514844, + -3.901694997 + ] + }, + "properties": { + "timestamp": "2009-07-05T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514014, + -3.900894003 + ] + }, + "properties": { + "timestamp": "2009-07-05T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510645, + -3.897158002 + ] + }, + "properties": { + "timestamp": "2009-07-06T00:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500623, + -3.887175001 + ] + }, + "properties": { + "timestamp": "2009-07-06T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499072, + -3.888687 + ] + }, + "properties": { + "timestamp": "2009-07-06T03:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49858, + -3.890739001 + ] + }, + "properties": { + "timestamp": "2009-07-06T04:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50144, + -3.896409004 + ] + }, + "properties": { + "timestamp": "2009-07-06T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50402, + -3.894636997 + ] + }, + "properties": { + "timestamp": "2009-07-06T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501449, + -3.893494999 + ] + }, + "properties": { + "timestamp": "2009-07-06T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50144, + -3.893373 + ] + }, + "properties": { + "timestamp": "2009-07-06T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500952, + -3.893126005 + ] + }, + "properties": { + "timestamp": "2009-07-06T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500924, + -3.893104998 + ] + }, + "properties": { + "timestamp": "2009-07-06T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500952, + -3.893120003 + ] + }, + "properties": { + "timestamp": "2009-07-06T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501249, + -3.891134004 + ] + }, + "properties": { + "timestamp": "2009-07-06T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504793, + -3.885134003 + ] + }, + "properties": { + "timestamp": "2009-07-06T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504346, + -3.884219002 + ] + }, + "properties": { + "timestamp": "2009-07-06T20:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505176, + -3.885194005 + ] + }, + "properties": { + "timestamp": "2009-07-06T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504806, + -3.885678005 + ] + }, + "properties": { + "timestamp": "2009-07-06T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504781, + -3.885670004 + ] + }, + "properties": { + "timestamp": "2009-07-07T01:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505408, + -3.886074999 + ] + }, + "properties": { + "timestamp": "2009-07-07T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504329, + -3.887786002 + ] + }, + "properties": { + "timestamp": "2009-07-07T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505473, + -3.893437 + ] + }, + "properties": { + "timestamp": "2009-07-07T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505485, + -3.893607996 + ] + }, + "properties": { + "timestamp": "2009-07-07T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505481, + -3.893594996 + ] + }, + "properties": { + "timestamp": "2009-07-07T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505477, + -3.893623003 + ] + }, + "properties": { + "timestamp": "2009-07-07T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505518, + -3.893800999 + ] + }, + "properties": { + "timestamp": "2009-07-07T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50481, + -3.891188996 + ] + }, + "properties": { + "timestamp": "2009-07-07T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504822, + -3.891174001 + ] + }, + "properties": { + "timestamp": "2009-07-07T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511593, + -3.896709003 + ] + }, + "properties": { + "timestamp": "2009-07-07T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509562, + -3.894488996 + ] + }, + "properties": { + "timestamp": "2009-07-07T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505286, + -3.885234 + ] + }, + "properties": { + "timestamp": "2009-07-07T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503882, + -3.888358004 + ] + }, + "properties": { + "timestamp": "2009-07-07T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50387, + -3.886799001 + ] + }, + "properties": { + "timestamp": "2009-07-07T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504041, + -3.884344996 + ] + }, + "properties": { + "timestamp": "2009-07-08T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504651, + -3.884617999 + ] + }, + "properties": { + "timestamp": "2009-07-08T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505379, + -3.885947003 + ] + }, + "properties": { + "timestamp": "2009-07-08T03:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506881, + -3.892354002 + ] + }, + "properties": { + "timestamp": "2009-07-08T04:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513127, + -3.898765996 + ] + }, + "properties": { + "timestamp": "2009-07-08T06:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51355, + -3.899099004 + ] + }, + "properties": { + "timestamp": "2009-07-08T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513485, + -3.899119003 + ] + }, + "properties": { + "timestamp": "2009-07-08T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513521, + -3.899120999 + ] + }, + "properties": { + "timestamp": "2009-07-08T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513525, + -3.899119998 + ] + }, + "properties": { + "timestamp": "2009-07-08T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513517, + -3.899125 + ] + }, + "properties": { + "timestamp": "2009-07-08T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513892, + -3.898976996 + ] + }, + "properties": { + "timestamp": "2009-07-08T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513546, + -3.898453 + ] + }, + "properties": { + "timestamp": "2009-07-08T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505355, + -3.886857002 + ] + }, + "properties": { + "timestamp": "2009-07-08T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505217, + -3.885348998 + ] + }, + "properties": { + "timestamp": "2009-07-08T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503426, + -3.886215001 + ] + }, + "properties": { + "timestamp": "2009-07-08T21:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505278, + -3.885631003 + ] + }, + "properties": { + "timestamp": "2009-07-08T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504342, + -3.885059004 + ] + }, + "properties": { + "timestamp": "2009-07-09T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504423, + -3.884571002 + ] + }, + "properties": { + "timestamp": "2009-07-09T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505017, + -3.885810997 + ] + }, + "properties": { + "timestamp": "2009-07-09T03:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508948, + -3.897125997 + ] + }, + "properties": { + "timestamp": "2009-07-09T04:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511088, + -3.897689001 + ] + }, + "properties": { + "timestamp": "2009-07-09T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514506, + -3.899651001 + ] + }, + "properties": { + "timestamp": "2009-07-09T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514494, + -3.899673001 + ] + }, + "properties": { + "timestamp": "2009-07-09T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51449, + -3.899689999 + ] + }, + "properties": { + "timestamp": "2009-07-09T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514526, + -3.899658996 + ] + }, + "properties": { + "timestamp": "2009-07-09T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51438, + -3.899168004 + ] + }, + "properties": { + "timestamp": "2009-07-09T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515873, + -3.897705999 + ] + }, + "properties": { + "timestamp": "2009-07-09T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514445, + -3.898549998 + ] + }, + "properties": { + "timestamp": "2009-07-09T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514449, + -3.899426002 + ] + }, + "properties": { + "timestamp": "2009-07-09T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513863, + -3.899219003 + ] + }, + "properties": { + "timestamp": "2009-07-09T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510242, + -3.895542003 + ] + }, + "properties": { + "timestamp": "2009-07-09T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51038, + -3.895322997 + ] + }, + "properties": { + "timestamp": "2009-07-09T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503503, + -3.889265005 + ] + }, + "properties": { + "timestamp": "2009-07-10T00:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505257, + -3.884886001 + ] + }, + "properties": { + "timestamp": "2009-07-10T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504622, + -3.886265999 + ] + }, + "properties": { + "timestamp": "2009-07-10T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506201, + -3.895092003 + ] + }, + "properties": { + "timestamp": "2009-07-10T05:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509509, + -3.896899 + ] + }, + "properties": { + "timestamp": "2009-07-10T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512101, + -3.900344002 + ] + }, + "properties": { + "timestamp": "2009-07-10T08:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512394, + -3.900297004 + ] + }, + "properties": { + "timestamp": "2009-07-10T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513123, + -3.900928997 + ] + }, + "properties": { + "timestamp": "2009-07-10T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513102, + -3.900878998 + ] + }, + "properties": { + "timestamp": "2009-07-10T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513102, + -3.900850997 + ] + }, + "properties": { + "timestamp": "2009-07-10T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513912, + -3.901111996 + ] + }, + "properties": { + "timestamp": "2009-07-10T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515125, + -3.900406999 + ] + }, + "properties": { + "timestamp": "2009-07-10T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514868, + -3.900023001 + ] + }, + "properties": { + "timestamp": "2009-07-10T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513961, + -3.900991 + ] + }, + "properties": { + "timestamp": "2009-07-10T20:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511707, + -3.897415998 + ] + }, + "properties": { + "timestamp": "2009-07-10T22:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504928, + -3.885794003 + ] + }, + "properties": { + "timestamp": "2009-07-10T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505335, + -3.886239001 + ] + }, + "properties": { + "timestamp": "2009-07-11T01:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50507, + -3.886259003 + ] + }, + "properties": { + "timestamp": "2009-07-11T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503503, + -3.888737004 + ] + }, + "properties": { + "timestamp": "2009-07-11T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504236, + -3.891287997 + ] + }, + "properties": { + "timestamp": "2009-07-11T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504301, + -3.891349 + ] + }, + "properties": { + "timestamp": "2009-07-11T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513379, + -3.899939998 + ] + }, + "properties": { + "timestamp": "2009-07-11T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513285, + -3.900457999 + ] + }, + "properties": { + "timestamp": "2009-07-11T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514022, + -3.899836996 + ] + }, + "properties": { + "timestamp": "2009-07-11T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51401, + -3.899825002 + ] + }, + "properties": { + "timestamp": "2009-07-11T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513973, + -3.899831003 + ] + }, + "properties": { + "timestamp": "2009-07-11T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512874, + -3.897746999 + ] + }, + "properties": { + "timestamp": "2009-07-11T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508854, + -3.892217996 + ] + }, + "properties": { + "timestamp": "2009-07-11T17:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507605, + -3.891132004 + ] + }, + "properties": { + "timestamp": "2009-07-11T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507503, + -3.888489999 + ] + }, + "properties": { + "timestamp": "2009-07-11T20:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505282, + -3.884883997 + ] + }, + "properties": { + "timestamp": "2009-07-11T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504622, + -3.884137002 + ] + }, + "properties": { + "timestamp": "2009-07-11T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.5047, + -3.883428004 + ] + }, + "properties": { + "timestamp": "2009-07-12T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505485, + -3.885237003 + ] + }, + "properties": { + "timestamp": "2009-07-12T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50509, + -3.886613998 + ] + }, + "properties": { + "timestamp": "2009-07-12T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503853, + -3.892497996 + ] + }, + "properties": { + "timestamp": "2009-07-12T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513497, + -3.900039996 + ] + }, + "properties": { + "timestamp": "2009-07-12T06:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513456, + -3.900137001 + ] + }, + "properties": { + "timestamp": "2009-07-12T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513464, + -3.899991001 + ] + }, + "properties": { + "timestamp": "2009-07-12T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513428, + -3.899936998 + ] + }, + "properties": { + "timestamp": "2009-07-12T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513424, + -3.899975002 + ] + }, + "properties": { + "timestamp": "2009-07-12T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512195, + -3.900142996 + ] + }, + "properties": { + "timestamp": "2009-07-12T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515556, + -3.901274002 + ] + }, + "properties": { + "timestamp": "2009-07-12T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515206, + -3.901119005 + ] + }, + "properties": { + "timestamp": "2009-07-12T17:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514579, + -3.900663003 + ] + }, + "properties": { + "timestamp": "2009-07-12T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514559, + -3.900651004 + ] + }, + "properties": { + "timestamp": "2009-07-12T20:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512728, + -3.901565999 + ] + }, + "properties": { + "timestamp": "2009-07-12T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.493856, + -3.898890998 + ] + }, + "properties": { + "timestamp": "2009-07-12T23:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483106, + -3.898506001 + ] + }, + "properties": { + "timestamp": "2009-07-13T01:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482117, + -3.897580001 + ] + }, + "properties": { + "timestamp": "2009-07-13T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483362, + -3.899177999 + ] + }, + "properties": { + "timestamp": "2009-07-13T04:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481547, + -3.903660004 + ] + }, + "properties": { + "timestamp": "2009-07-13T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484147, + -3.913835 + ] + }, + "properties": { + "timestamp": "2009-07-13T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513058, + -3.900842 + ] + }, + "properties": { + "timestamp": "2009-07-13T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513497, + -3.900022001 + ] + }, + "properties": { + "timestamp": "2009-07-13T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513501, + -3.900000999 + ] + }, + "properties": { + "timestamp": "2009-07-13T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513534, + -3.900072997 + ] + }, + "properties": { + "timestamp": "2009-07-13T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513513, + -3.900036998 + ] + }, + "properties": { + "timestamp": "2009-07-13T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515157, + -3.900603996 + ] + }, + "properties": { + "timestamp": "2009-07-13T16:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.516435, + -3.899135 + ] + }, + "properties": { + "timestamp": "2009-07-13T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.516069, + -3.899114004 + ] + }, + "properties": { + "timestamp": "2009-07-13T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515975, + -3.899509997 + ] + }, + "properties": { + "timestamp": "2009-07-13T20:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484721, + -3.896671996 + ] + }, + "properties": { + "timestamp": "2009-07-13T22:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483403, + -3.898480997 + ] + }, + "properties": { + "timestamp": "2009-07-13T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483972, + -3.898961005 + ] + }, + "properties": { + "timestamp": "2009-07-14T01:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484587, + -3.896455003 + ] + }, + "properties": { + "timestamp": "2009-07-14T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487207, + -3.896505004 + ] + }, + "properties": { + "timestamp": "2009-07-14T04:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503617, + -3.902240003 + ] + }, + "properties": { + "timestamp": "2009-07-14T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503695, + -3.902840001 + ] + }, + "properties": { + "timestamp": "2009-07-14T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503996, + -3.902735004 + ] + }, + "properties": { + "timestamp": "2009-07-14T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504085, + -3.902901999 + ] + }, + "properties": { + "timestamp": "2009-07-14T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504077, + -3.902893001 + ] + }, + "properties": { + "timestamp": "2009-07-14T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504069, + -3.902871999 + ] + }, + "properties": { + "timestamp": "2009-07-14T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504089, + -3.902875999 + ] + }, + "properties": { + "timestamp": "2009-07-14T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50623, + -3.902699003 + ] + }, + "properties": { + "timestamp": "2009-07-14T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506559, + -3.905286999 + ] + }, + "properties": { + "timestamp": "2009-07-14T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506498, + -3.905288002 + ] + }, + "properties": { + "timestamp": "2009-07-14T19:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506616, + -3.905725999 + ] + }, + "properties": { + "timestamp": "2009-07-14T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502291, + -3.903240996 + ] + }, + "properties": { + "timestamp": "2009-07-14T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486605, + -3.894484997 + ] + }, + "properties": { + "timestamp": "2009-07-15T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488932, + -3.894654004 + ] + }, + "properties": { + "timestamp": "2009-07-15T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.489343, + -3.893669 + ] + }, + "properties": { + "timestamp": "2009-07-15T03:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.497575, + -3.894928003 + ] + }, + "properties": { + "timestamp": "2009-07-15T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502612, + -3.894934998 + ] + }, + "properties": { + "timestamp": "2009-07-15T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503276, + -3.895663997 + ] + }, + "properties": { + "timestamp": "2009-07-15T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503365, + -3.895710005 + ] + }, + "properties": { + "timestamp": "2009-07-15T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503874, + -3.895486003 + ] + }, + "properties": { + "timestamp": "2009-07-15T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510946, + -3.897774996 + ] + }, + "properties": { + "timestamp": "2009-07-15T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51342, + -3.899929997 + ] + }, + "properties": { + "timestamp": "2009-07-15T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513082, + -3.899754997 + ] + }, + "properties": { + "timestamp": "2009-07-15T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511959, + -3.899672996 + ] + }, + "properties": { + "timestamp": "2009-07-15T17:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512313, + -3.899899003 + ] + }, + "properties": { + "timestamp": "2009-07-15T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512345, + -3.899883 + ] + }, + "properties": { + "timestamp": "2009-07-15T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512126, + -3.900266997 + ] + }, + "properties": { + "timestamp": "2009-07-15T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488615, + -3.894240001 + ] + }, + "properties": { + "timestamp": "2009-07-15T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488884, + -3.894146003 + ] + }, + "properties": { + "timestamp": "2009-07-16T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488892, + -3.893531997 + ] + }, + "properties": { + "timestamp": "2009-07-16T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498377, + -3.894601001 + ] + }, + "properties": { + "timestamp": "2009-07-16T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501021, + -3.893871997 + ] + }, + "properties": { + "timestamp": "2009-07-16T05:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502409, + -3.893877996 + ] + }, + "properties": { + "timestamp": "2009-07-16T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502201, + -3.893898003 + ] + }, + "properties": { + "timestamp": "2009-07-16T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502279, + -3.893727004 + ] + }, + "properties": { + "timestamp": "2009-07-16T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502291, + -3.893708999 + ] + }, + "properties": { + "timestamp": "2009-07-16T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504285, + -3.893525997 + ] + }, + "properties": { + "timestamp": "2009-07-16T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502283, + -3.893937003 + ] + }, + "properties": { + "timestamp": "2009-07-16T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499495, + -3.894169 + ] + }, + "properties": { + "timestamp": "2009-07-16T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51353, + -3.899940003 + ] + }, + "properties": { + "timestamp": "2009-07-16T17:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514612, + -3.899963999 + ] + }, + "properties": { + "timestamp": "2009-07-16T19:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514872, + -3.901214997 + ] + }, + "properties": { + "timestamp": "2009-07-16T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513981, + -3.901844998 + ] + }, + "properties": { + "timestamp": "2009-07-16T22:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513363, + -3.901923001 + ] + }, + "properties": { + "timestamp": "2009-07-17T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.485315, + -3.897352002 + ] + }, + "properties": { + "timestamp": "2009-07-17T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487138, + -3.896513999 + ] + }, + "properties": { + "timestamp": "2009-07-17T03:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.490621, + -3.896544004 + ] + }, + "properties": { + "timestamp": "2009-07-17T04:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501481, + -3.896752004 + ] + }, + "properties": { + "timestamp": "2009-07-17T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501583, + -3.896742998 + ] + }, + "properties": { + "timestamp": "2009-07-17T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500358, + -3.894424 + ] + }, + "properties": { + "timestamp": "2009-07-17T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50033, + -3.894487998 + ] + }, + "properties": { + "timestamp": "2009-07-17T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500322, + -3.894457 + ] + }, + "properties": { + "timestamp": "2009-07-17T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500358, + -3.894645999 + ] + }, + "properties": { + "timestamp": "2009-07-17T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500309, + -3.894811001 + ] + }, + "properties": { + "timestamp": "2009-07-17T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49742, + -3.894459999 + ] + }, + "properties": { + "timestamp": "2009-07-17T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488806, + -3.894825001 + ] + }, + "properties": { + "timestamp": "2009-07-17T18:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488794, + -3.894702 + ] + }, + "properties": { + "timestamp": "2009-07-17T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48916, + -3.894349998 + ] + }, + "properties": { + "timestamp": "2009-07-17T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.489014, + -3.894274997 + ] + }, + "properties": { + "timestamp": "2009-07-17T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.489026, + -3.894313002 + ] + }, + "properties": { + "timestamp": "2009-07-18T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.489063, + -3.893530005 + ] + }, + "properties": { + "timestamp": "2009-07-18T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48903, + -3.894109003 + ] + }, + "properties": { + "timestamp": "2009-07-18T03:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.491325, + -3.898366997 + ] + }, + "properties": { + "timestamp": "2009-07-18T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.491126, + -3.898009003 + ] + }, + "properties": { + "timestamp": "2009-07-18T07:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.503247, + -3.894725001 + ] + }, + "properties": { + "timestamp": "2009-07-18T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.502918, + -3.894851002 + ] + }, + "properties": { + "timestamp": "2009-07-18T10:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.501856, + -3.895136003 + ] + }, + "properties": { + "timestamp": "2009-07-18T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500667, + -3.894715998 + ] + }, + "properties": { + "timestamp": "2009-07-18T13:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500594, + -3.894759002 + ] + }, + "properties": { + "timestamp": "2009-07-18T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500204, + -3.894091004 + ] + }, + "properties": { + "timestamp": "2009-07-18T16:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512744, + -3.901273004 + ] + }, + "properties": { + "timestamp": "2009-07-18T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51274, + -3.901263005 + ] + }, + "properties": { + "timestamp": "2009-07-18T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512874, + -3.902618997 + ] + }, + "properties": { + "timestamp": "2009-07-18T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513359, + -3.902603001 + ] + }, + "properties": { + "timestamp": "2009-07-18T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513574, + -3.902810004 + ] + }, + "properties": { + "timestamp": "2009-07-19T00:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.506242, + -3.902810996 + ] + }, + "properties": { + "timestamp": "2009-07-19T02:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.504627, + -3.902721003 + ] + }, + "properties": { + "timestamp": "2009-07-19T03:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507963, + -3.901880998 + ] + }, + "properties": { + "timestamp": "2009-07-19T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510059, + -3.898427005 + ] + }, + "properties": { + "timestamp": "2009-07-19T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513452, + -3.899933002 + ] + }, + "properties": { + "timestamp": "2009-07-19T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513468, + -3.899977998 + ] + }, + "properties": { + "timestamp": "2009-07-19T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513489, + -3.900033998 + ] + }, + "properties": { + "timestamp": "2009-07-19T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.51353, + -3.900045996 + ] + }, + "properties": { + "timestamp": "2009-07-19T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.511914, + -3.900828998 + ] + }, + "properties": { + "timestamp": "2009-07-19T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.513501, + -3.900720997 + ] + }, + "properties": { + "timestamp": "2009-07-19T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.515068, + -3.901036997 + ] + }, + "properties": { + "timestamp": "2009-07-19T17:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.489974, + -3.900866004 + ] + }, + "properties": { + "timestamp": "2009-07-19T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.490621, + -3.900926997 + ] + }, + "properties": { + "timestamp": "2009-07-19T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49117, + -3.898303004 + ] + }, + "properties": { + "timestamp": "2009-07-19T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.488456, + -3.894148004 + ] + }, + "properties": { + "timestamp": "2009-07-19T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487809, + -3.894678005 + ] + }, + "properties": { + "timestamp": "2009-07-20T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487972, + -3.895503998 + ] + }, + "properties": { + "timestamp": "2009-07-20T03:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498608, + -3.899595001 + ] + }, + "properties": { + "timestamp": "2009-07-20T04:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.499504, + -3.899418 + ] + }, + "properties": { + "timestamp": "2009-07-20T06:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500277, + -3.898751 + ] + }, + "properties": { + "timestamp": "2009-07-20T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500354, + -3.898892 + ] + }, + "properties": { + "timestamp": "2009-07-20T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500065, + -3.899619003 + ] + }, + "properties": { + "timestamp": "2009-07-20T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50011, + -3.899798999 + ] + }, + "properties": { + "timestamp": "2009-07-20T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500081, + -3.899918001 + ] + }, + "properties": { + "timestamp": "2009-07-20T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500423, + -3.899849001 + ] + }, + "properties": { + "timestamp": "2009-07-20T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500627, + -3.899112002 + ] + }, + "properties": { + "timestamp": "2009-07-20T16:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500509, + -3.899221005 + ] + }, + "properties": { + "timestamp": "2009-07-20T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498979, + -3.899311997 + ] + }, + "properties": { + "timestamp": "2009-07-20T20:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498714, + -3.899023003 + ] + }, + "properties": { + "timestamp": "2009-07-20T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498922, + -3.899202997 + ] + }, + "properties": { + "timestamp": "2009-07-20T23:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48346, + -3.898069 + ] + }, + "properties": { + "timestamp": "2009-07-21T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483313, + -3.900218996 + ] + }, + "properties": { + "timestamp": "2009-07-21T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484131, + -3.900100999 + ] + }, + "properties": { + "timestamp": "2009-07-21T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481283, + -3.902115997 + ] + }, + "properties": { + "timestamp": "2009-07-21T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481197, + -3.902407003 + ] + }, + "properties": { + "timestamp": "2009-07-21T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481543, + -3.903993003 + ] + }, + "properties": { + "timestamp": "2009-07-21T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481889, + -3.903819001 + ] + }, + "properties": { + "timestamp": "2009-07-21T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482223, + -3.903512996 + ] + }, + "properties": { + "timestamp": "2009-07-21T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482194, + -3.903383997 + ] + }, + "properties": { + "timestamp": "2009-07-21T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.4823, + -3.902385001 + ] + }, + "properties": { + "timestamp": "2009-07-21T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482214, + -3.902086004 + ] + }, + "properties": { + "timestamp": "2009-07-21T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482829, + -3.899796997 + ] + }, + "properties": { + "timestamp": "2009-07-21T17:02:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483203, + -3.899993001 + ] + }, + "properties": { + "timestamp": "2009-07-21T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483516, + -3.898609001 + ] + }, + "properties": { + "timestamp": "2009-07-21T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483993, + -3.899762999 + ] + }, + "properties": { + "timestamp": "2009-07-21T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482707, + -3.900135997 + ] + }, + "properties": { + "timestamp": "2009-07-21T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514612, + -3.900691996 + ] + }, + "properties": { + "timestamp": "2009-07-22T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514575, + -3.900658002 + ] + }, + "properties": { + "timestamp": "2009-07-22T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.514771, + -3.899846998 + ] + }, + "properties": { + "timestamp": "2009-07-22T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.512427, + -3.899158998 + ] + }, + "properties": { + "timestamp": "2009-07-22T17:03:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.510677, + -3.898771004 + ] + }, + "properties": { + "timestamp": "2009-07-22T18:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509985, + -3.898676 + ] + }, + "properties": { + "timestamp": "2009-07-22T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505745, + -3.897734996 + ] + }, + "properties": { + "timestamp": "2009-07-22T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500655, + -3.894818005 + ] + }, + "properties": { + "timestamp": "2009-07-23T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.500671, + -3.894892998 + ] + }, + "properties": { + "timestamp": "2009-07-23T01:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484534, + -3.895977999 + ] + }, + "properties": { + "timestamp": "2009-07-23T03:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.49554, + -3.899403001 + ] + }, + "properties": { + "timestamp": "2009-07-23T04:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.507638, + -3.903774 + ] + }, + "properties": { + "timestamp": "2009-07-23T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508049, + -3.903092005 + ] + }, + "properties": { + "timestamp": "2009-07-23T08:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508533, + -3.902558997 + ] + }, + "properties": { + "timestamp": "2009-07-23T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509493, + -3.902823998 + ] + }, + "properties": { + "timestamp": "2009-07-23T11:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509326, + -3.903111003 + ] + }, + "properties": { + "timestamp": "2009-07-23T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509904, + -3.902861003 + ] + }, + "properties": { + "timestamp": "2009-07-23T14:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.509408, + -3.903200998 + ] + }, + "properties": { + "timestamp": "2009-07-23T15:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508541, + -3.902653001 + ] + }, + "properties": { + "timestamp": "2009-07-23T17:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.508724, + -3.902755001 + ] + }, + "properties": { + "timestamp": "2009-07-23T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505062, + -3.907677998 + ] + }, + "properties": { + "timestamp": "2009-07-23T20:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50518, + -3.907849003 + ] + }, + "properties": { + "timestamp": "2009-07-23T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.498413, + -3.914745002 + ] + }, + "properties": { + "timestamp": "2009-07-23T23:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.463005, + -3.908001997 + ] + }, + "properties": { + "timestamp": "2009-07-24T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41757, + -3.914284001 + ] + }, + "properties": { + "timestamp": "2009-07-24T02:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.414856, + -3.912807001 + ] + }, + "properties": { + "timestamp": "2009-07-24T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.375688, + -3.906093004 + ] + }, + "properties": { + "timestamp": "2009-07-24T05:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.357682, + -3.910985 + ] + }, + "properties": { + "timestamp": "2009-07-24T06:06:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.356519, + -3.911328998 + ] + }, + "properties": { + "timestamp": "2009-07-24T07:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.356185, + -3.911408998 + ] + }, + "properties": { + "timestamp": "2009-07-24T09:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.337476, + -3.916679997 + ] + }, + "properties": { + "timestamp": "2009-07-24T10:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3354, + -3.918248004 + ] + }, + "properties": { + "timestamp": "2009-07-24T12:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335527, + -3.918378002 + ] + }, + "properties": { + "timestamp": "2009-07-24T13:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.334871, + -3.918846001 + ] + }, + "properties": { + "timestamp": "2009-07-24T15:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.334937, + -3.918820998 + ] + }, + "properties": { + "timestamp": "2009-07-24T16:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335201, + -3.918703003 + ] + }, + "properties": { + "timestamp": "2009-07-24T18:01:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335132, + -3.919271001 + ] + }, + "properties": { + "timestamp": "2009-07-24T19:32:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335136, + -3.919262004 + ] + }, + "properties": { + "timestamp": "2009-07-24T21:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335531, + -3.919298998 + ] + }, + "properties": { + "timestamp": "2009-07-24T22:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335649, + -3.919235997 + ] + }, + "properties": { + "timestamp": "2009-07-25T00:00:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.335339, + -3.919115997 + ] + }, + "properties": { + "timestamp": "2009-07-25T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3052, + -3.922100002 + ] + }, + "properties": { + "timestamp": "2009-07-25T05:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.260433, + -3.893495001 + ] + }, + "properties": { + "timestamp": "2009-07-25T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.232332, + -3.869467998 + ] + }, + "properties": { + "timestamp": "2009-07-25T14:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.216707, + -3.876964997 + ] + }, + "properties": { + "timestamp": "2009-07-25T17:31:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.176213, + -3.864707004 + ] + }, + "properties": { + "timestamp": "2009-07-25T20:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.176412, + -3.854277004 + ] + }, + "properties": { + "timestamp": "2009-07-25T23:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.176957, + -3.854051997 + ] + }, + "properties": { + "timestamp": "2009-07-26T02:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.094629, + -3.819464003 + ] + }, + "properties": { + "timestamp": "2009-07-26T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054281, + -3.828633998 + ] + }, + "properties": { + "timestamp": "2009-07-26T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053145, + -3.833391001 + ] + }, + "properties": { + "timestamp": "2009-07-26T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053744, + -3.828335004 + ] + }, + "properties": { + "timestamp": "2009-07-27T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057833, + -3.824709998 + ] + }, + "properties": { + "timestamp": "2009-07-27T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053963, + -3.828968 + ] + }, + "properties": { + "timestamp": "2009-07-27T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.046725, + -3.839691998 + ] + }, + "properties": { + "timestamp": "2009-07-28T05:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05568, + -3.825794003 + ] + }, + "properties": { + "timestamp": "2009-07-28T08:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054639, + -3.825026003 + ] + }, + "properties": { + "timestamp": "2009-07-28T11:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.056303, + -3.834817002 + ] + }, + "properties": { + "timestamp": "2009-07-29T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054496, + -3.832250999 + ] + }, + "properties": { + "timestamp": "2009-07-29T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054557, + -3.824660002 + ] + }, + "properties": { + "timestamp": "2009-07-29T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055786, + -3.825740005 + ] + }, + "properties": { + "timestamp": "2009-07-29T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054228, + -3.825683002 + ] + }, + "properties": { + "timestamp": "2009-07-29T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051135, + -3.826431 + ] + }, + "properties": { + "timestamp": "2009-07-29T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053101, + -3.828578004 + ] + }, + "properties": { + "timestamp": "2009-07-29T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052616, + -3.829109004 + ] + }, + "properties": { + "timestamp": "2009-07-29T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053292, + -3.829927999 + ] + }, + "properties": { + "timestamp": "2009-07-30T00:33:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051318, + -3.829287002 + ] + }, + "properties": { + "timestamp": "2009-07-30T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.047343, + -3.825937998 + ] + }, + "properties": { + "timestamp": "2009-07-30T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.047241, + -3.825782001 + ] + }, + "properties": { + "timestamp": "2009-07-30T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051599, + -3.826284997 + ] + }, + "properties": { + "timestamp": "2009-07-30T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048324, + -3.825598999 + ] + }, + "properties": { + "timestamp": "2009-07-30T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049837, + -3.826184004 + ] + }, + "properties": { + "timestamp": "2009-07-30T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051123, + -3.828907999 + ] + }, + "properties": { + "timestamp": "2009-07-30T21:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050012, + -3.841383999 + ] + }, + "properties": { + "timestamp": "2009-07-31T00:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050777, + -3.843330003 + ] + }, + "properties": { + "timestamp": "2009-07-31T03:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055636, + -3.838398001 + ] + }, + "properties": { + "timestamp": "2009-07-31T06:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052523, + -3.848882001 + ] + }, + "properties": { + "timestamp": "2009-07-31T09:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048828, + -3.848866002 + ] + }, + "properties": { + "timestamp": "2009-07-31T12:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050248, + -3.843731001 + ] + }, + "properties": { + "timestamp": "2009-07-31T15:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05033, + -3.843687005 + ] + }, + "properties": { + "timestamp": "2009-07-31T18:30:00", + "year": 2009, + "month": 7, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.047111, + -3.838917997 + ] + }, + "properties": { + "timestamp": "2009-08-01T06:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059863, + -3.832873004 + ] + }, + "properties": { + "timestamp": "2009-08-01T09:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05529, + -3.834767001 + ] + }, + "properties": { + "timestamp": "2009-08-01T12:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054732, + -3.835503999 + ] + }, + "properties": { + "timestamp": "2009-08-01T15:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052877, + -3.836294996 + ] + }, + "properties": { + "timestamp": "2009-08-01T18:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048246, + -3.83644 + ] + }, + "properties": { + "timestamp": "2009-08-01T22:31:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050008, + -3.841826001 + ] + }, + "properties": { + "timestamp": "2009-08-02T01:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04821, + -3.847879997 + ] + }, + "properties": { + "timestamp": "2009-08-02T04:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05096, + -3.849313001 + ] + }, + "properties": { + "timestamp": "2009-08-02T07:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059802, + -3.847473005 + ] + }, + "properties": { + "timestamp": "2009-08-02T10:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049622, + -3.847939002 + ] + }, + "properties": { + "timestamp": "2009-08-02T13:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050171, + -3.843611003 + ] + }, + "properties": { + "timestamp": "2009-08-02T16:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049276, + -3.845053 + ] + }, + "properties": { + "timestamp": "2009-08-02T19:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050362, + -3.846225998 + ] + }, + "properties": { + "timestamp": "2009-08-02T22:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051086, + -3.845267001 + ] + }, + "properties": { + "timestamp": "2009-08-03T01:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048356, + -3.840212996 + ] + }, + "properties": { + "timestamp": "2009-08-03T04:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045394, + -3.840293 + ] + }, + "properties": { + "timestamp": "2009-08-03T07:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053455, + -3.835579004 + ] + }, + "properties": { + "timestamp": "2009-08-03T10:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058521, + -3.832144005 + ] + }, + "properties": { + "timestamp": "2009-08-03T13:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051986, + -3.829403004 + ] + }, + "properties": { + "timestamp": "2009-08-03T16:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05153, + -3.829672 + ] + }, + "properties": { + "timestamp": "2009-08-03T19:31:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060091, + -3.858859005 + ] + }, + "properties": { + "timestamp": "2009-08-06T12:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053101, + -3.856773001 + ] + }, + "properties": { + "timestamp": "2009-08-06T14:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051265, + -3.852991997 + ] + }, + "properties": { + "timestamp": "2009-08-06T15:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050557, + -3.853355 + ] + }, + "properties": { + "timestamp": "2009-08-06T17:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050419, + -3.852445 + ] + }, + "properties": { + "timestamp": "2009-08-06T18:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050187, + -3.851659003 + ] + }, + "properties": { + "timestamp": "2009-08-06T20:02:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05059, + -3.852186002 + ] + }, + "properties": { + "timestamp": "2009-08-06T21:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050513, + -3.852233999 + ] + }, + "properties": { + "timestamp": "2009-08-06T23:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050598, + -3.852168999 + ] + }, + "properties": { + "timestamp": "2009-08-07T00:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050387, + -3.853333999 + ] + }, + "properties": { + "timestamp": "2009-08-07T02:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050419, + -3.853331002 + ] + }, + "properties": { + "timestamp": "2009-08-07T03:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05116, + -3.852320001 + ] + }, + "properties": { + "timestamp": "2009-08-07T05:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051481, + -3.852596005 + ] + }, + "properties": { + "timestamp": "2009-08-07T06:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051473, + -3.852683002 + ] + }, + "properties": { + "timestamp": "2009-08-07T08:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060864, + -3.858991999 + ] + }, + "properties": { + "timestamp": "2009-08-07T09:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05577, + -3.856801003 + ] + }, + "properties": { + "timestamp": "2009-08-07T11:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055424, + -3.856695005 + ] + }, + "properties": { + "timestamp": "2009-08-07T12:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050492, + -3.852393998 + ] + }, + "properties": { + "timestamp": "2009-08-07T14:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050863, + -3.852069 + ] + }, + "properties": { + "timestamp": "2009-08-07T15:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053898, + -3.849209002 + ] + }, + "properties": { + "timestamp": "2009-08-07T17:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05391, + -3.849208999 + ] + }, + "properties": { + "timestamp": "2009-08-07T18:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051331, + -3.851110996 + ] + }, + "properties": { + "timestamp": "2009-08-07T20:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052759, + -3.851679998 + ] + }, + "properties": { + "timestamp": "2009-08-07T22:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052917, + -3.851962997 + ] + }, + "properties": { + "timestamp": "2009-08-07T23:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050627, + -3.853274001 + ] + }, + "properties": { + "timestamp": "2009-08-08T01:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050484, + -3.853274001 + ] + }, + "properties": { + "timestamp": "2009-08-08T02:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050366, + -3.853279997 + ] + }, + "properties": { + "timestamp": "2009-08-08T04:03:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050911, + -3.852487999 + ] + }, + "properties": { + "timestamp": "2009-08-08T05:31:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054533, + -3.853182997 + ] + }, + "properties": { + "timestamp": "2009-08-08T07:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055957, + -3.853793996 + ] + }, + "properties": { + "timestamp": "2009-08-08T08:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060714, + -3.858704002 + ] + }, + "properties": { + "timestamp": "2009-08-08T10:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057727, + -3.857114002 + ] + }, + "properties": { + "timestamp": "2009-08-08T11:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055945, + -3.858060004 + ] + }, + "properties": { + "timestamp": "2009-08-08T13:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052181, + -3.856294998 + ] + }, + "properties": { + "timestamp": "2009-08-08T14:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050891, + -3.850857999 + ] + }, + "properties": { + "timestamp": "2009-08-08T16:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050834, + -3.843400998 + ] + }, + "properties": { + "timestamp": "2009-08-08T17:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050871, + -3.843343999 + ] + }, + "properties": { + "timestamp": "2009-08-08T19:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051013, + -3.842938 + ] + }, + "properties": { + "timestamp": "2009-08-08T20:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052193, + -3.849355001 + ] + }, + "properties": { + "timestamp": "2009-08-08T22:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05131, + -3.851097001 + ] + }, + "properties": { + "timestamp": "2009-08-08T23:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051241, + -3.851181003 + ] + }, + "properties": { + "timestamp": "2009-08-09T01:03:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051351, + -3.851240997 + ] + }, + "properties": { + "timestamp": "2009-08-09T02:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051302, + -3.851166 + ] + }, + "properties": { + "timestamp": "2009-08-09T04:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053271, + -3.852821003 + ] + }, + "properties": { + "timestamp": "2009-08-09T05:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055103, + -3.853988004 + ] + }, + "properties": { + "timestamp": "2009-08-09T07:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060791, + -3.855959998 + ] + }, + "properties": { + "timestamp": "2009-08-09T08:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059741, + -3.857379996 + ] + }, + "properties": { + "timestamp": "2009-08-09T10:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059648, + -3.857322997 + ] + }, + "properties": { + "timestamp": "2009-08-09T11:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058984, + -3.858858001 + ] + }, + "properties": { + "timestamp": "2009-08-09T13:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059546, + -3.854919004 + ] + }, + "properties": { + "timestamp": "2009-08-09T14:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058647, + -3.854330003 + ] + }, + "properties": { + "timestamp": "2009-08-09T16:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053849, + -3.847969 + ] + }, + "properties": { + "timestamp": "2009-08-09T17:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054431, + -3.848546997 + ] + }, + "properties": { + "timestamp": "2009-08-09T19:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050435, + -3.850465997 + ] + }, + "properties": { + "timestamp": "2009-08-09T20:32:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049349, + -3.852097999 + ] + }, + "properties": { + "timestamp": "2009-08-09T22:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048718, + -3.852686996 + ] + }, + "properties": { + "timestamp": "2009-08-09T23:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049565, + -3.852589997 + ] + }, + "properties": { + "timestamp": "2009-08-10T01:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049544, + -3.852601001 + ] + }, + "properties": { + "timestamp": "2009-08-10T02:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049369, + -3.852445001 + ] + }, + "properties": { + "timestamp": "2009-08-10T04:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048621, + -3.852408998 + ] + }, + "properties": { + "timestamp": "2009-08-10T05:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050452, + -3.852488997 + ] + }, + "properties": { + "timestamp": "2009-08-10T07:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.056067, + -3.858116002 + ] + }, + "properties": { + "timestamp": "2009-08-10T08:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060689, + -3.854980004 + ] + }, + "properties": { + "timestamp": "2009-08-10T10:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060885, + -3.854898998 + ] + }, + "properties": { + "timestamp": "2009-08-10T11:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062109, + -3.855907003 + ] + }, + "properties": { + "timestamp": "2009-08-10T13:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059229, + -3.857634002 + ] + }, + "properties": { + "timestamp": "2009-08-10T14:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054716, + -3.853432004 + ] + }, + "properties": { + "timestamp": "2009-08-10T16:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054688, + -3.853202996 + ] + }, + "properties": { + "timestamp": "2009-08-10T17:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054679, + -3.853228001 + ] + }, + "properties": { + "timestamp": "2009-08-10T19:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050163, + -3.851151003 + ] + }, + "properties": { + "timestamp": "2009-08-10T21:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049329, + -3.851798999 + ] + }, + "properties": { + "timestamp": "2009-08-10T22:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049797, + -3.852777998 + ] + }, + "properties": { + "timestamp": "2009-08-11T00:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049748, + -3.852827005 + ] + }, + "properties": { + "timestamp": "2009-08-11T02:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.049508, + -3.852709999 + ] + }, + "properties": { + "timestamp": "2009-08-11T03:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050537, + -3.853688004 + ] + }, + "properties": { + "timestamp": "2009-08-11T05:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050936, + -3.853803005 + ] + }, + "properties": { + "timestamp": "2009-08-11T07:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060368, + -3.854767002 + ] + }, + "properties": { + "timestamp": "2009-08-11T08:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061206, + -3.854694003 + ] + }, + "properties": { + "timestamp": "2009-08-11T10:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062065, + -3.853336004 + ] + }, + "properties": { + "timestamp": "2009-08-11T11:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061304, + -3.854136998 + ] + }, + "properties": { + "timestamp": "2009-08-11T13:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060783, + -3.853797997 + ] + }, + "properties": { + "timestamp": "2009-08-11T14:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054504, + -3.853731997 + ] + }, + "properties": { + "timestamp": "2009-08-11T16:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055062, + -3.852363002 + ] + }, + "properties": { + "timestamp": "2009-08-11T17:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055025, + -3.852301002 + ] + }, + "properties": { + "timestamp": "2009-08-11T19:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054704, + -3.852753002 + ] + }, + "properties": { + "timestamp": "2009-08-11T20:31:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05033, + -3.852201 + ] + }, + "properties": { + "timestamp": "2009-08-11T23:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05026, + -3.852280002 + ] + }, + "properties": { + "timestamp": "2009-08-12T01:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05022, + -3.852216998 + ] + }, + "properties": { + "timestamp": "2009-08-12T02:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050252, + -3.852195001 + ] + }, + "properties": { + "timestamp": "2009-08-12T04:03:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054504, + -3.853355997 + ] + }, + "properties": { + "timestamp": "2009-08-12T05:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054622, + -3.853764002 + ] + }, + "properties": { + "timestamp": "2009-08-12T07:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059635, + -3.854809004 + ] + }, + "properties": { + "timestamp": "2009-08-12T08:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060608, + -3.853901005 + ] + }, + "properties": { + "timestamp": "2009-08-12T10:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061422, + -3.856469005 + ] + }, + "properties": { + "timestamp": "2009-08-12T11:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058427, + -3.853972999 + ] + }, + "properties": { + "timestamp": "2009-08-12T13:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057987, + -3.853936996 + ] + }, + "properties": { + "timestamp": "2009-08-12T14:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054537, + -3.853365002 + ] + }, + "properties": { + "timestamp": "2009-08-12T16:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051225, + -3.851634999 + ] + }, + "properties": { + "timestamp": "2009-08-12T17:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051021, + -3.851145002 + ] + }, + "properties": { + "timestamp": "2009-08-12T19:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05009, + -3.850018997 + ] + }, + "properties": { + "timestamp": "2009-08-12T22:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054012, + -3.829245 + ] + }, + "properties": { + "timestamp": "2009-08-14T16:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054069, + -3.829905997 + ] + }, + "properties": { + "timestamp": "2009-08-14T18:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05415, + -3.830244004 + ] + }, + "properties": { + "timestamp": "2009-08-14T19:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054134, + -3.830243 + ] + }, + "properties": { + "timestamp": "2009-08-14T21:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054032, + -3.830591 + ] + }, + "properties": { + "timestamp": "2009-08-14T22:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05352, + -3.831672002 + ] + }, + "properties": { + "timestamp": "2009-08-15T00:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053174, + -3.832080001 + ] + }, + "properties": { + "timestamp": "2009-08-15T01:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053162, + -3.832104001 + ] + }, + "properties": { + "timestamp": "2009-08-15T03:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051204, + -3.832048999 + ] + }, + "properties": { + "timestamp": "2009-08-15T04:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045894, + -3.830758002 + ] + }, + "properties": { + "timestamp": "2009-08-15T06:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.043587, + -3.832098002 + ] + }, + "properties": { + "timestamp": "2009-08-15T07:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045919, + -3.830433004 + ] + }, + "properties": { + "timestamp": "2009-08-15T09:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045496, + -3.830697003 + ] + }, + "properties": { + "timestamp": "2009-08-15T10:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045622, + -3.830429997 + ] + }, + "properties": { + "timestamp": "2009-08-15T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.045687, + -3.830473002 + ] + }, + "properties": { + "timestamp": "2009-08-15T13:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.047835, + -3.829869998 + ] + }, + "properties": { + "timestamp": "2009-08-15T15:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.050598, + -3.834268002 + ] + }, + "properties": { + "timestamp": "2009-08-15T16:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05238, + -3.832889004 + ] + }, + "properties": { + "timestamp": "2009-08-15T18:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052327, + -3.832865005 + ] + }, + "properties": { + "timestamp": "2009-08-15T19:32:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052409, + -3.832829004 + ] + }, + "properties": { + "timestamp": "2009-08-15T21:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053145, + -3.832539997 + ] + }, + "properties": { + "timestamp": "2009-08-15T22:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053813, + -3.832302001 + ] + }, + "properties": { + "timestamp": "2009-08-16T00:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054264, + -3.832270996 + ] + }, + "properties": { + "timestamp": "2009-08-16T01:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.054297, + -3.832337996 + ] + }, + "properties": { + "timestamp": "2009-08-16T03:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052966, + -3.825507998 + ] + }, + "properties": { + "timestamp": "2009-08-16T04:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052608, + -3.823360996 + ] + }, + "properties": { + "timestamp": "2009-08-16T06:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.053906, + -3.824605998 + ] + }, + "properties": { + "timestamp": "2009-08-16T07:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058529, + -3.825835002 + ] + }, + "properties": { + "timestamp": "2009-08-16T09:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061825, + -3.825020998 + ] + }, + "properties": { + "timestamp": "2009-08-16T10:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.067485, + -3.822070999 + ] + }, + "properties": { + "timestamp": "2009-08-16T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.07747, + -3.819176998 + ] + }, + "properties": { + "timestamp": "2009-08-16T13:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.078267, + -3.817937003 + ] + }, + "properties": { + "timestamp": "2009-08-16T15:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.079976, + -3.816711002 + ] + }, + "properties": { + "timestamp": "2009-08-16T16:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.093481, + -3.818577999 + ] + }, + "properties": { + "timestamp": "2009-08-16T18:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.094995, + -3.819481002 + ] + }, + "properties": { + "timestamp": "2009-08-16T19:33:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.095487, + -3.819179998 + ] + }, + "properties": { + "timestamp": "2009-08-16T21:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.097144, + -3.818962996 + ] + }, + "properties": { + "timestamp": "2009-08-16T22:31:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0979, + -3.819387003 + ] + }, + "properties": { + "timestamp": "2009-08-17T00:02:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.097904, + -3.819481002 + ] + }, + "properties": { + "timestamp": "2009-08-17T01:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.097221, + -3.819541997 + ] + }, + "properties": { + "timestamp": "2009-08-17T03:03:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.096204, + -3.819072 + ] + }, + "properties": { + "timestamp": "2009-08-17T05:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.090527, + -3.818283004 + ] + }, + "properties": { + "timestamp": "2009-08-17T06:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.090544, + -3.818300003 + ] + }, + "properties": { + "timestamp": "2009-08-17T08:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082666, + -3.819543 + ] + }, + "properties": { + "timestamp": "2009-08-17T09:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.080929, + -3.818697004 + ] + }, + "properties": { + "timestamp": "2009-08-17T11:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.080025, + -3.818365005 + ] + }, + "properties": { + "timestamp": "2009-08-17T12:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.079826, + -3.817911998 + ] + }, + "properties": { + "timestamp": "2009-08-17T14:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.078796, + -3.815649005 + ] + }, + "properties": { + "timestamp": "2009-08-17T15:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.079622, + -3.817236004 + ] + }, + "properties": { + "timestamp": "2009-08-17T17:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.997872, + -3.829223997 + ] + }, + "properties": { + "timestamp": "2009-08-22T05:30:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03101, + -3.776451003 + ] + }, + "properties": { + "timestamp": "2009-08-23T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.028695, + -3.774272004 + ] + }, + "properties": { + "timestamp": "2009-08-25T12:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.043359, + -3.768139003 + ] + }, + "properties": { + "timestamp": "2009-08-28T12:00:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.057772, + -3.787413998 + ] + }, + "properties": { + "timestamp": "2009-08-30T12:01:00", + "year": 2009, + "month": 8, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.041337, + -3.773676003 + ] + }, + "properties": { + "timestamp": "2009-09-02T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.048206, + -3.772836001 + ] + }, + "properties": { + "timestamp": "2009-09-04T12:01:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03304, + -3.775075004 + ] + }, + "properties": { + "timestamp": "2009-09-07T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.039567, + -3.770513997 + ] + }, + "properties": { + "timestamp": "2009-09-09T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.030644, + -3.774461001 + ] + }, + "properties": { + "timestamp": "2009-09-11T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.024109, + -3.706155999 + ] + }, + "properties": { + "timestamp": "2009-09-13T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03127, + -3.772796 + ] + }, + "properties": { + "timestamp": "2009-09-15T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.032043, + -3.778736005 + ] + }, + "properties": { + "timestamp": "2009-09-17T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04176, + -3.781425998 + ] + }, + "properties": { + "timestamp": "2009-09-19T12:01:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.031726, + -3.774786998 + ] + }, + "properties": { + "timestamp": "2009-09-22T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.041545, + -3.773838004 + ] + }, + "properties": { + "timestamp": "2009-09-24T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.033508, + -3.771030997 + ] + }, + "properties": { + "timestamp": "2009-09-27T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.033179, + -3.770767003 + ] + }, + "properties": { + "timestamp": "2009-09-29T12:00:00", + "year": 2009, + "month": 9, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.03256, + -3.772762002 + ] + }, + "properties": { + "timestamp": "2009-10-01T12:01:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.032174, + -3.777071999 + ] + }, + "properties": { + "timestamp": "2009-10-04T12:01:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.033419, + -3.775738997 + ] + }, + "properties": { + "timestamp": "2009-10-07T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0455, + -3.776285001 + ] + }, + "properties": { + "timestamp": "2009-10-10T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06119, + -3.785175997 + ] + }, + "properties": { + "timestamp": "2009-10-12T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.051192, + -3.777438004 + ] + }, + "properties": { + "timestamp": "2009-10-14T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085319, + -3.749593997 + ] + }, + "properties": { + "timestamp": "2009-10-16T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.068343, + -3.763151005 + ] + }, + "properties": { + "timestamp": "2009-10-19T12:01:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06925, + -3.756526 + ] + }, + "properties": { + "timestamp": "2009-10-21T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.04814, + -3.779219996 + ] + }, + "properties": { + "timestamp": "2009-10-23T12:01:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.086584, + -3.824520004 + ] + }, + "properties": { + "timestamp": "2009-10-26T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.228442, + -3.853521997 + ] + }, + "properties": { + "timestamp": "2009-10-28T12:00:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.314913, + -3.916974003 + ] + }, + "properties": { + "timestamp": "2009-10-29T12:01:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.492826, + -3.966468996 + ] + }, + "properties": { + "timestamp": "2009-10-31T12:01:00", + "year": 2009, + "month": 10, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.382072, + -3.930358 + ] + }, + "properties": { + "timestamp": "2009-11-02T12:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471375, + -3.933562999 + ] + }, + "properties": { + "timestamp": "2009-11-03T12:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47148, + -3.934548001 + ] + }, + "properties": { + "timestamp": "2009-11-03T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473177, + -3.933530001 + ] + }, + "properties": { + "timestamp": "2009-11-03T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474504, + -3.931935 + ] + }, + "properties": { + "timestamp": "2009-11-03T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470292, + -3.929121 + ] + }, + "properties": { + "timestamp": "2009-11-04T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467, + -3.927989999 + ] + }, + "properties": { + "timestamp": "2009-11-04T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.462362, + -3.928635004 + ] + }, + "properties": { + "timestamp": "2009-11-04T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.461483, + -3.930592998 + ] + }, + "properties": { + "timestamp": "2009-11-04T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467415, + -3.933837003 + ] + }, + "properties": { + "timestamp": "2009-11-04T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473633, + -3.933211998 + ] + }, + "properties": { + "timestamp": "2009-11-04T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470776, + -3.928723999 + ] + }, + "properties": { + "timestamp": "2009-11-04T21:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471195, + -3.928166004 + ] + }, + "properties": { + "timestamp": "2009-11-05T00:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.466886, + -3.931902005 + ] + }, + "properties": { + "timestamp": "2009-11-05T03:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.462463, + -3.936862001 + ] + }, + "properties": { + "timestamp": "2009-11-05T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.461047, + -3.939693997 + ] + }, + "properties": { + "timestamp": "2009-11-05T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.462292, + -3.941152004 + ] + }, + "properties": { + "timestamp": "2009-11-05T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478101, + -3.939996998 + ] + }, + "properties": { + "timestamp": "2009-11-05T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481547, + -3.937828004 + ] + }, + "properties": { + "timestamp": "2009-11-05T19:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478446, + -3.940189004 + ] + }, + "properties": { + "timestamp": "2009-11-05T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.448145, + -3.926301004 + ] + }, + "properties": { + "timestamp": "2009-11-06T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.341158, + -3.907736 + ] + }, + "properties": { + "timestamp": "2009-11-06T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.32679, + -3.909859997 + ] + }, + "properties": { + "timestamp": "2009-11-06T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.323698, + -3.912822005 + ] + }, + "properties": { + "timestamp": "2009-11-06T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.323568, + -3.914329997 + ] + }, + "properties": { + "timestamp": "2009-11-06T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.327266, + -3.912727001 + ] + }, + "properties": { + "timestamp": "2009-11-06T17:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.327299, + -3.912749997 + ] + }, + "properties": { + "timestamp": "2009-11-06T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.327441, + -3.911219002 + ] + }, + "properties": { + "timestamp": "2009-11-06T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.327413, + -3.909811 + ] + }, + "properties": { + "timestamp": "2009-11-07T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.311731, + -3.915966997 + ] + }, + "properties": { + "timestamp": "2009-11-07T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.300094, + -3.915331997 + ] + }, + "properties": { + "timestamp": "2009-11-07T08:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.298698, + -3.912000998 + ] + }, + "properties": { + "timestamp": "2009-11-07T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.310457, + -3.916644001 + ] + }, + "properties": { + "timestamp": "2009-11-07T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.317847, + -3.924541002 + ] + }, + "properties": { + "timestamp": "2009-11-07T17:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.324215, + -3.926454001 + ] + }, + "properties": { + "timestamp": "2009-11-07T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.325033, + -3.925628003 + ] + }, + "properties": { + "timestamp": "2009-11-07T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.323954, + -3.926321999 + ] + }, + "properties": { + "timestamp": "2009-11-08T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.314254, + -3.920600996 + ] + }, + "properties": { + "timestamp": "2009-11-08T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.313863, + -3.922948003 + ] + }, + "properties": { + "timestamp": "2009-11-08T09:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.315828, + -3.923486004 + ] + }, + "properties": { + "timestamp": "2009-11-08T12:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.321777, + -3.926658997 + ] + }, + "properties": { + "timestamp": "2009-11-08T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.327458, + -3.926559997 + ] + }, + "properties": { + "timestamp": "2009-11-08T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.328857, + -3.927338999 + ] + }, + "properties": { + "timestamp": "2009-11-08T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.330554, + -3.927227003 + ] + }, + "properties": { + "timestamp": "2009-11-09T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.33693, + -3.934875003 + ] + }, + "properties": { + "timestamp": "2009-11-09T04:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.338021, + -3.977421 + ] + }, + "properties": { + "timestamp": "2009-11-09T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.341207, + -3.985203002 + ] + }, + "properties": { + "timestamp": "2009-11-09T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.361873, + -4.011519998 + ] + }, + "properties": { + "timestamp": "2009-11-09T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392684, + -4.039009001 + ] + }, + "properties": { + "timestamp": "2009-11-09T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.42144, + -4.034703005 + ] + }, + "properties": { + "timestamp": "2009-11-09T19:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.419153, + -4.033289 + ] + }, + "properties": { + "timestamp": "2009-11-09T22:02:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396411, + -4.047384997 + ] + }, + "properties": { + "timestamp": "2009-11-10T03:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.387667, + -4.054020002 + ] + }, + "properties": { + "timestamp": "2009-11-10T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.390975, + -4.062091997 + ] + }, + "properties": { + "timestamp": "2009-11-10T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392546, + -4.059835997 + ] + }, + "properties": { + "timestamp": "2009-11-10T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398075, + -4.069688004 + ] + }, + "properties": { + "timestamp": "2009-11-10T17:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397705, + -4.073451 + ] + }, + "properties": { + "timestamp": "2009-11-10T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396269, + -4.075050998 + ] + }, + "properties": { + "timestamp": "2009-11-10T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393306, + -4.075327998 + ] + }, + "properties": { + "timestamp": "2009-11-11T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.389233, + -4.060366996 + ] + }, + "properties": { + "timestamp": "2009-11-11T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395089, + -4.066211002 + ] + }, + "properties": { + "timestamp": "2009-11-11T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39598, + -4.068457998 + ] + }, + "properties": { + "timestamp": "2009-11-11T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397917, + -4.069818003 + ] + }, + "properties": { + "timestamp": "2009-11-11T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397998, + -4.070032998 + ] + }, + "properties": { + "timestamp": "2009-11-11T19:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3995, + -4.074902996 + ] + }, + "properties": { + "timestamp": "2009-11-12T00:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399642, + -4.076058999 + ] + }, + "properties": { + "timestamp": "2009-11-12T03:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395549, + -4.067907997 + ] + }, + "properties": { + "timestamp": "2009-11-12T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39679, + -4.069829004 + ] + }, + "properties": { + "timestamp": "2009-11-12T09:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393795, + -4.06543 + ] + }, + "properties": { + "timestamp": "2009-11-12T12:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398486, + -4.069915002 + ] + }, + "properties": { + "timestamp": "2009-11-12T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400151, + -4.074157996 + ] + }, + "properties": { + "timestamp": "2009-11-12T21:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400346, + -4.073536002 + ] + }, + "properties": { + "timestamp": "2009-11-13T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.386979, + -4.052225001 + ] + }, + "properties": { + "timestamp": "2009-11-13T05:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.388167, + -4.050817001 + ] + }, + "properties": { + "timestamp": "2009-11-13T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.389001, + -4.053037001 + ] + }, + "properties": { + "timestamp": "2009-11-13T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392631, + -4.060867001 + ] + }, + "properties": { + "timestamp": "2009-11-13T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39943, + -4.068091004 + ] + }, + "properties": { + "timestamp": "2009-11-13T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399288, + -4.068959 + ] + }, + "properties": { + "timestamp": "2009-11-14T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3995, + -4.069605999 + ] + }, + "properties": { + "timestamp": "2009-11-14T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399618, + -4.069835998 + ] + }, + "properties": { + "timestamp": "2009-11-15T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398739, + -4.067677 + ] + }, + "properties": { + "timestamp": "2009-11-15T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39825, + -4.068411997 + ] + }, + "properties": { + "timestamp": "2009-11-15T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397583, + -4.067871002 + ] + }, + "properties": { + "timestamp": "2009-11-15T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398356, + -4.066643998 + ] + }, + "properties": { + "timestamp": "2009-11-15T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398958, + -4.068449001 + ] + }, + "properties": { + "timestamp": "2009-11-15T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399117, + -4.068433003 + ] + }, + "properties": { + "timestamp": "2009-11-16T00:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397607, + -4.066826004 + ] + }, + "properties": { + "timestamp": "2009-11-16T03:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39574, + -4.066495 + ] + }, + "properties": { + "timestamp": "2009-11-16T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398665, + -4.064502996 + ] + }, + "properties": { + "timestamp": "2009-11-16T09:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396521, + -4.065800001 + ] + }, + "properties": { + "timestamp": "2009-11-16T12:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398344, + -4.066989998 + ] + }, + "properties": { + "timestamp": "2009-11-16T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400081, + -4.069011001 + ] + }, + "properties": { + "timestamp": "2009-11-16T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399003, + -4.068460001 + ] + }, + "properties": { + "timestamp": "2009-11-16T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399215, + -4.067529004 + ] + }, + "properties": { + "timestamp": "2009-11-17T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394816, + -4.065523004 + ] + }, + "properties": { + "timestamp": "2009-11-17T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394995, + -4.064603996 + ] + }, + "properties": { + "timestamp": "2009-11-17T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394824, + -4.066747001 + ] + }, + "properties": { + "timestamp": "2009-11-17T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39576, + -4.067112003 + ] + }, + "properties": { + "timestamp": "2009-11-17T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398966, + -4.068427002 + ] + }, + "properties": { + "timestamp": "2009-11-17T17:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399674, + -4.069852004 + ] + }, + "properties": { + "timestamp": "2009-11-17T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400863, + -4.070406996 + ] + }, + "properties": { + "timestamp": "2009-11-17T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400842, + -4.070396002 + ] + }, + "properties": { + "timestamp": "2009-11-18T02:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.390922, + -4.062969999 + ] + }, + "properties": { + "timestamp": "2009-11-18T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39043, + -4.064678002 + ] + }, + "properties": { + "timestamp": "2009-11-18T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392729, + -4.063606997 + ] + }, + "properties": { + "timestamp": "2009-11-18T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398592, + -4.067226996 + ] + }, + "properties": { + "timestamp": "2009-11-18T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.403031, + -4.081008001 + ] + }, + "properties": { + "timestamp": "2009-11-18T19:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400651, + -4.074260998 + ] + }, + "properties": { + "timestamp": "2009-11-18T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400606, + -4.07201 + ] + }, + "properties": { + "timestamp": "2009-11-19T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395968, + -4.069251997 + ] + }, + "properties": { + "timestamp": "2009-11-19T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393823, + -4.063726996 + ] + }, + "properties": { + "timestamp": "2009-11-19T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392887, + -4.061685996 + ] + }, + "properties": { + "timestamp": "2009-11-19T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394482, + -4.062495001 + ] + }, + "properties": { + "timestamp": "2009-11-19T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400606, + -4.074254002 + ] + }, + "properties": { + "timestamp": "2009-11-19T17:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.402429, + -4.079509002 + ] + }, + "properties": { + "timestamp": "2009-11-19T21:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400338, + -4.078032004 + ] + }, + "properties": { + "timestamp": "2009-11-20T03:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394051, + -4.065877997 + ] + }, + "properties": { + "timestamp": "2009-11-20T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392851, + -4.061976002 + ] + }, + "properties": { + "timestamp": "2009-11-20T09:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395825, + -4.063124996 + ] + }, + "properties": { + "timestamp": "2009-11-20T12:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397835, + -4.062368002 + ] + }, + "properties": { + "timestamp": "2009-11-20T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.400244, + -4.068638999 + ] + }, + "properties": { + "timestamp": "2009-11-20T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.403821, + -4.083273004 + ] + }, + "properties": { + "timestamp": "2009-11-20T22:02:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.404952, + -4.084945 + ] + }, + "properties": { + "timestamp": "2009-11-21T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396122, + -4.072389002 + ] + }, + "properties": { + "timestamp": "2009-11-21T04:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393945, + -4.067719004 + ] + }, + "properties": { + "timestamp": "2009-11-21T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395605, + -4.063058003 + ] + }, + "properties": { + "timestamp": "2009-11-21T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394995, + -4.066313003 + ] + }, + "properties": { + "timestamp": "2009-11-21T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399581, + -4.067489003 + ] + }, + "properties": { + "timestamp": "2009-11-21T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399776, + -4.068608999 + ] + }, + "properties": { + "timestamp": "2009-11-21T19:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399227, + -4.070853998 + ] + }, + "properties": { + "timestamp": "2009-11-22T00:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398787, + -4.071219002 + ] + }, + "properties": { + "timestamp": "2009-11-22T03:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393551, + -4.066971996 + ] + }, + "properties": { + "timestamp": "2009-11-22T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395296, + -4.064336004 + ] + }, + "properties": { + "timestamp": "2009-11-22T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393791, + -4.066620003 + ] + }, + "properties": { + "timestamp": "2009-11-22T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398193, + -4.067741 + ] + }, + "properties": { + "timestamp": "2009-11-22T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398462, + -4.065226004 + ] + }, + "properties": { + "timestamp": "2009-11-22T19:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3988, + -4.063700996 + ] + }, + "properties": { + "timestamp": "2009-11-22T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398608, + -4.064304003 + ] + }, + "properties": { + "timestamp": "2009-11-23T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39366, + -4.065124998 + ] + }, + "properties": { + "timestamp": "2009-11-23T04:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393827, + -4.064359004 + ] + }, + "properties": { + "timestamp": "2009-11-23T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393461, + -4.063985997 + ] + }, + "properties": { + "timestamp": "2009-11-23T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395015, + -4.064626004 + ] + }, + "properties": { + "timestamp": "2009-11-23T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.405009, + -4.067794002 + ] + }, + "properties": { + "timestamp": "2009-11-23T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.403312, + -4.074651997 + ] + }, + "properties": { + "timestamp": "2009-11-23T19:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.407096, + -4.089303999 + ] + }, + "properties": { + "timestamp": "2009-11-23T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.405139, + -4.089989997 + ] + }, + "properties": { + "timestamp": "2009-11-24T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396879, + -4.091860998 + ] + }, + "properties": { + "timestamp": "2009-11-24T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.390491, + -4.080348998 + ] + }, + "properties": { + "timestamp": "2009-11-24T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.386755, + -4.067171998 + ] + }, + "properties": { + "timestamp": "2009-11-24T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.389596, + -4.070241996 + ] + }, + "properties": { + "timestamp": "2009-11-24T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399105, + -4.068588998 + ] + }, + "properties": { + "timestamp": "2009-11-24T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399882, + -4.069921 + ] + }, + "properties": { + "timestamp": "2009-11-24T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.411271, + -4.065972997 + ] + }, + "properties": { + "timestamp": "2009-11-25T01:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.403931, + -4.067561999 + ] + }, + "properties": { + "timestamp": "2009-11-25T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392362, + -4.063462997 + ] + }, + "properties": { + "timestamp": "2009-11-25T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397355, + -4.065060996 + ] + }, + "properties": { + "timestamp": "2009-11-25T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.404236, + -4.067353003 + ] + }, + "properties": { + "timestamp": "2009-11-25T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40142, + -4.064939002 + ] + }, + "properties": { + "timestamp": "2009-11-25T17:02:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.41759, + -4.061323996 + ] + }, + "properties": { + "timestamp": "2009-11-25T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.428101, + -4.061683002 + ] + }, + "properties": { + "timestamp": "2009-11-25T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.428849, + -4.061853998 + ] + }, + "properties": { + "timestamp": "2009-11-26T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.404252, + -4.075504996 + ] + }, + "properties": { + "timestamp": "2009-11-26T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394629, + -4.065691003 + ] + }, + "properties": { + "timestamp": "2009-11-26T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396, + -4.065020002 + ] + }, + "properties": { + "timestamp": "2009-11-26T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397424, + -4.065412003 + ] + }, + "properties": { + "timestamp": "2009-11-26T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399304, + -4.068367996 + ] + }, + "properties": { + "timestamp": "2009-11-26T17:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399272, + -4.068420997 + ] + }, + "properties": { + "timestamp": "2009-11-26T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40271, + -4.070484997 + ] + }, + "properties": { + "timestamp": "2009-11-27T01:02:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395028, + -4.066836997 + ] + }, + "properties": { + "timestamp": "2009-11-27T05:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395854, + -4.067284002 + ] + }, + "properties": { + "timestamp": "2009-11-27T08:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39384, + -4.066838997 + ] + }, + "properties": { + "timestamp": "2009-11-27T11:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395638, + -4.064386004 + ] + }, + "properties": { + "timestamp": "2009-11-27T14:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399325, + -4.066079002 + ] + }, + "properties": { + "timestamp": "2009-11-27T17:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399089, + -4.068419004 + ] + }, + "properties": { + "timestamp": "2009-11-27T20:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.40037, + -4.068554001 + ] + }, + "properties": { + "timestamp": "2009-11-27T23:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39869, + -4.065598998 + ] + }, + "properties": { + "timestamp": "2009-11-28T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.3946, + -4.066405 + ] + }, + "properties": { + "timestamp": "2009-11-28T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394576, + -4.063290996 + ] + }, + "properties": { + "timestamp": "2009-11-28T09:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395048, + -4.064506996 + ] + }, + "properties": { + "timestamp": "2009-11-28T12:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396765, + -4.066045003 + ] + }, + "properties": { + "timestamp": "2009-11-28T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398527, + -4.066677004 + ] + }, + "properties": { + "timestamp": "2009-11-28T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397888, + -4.067465001 + ] + }, + "properties": { + "timestamp": "2009-11-29T00:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394149, + -4.066548998 + ] + }, + "properties": { + "timestamp": "2009-11-29T04:01:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.392529, + -4.065702998 + ] + }, + "properties": { + "timestamp": "2009-11-29T07:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393624, + -4.066246999 + ] + }, + "properties": { + "timestamp": "2009-11-29T10:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394271, + -4.067581 + ] + }, + "properties": { + "timestamp": "2009-11-29T13:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398454, + -4.067709002 + ] + }, + "properties": { + "timestamp": "2009-11-29T16:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39858, + -4.068002 + ] + }, + "properties": { + "timestamp": "2009-11-29T19:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397823, + -4.069900998 + ] + }, + "properties": { + "timestamp": "2009-11-29T22:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398706, + -4.068835002 + ] + }, + "properties": { + "timestamp": "2009-11-30T02:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.396147, + -4.069476003 + ] + }, + "properties": { + "timestamp": "2009-11-30T06:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393612, + -4.065914 + ] + }, + "properties": { + "timestamp": "2009-11-30T09:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.394995, + -4.065040997 + ] + }, + "properties": { + "timestamp": "2009-11-30T12:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398474, + -4.066234996 + ] + }, + "properties": { + "timestamp": "2009-11-30T15:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.401078, + -4.068348001 + ] + }, + "properties": { + "timestamp": "2009-11-30T18:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.403695, + -4.067826996 + ] + }, + "properties": { + "timestamp": "2009-11-30T21:00:00", + "year": 2009, + "month": 11, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.398966, + -4.068461996 + ] + }, + "properties": { + "timestamp": "2009-12-01T01:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39316, + -4.06578 + ] + }, + "properties": { + "timestamp": "2009-12-01T04:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.391838, + -4.064110998 + ] + }, + "properties": { + "timestamp": "2009-12-01T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.38905, + -4.062990005 + ] + }, + "properties": { + "timestamp": "2009-12-01T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393254, + -4.064737004 + ] + }, + "properties": { + "timestamp": "2009-12-01T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.397847, + -4.067262002 + ] + }, + "properties": { + "timestamp": "2009-12-01T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.402673, + -4.069102 + ] + }, + "properties": { + "timestamp": "2009-12-01T20:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.399398, + -4.063425999 + ] + }, + "properties": { + "timestamp": "2009-12-02T00:02:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.395174, + -4.063401002 + ] + }, + "properties": { + "timestamp": "2009-12-02T04:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393644, + -4.063798997 + ] + }, + "properties": { + "timestamp": "2009-12-02T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.393095, + -4.064565002 + ] + }, + "properties": { + "timestamp": "2009-12-02T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.39648, + -4.064804997 + ] + }, + "properties": { + "timestamp": "2009-12-02T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.407841, + -4.062623997 + ] + }, + "properties": { + "timestamp": "2009-12-02T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.450639, + -4.033210003 + ] + }, + "properties": { + "timestamp": "2009-12-02T19:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.447078, + -4.022719004 + ] + }, + "properties": { + "timestamp": "2009-12-02T22:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.448983, + -4.025074002 + ] + }, + "properties": { + "timestamp": "2009-12-03T02:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.448263, + -4.039991001 + ] + }, + "properties": { + "timestamp": "2009-12-03T05:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.440828, + -4.041978001 + ] + }, + "properties": { + "timestamp": "2009-12-03T08:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.441638, + -4.042562004 + ] + }, + "properties": { + "timestamp": "2009-12-03T11:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.440133, + -4.04252 + ] + }, + "properties": { + "timestamp": "2009-12-03T14:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.449121, + -4.031413002 + ] + }, + "properties": { + "timestamp": "2009-12-03T17:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.450586, + -4.031494997 + ] + }, + "properties": { + "timestamp": "2009-12-03T21:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.449658, + -4.035238997 + ] + }, + "properties": { + "timestamp": "2009-12-04T02:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.425659, + -4.046487997 + ] + }, + "properties": { + "timestamp": "2009-12-04T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.415629, + -4.048491004 + ] + }, + "properties": { + "timestamp": "2009-12-04T09:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.415055, + -4.049394002 + ] + }, + "properties": { + "timestamp": "2009-12-04T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.415137, + -4.053427997 + ] + }, + "properties": { + "timestamp": "2009-12-04T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.447986, + -4.032311001 + ] + }, + "properties": { + "timestamp": "2009-12-04T18:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.450806, + -4.029427999 + ] + }, + "properties": { + "timestamp": "2009-12-04T23:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.455404, + -4.028442001 + ] + }, + "properties": { + "timestamp": "2009-12-05T03:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.444344, + -4.037204001 + ] + }, + "properties": { + "timestamp": "2009-12-05T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.453389, + -4.049584002 + ] + }, + "properties": { + "timestamp": "2009-12-05T09:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467338, + -4.050202004 + ] + }, + "properties": { + "timestamp": "2009-12-05T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469259, + -4.047040004 + ] + }, + "properties": { + "timestamp": "2009-12-05T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469364, + -4.045844001 + ] + }, + "properties": { + "timestamp": "2009-12-05T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46866, + -4.044807003 + ] + }, + "properties": { + "timestamp": "2009-12-05T21:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469023, + -4.046010996 + ] + }, + "properties": { + "timestamp": "2009-12-06T02:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467314, + -4.050202001 + ] + }, + "properties": { + "timestamp": "2009-12-06T05:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467993, + -4.047159002 + ] + }, + "properties": { + "timestamp": "2009-12-06T08:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.466003, + -4.048200004 + ] + }, + "properties": { + "timestamp": "2009-12-06T09:09:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.464925, + -4.049190996 + ] + }, + "properties": { + "timestamp": "2009-12-06T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467855, + -4.046180002 + ] + }, + "properties": { + "timestamp": "2009-12-06T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470125, + -4.046413999 + ] + }, + "properties": { + "timestamp": "2009-12-06T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470435, + -4.046807999 + ] + }, + "properties": { + "timestamp": "2009-12-06T21:08:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470532, + -4.047269 + ] + }, + "properties": { + "timestamp": "2009-12-07T01:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467517, + -4.047448997 + ] + }, + "properties": { + "timestamp": "2009-12-07T05:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46853, + -4.046094998 + ] + }, + "properties": { + "timestamp": "2009-12-07T08:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.465267, + -4.047643999 + ] + }, + "properties": { + "timestamp": "2009-12-07T11:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468705, + -4.053299997 + ] + }, + "properties": { + "timestamp": "2009-12-07T14:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468835, + -4.044676002 + ] + }, + "properties": { + "timestamp": "2009-12-07T17:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486947, + -4.021913003 + ] + }, + "properties": { + "timestamp": "2009-12-07T20:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.497945, + -4.022588001 + ] + }, + "properties": { + "timestamp": "2009-12-08T01:02:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.505758, + -3.989918997 + ] + }, + "properties": { + "timestamp": "2009-12-08T04:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.531966, + -3.943066997 + ] + }, + "properties": { + "timestamp": "2009-12-08T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.532983, + -3.939899997 + ] + }, + "properties": { + "timestamp": "2009-12-08T09:07:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.516187, + -3.900843998 + ] + }, + "properties": { + "timestamp": "2009-12-08T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.50142, + -3.917485999 + ] + }, + "properties": { + "timestamp": "2009-12-08T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487504, + -3.949407996 + ] + }, + "properties": { + "timestamp": "2009-12-08T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479773, + -4.006109999 + ] + }, + "properties": { + "timestamp": "2009-12-08T23:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467334, + -4.046768003 + ] + }, + "properties": { + "timestamp": "2009-12-09T03:02:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.459351, + -4.052506002 + ] + }, + "properties": { + "timestamp": "2009-12-09T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.462341, + -4.055545996 + ] + }, + "properties": { + "timestamp": "2009-12-09T09:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.460181, + -4.060105998 + ] + }, + "properties": { + "timestamp": "2009-12-09T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.461047, + -4.065045997 + ] + }, + "properties": { + "timestamp": "2009-12-09T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470915, + -4.068237001 + ] + }, + "properties": { + "timestamp": "2009-12-09T19:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473702, + -4.066938004 + ] + }, + "properties": { + "timestamp": "2009-12-09T22:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.475488, + -4.064015999 + ] + }, + "properties": { + "timestamp": "2009-12-10T01:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.466573, + -4.059159999 + ] + }, + "properties": { + "timestamp": "2009-12-10T05:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467371, + -4.055592 + ] + }, + "properties": { + "timestamp": "2009-12-10T08:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470931, + -4.055305997 + ] + }, + "properties": { + "timestamp": "2009-12-10T11:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471639, + -4.056732002 + ] + }, + "properties": { + "timestamp": "2009-12-10T14:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.475281, + -4.057781004 + ] + }, + "properties": { + "timestamp": "2009-12-10T17:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.476815, + -4.060284003 + ] + }, + "properties": { + "timestamp": "2009-12-10T21:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478906, + -4.061164996 + ] + }, + "properties": { + "timestamp": "2009-12-11T00:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.475533, + -4.058014 + ] + }, + "properties": { + "timestamp": "2009-12-11T04:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474117, + -4.058779999 + ] + }, + "properties": { + "timestamp": "2009-12-11T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471606, + -4.056493999 + ] + }, + "properties": { + "timestamp": "2009-12-11T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471924, + -4.058948996 + ] + }, + "properties": { + "timestamp": "2009-12-11T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474666, + -4.059592003 + ] + }, + "properties": { + "timestamp": "2009-12-11T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474813, + -4.059603002 + ] + }, + "properties": { + "timestamp": "2009-12-11T19:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473824, + -4.059076 + ] + }, + "properties": { + "timestamp": "2009-12-11T22:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474243, + -4.057972 + ] + }, + "properties": { + "timestamp": "2009-12-12T01:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46862, + -4.054789997 + ] + }, + "properties": { + "timestamp": "2009-12-12T04:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.472571, + -4.054127998 + ] + }, + "properties": { + "timestamp": "2009-12-12T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47085, + -4.055176996 + ] + }, + "properties": { + "timestamp": "2009-12-12T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.471, + -4.055736001 + ] + }, + "properties": { + "timestamp": "2009-12-12T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467879, + -4.044859003 + ] + }, + "properties": { + "timestamp": "2009-12-12T17:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468567, + -4.044454996 + ] + }, + "properties": { + "timestamp": "2009-12-12T22:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468583, + -4.044473004 + ] + }, + "properties": { + "timestamp": "2009-12-13T01:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.464974, + -4.047246003 + ] + }, + "properties": { + "timestamp": "2009-12-13T04:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469438, + -4.046914004 + ] + }, + "properties": { + "timestamp": "2009-12-13T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468132, + -4.054834 + ] + }, + "properties": { + "timestamp": "2009-12-13T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.472795, + -4.055156998 + ] + }, + "properties": { + "timestamp": "2009-12-13T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.477087, + -4.057645997 + ] + }, + "properties": { + "timestamp": "2009-12-13T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.476868, + -4.055339003 + ] + }, + "properties": { + "timestamp": "2009-12-13T20:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486483, + -4.050318999 + ] + }, + "properties": { + "timestamp": "2009-12-14T00:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484452, + -4.050159 + ] + }, + "properties": { + "timestamp": "2009-12-14T03:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473442, + -4.055012996 + ] + }, + "properties": { + "timestamp": "2009-12-14T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469552, + -4.053813999 + ] + }, + "properties": { + "timestamp": "2009-12-14T09:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467346, + -4.051933998 + ] + }, + "properties": { + "timestamp": "2009-12-14T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.466581, + -4.045812004 + ] + }, + "properties": { + "timestamp": "2009-12-14T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468274, + -4.025316999 + ] + }, + "properties": { + "timestamp": "2009-12-14T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469796, + -4.024916002 + ] + }, + "properties": { + "timestamp": "2009-12-14T22:02:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469637, + -4.024669003 + ] + }, + "properties": { + "timestamp": "2009-12-15T02:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.467192, + -4.048717002 + ] + }, + "properties": { + "timestamp": "2009-12-15T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.46842, + -4.048553998 + ] + }, + "properties": { + "timestamp": "2009-12-15T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469312, + -4.047554996 + ] + }, + "properties": { + "timestamp": "2009-12-15T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469743, + -4.045110003 + ] + }, + "properties": { + "timestamp": "2009-12-15T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470243, + -4.044697 + ] + }, + "properties": { + "timestamp": "2009-12-15T19:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470789, + -4.044751996 + ] + }, + "properties": { + "timestamp": "2009-12-16T02:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.468245, + -4.050394999 + ] + }, + "properties": { + "timestamp": "2009-12-16T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.461348, + -4.049891001 + ] + }, + "properties": { + "timestamp": "2009-12-16T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.461674, + -4.047978002 + ] + }, + "properties": { + "timestamp": "2009-12-16T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.466463, + -4.043105003 + ] + }, + "properties": { + "timestamp": "2009-12-16T16:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.470793, + -4.044409999 + ] + }, + "properties": { + "timestamp": "2009-12-16T20:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473857, + -4.042344997 + ] + }, + "properties": { + "timestamp": "2009-12-16T23:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473787, + -4.042345004 + ] + }, + "properties": { + "timestamp": "2009-12-17T02:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.473893, + -4.044398004 + ] + }, + "properties": { + "timestamp": "2009-12-17T05:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47439, + -4.046650999 + ] + }, + "properties": { + "timestamp": "2009-12-17T08:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.464852, + -4.050338 + ] + }, + "properties": { + "timestamp": "2009-12-17T11:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.460482, + -4.051105996 + ] + }, + "properties": { + "timestamp": "2009-12-17T14:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.469556, + -4.044655997 + ] + }, + "properties": { + "timestamp": "2009-12-17T17:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47039, + -4.044583996 + ] + }, + "properties": { + "timestamp": "2009-12-17T20:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474264, + -4.042084 + ] + }, + "properties": { + "timestamp": "2009-12-17T23:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474654, + -4.041711997 + ] + }, + "properties": { + "timestamp": "2009-12-18T05:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.474723, + -4.041238996 + ] + }, + "properties": { + "timestamp": "2009-12-18T08:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.477266, + -4.044012001 + ] + }, + "properties": { + "timestamp": "2009-12-18T11:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479769, + -4.044988003 + ] + }, + "properties": { + "timestamp": "2009-12-18T14:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479793, + -4.044475001 + ] + }, + "properties": { + "timestamp": "2009-12-18T17:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.48658, + -4.049967001 + ] + }, + "properties": { + "timestamp": "2009-12-18T20:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.485893, + -4.049843996 + ] + }, + "properties": { + "timestamp": "2009-12-18T23:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.485844, + -4.049751997 + ] + }, + "properties": { + "timestamp": "2009-12-19T02:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.47878, + -4.044912001 + ] + }, + "properties": { + "timestamp": "2009-12-19T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478874, + -4.041804001 + ] + }, + "properties": { + "timestamp": "2009-12-19T09:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478988, + -4.043661004 + ] + }, + "properties": { + "timestamp": "2009-12-19T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482137, + -4.043462996 + ] + }, + "properties": { + "timestamp": "2009-12-19T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.482015, + -4.044580997 + ] + }, + "properties": { + "timestamp": "2009-12-19T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483748, + -4.047256001 + ] + }, + "properties": { + "timestamp": "2009-12-19T21:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.484049, + -4.04712 + ] + }, + "properties": { + "timestamp": "2009-12-20T00:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487451, + -4.048676003 + ] + }, + "properties": { + "timestamp": "2009-12-20T03:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481628, + -4.049771999 + ] + }, + "properties": { + "timestamp": "2009-12-20T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.480859, + -4.044777999 + ] + }, + "properties": { + "timestamp": "2009-12-20T09:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481075, + -4.046474996 + ] + }, + "properties": { + "timestamp": "2009-12-20T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481185, + -4.045885997 + ] + }, + "properties": { + "timestamp": "2009-12-20T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487174, + -4.049229002 + ] + }, + "properties": { + "timestamp": "2009-12-20T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.487362, + -4.049286003 + ] + }, + "properties": { + "timestamp": "2009-12-20T21:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.486072, + -4.049791002 + ] + }, + "properties": { + "timestamp": "2009-12-21T00:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.485502, + -4.048700001 + ] + }, + "properties": { + "timestamp": "2009-12-21T03:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.480994, + -4.045686997 + ] + }, + "properties": { + "timestamp": "2009-12-21T06:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.477958, + -4.044094001 + ] + }, + "properties": { + "timestamp": "2009-12-21T09:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478206, + -4.045405004 + ] + }, + "properties": { + "timestamp": "2009-12-21T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479264, + -4.043957005 + ] + }, + "properties": { + "timestamp": "2009-12-21T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.476005, + -4.041866 + ] + }, + "properties": { + "timestamp": "2009-12-21T18:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.476318, + -4.042012001 + ] + }, + "properties": { + "timestamp": "2009-12-21T22:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.478918, + -4.041122997 + ] + }, + "properties": { + "timestamp": "2009-12-22T03:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.477205, + -4.048475998 + ] + }, + "properties": { + "timestamp": "2009-12-22T07:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479207, + -4.045334997 + ] + }, + "properties": { + "timestamp": "2009-12-22T10:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.477559, + -4.045352996 + ] + }, + "properties": { + "timestamp": "2009-12-22T13:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.483073, + -4.047166003 + ] + }, + "properties": { + "timestamp": "2009-12-22T16:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479675, + -4.044408004 + ] + }, + "properties": { + "timestamp": "2009-12-22T20:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479057, + -4.043761 + ] + }, + "properties": { + "timestamp": "2009-12-23T01:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479451, + -4.042854998 + ] + }, + "properties": { + "timestamp": "2009-12-23T04:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.475964, + -4.036171999 + ] + }, + "properties": { + "timestamp": "2009-12-23T07:01:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.479203, + -4.041084 + ] + }, + "properties": { + "timestamp": "2009-12-23T12:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.480229, + -4.042951002 + ] + }, + "properties": { + "timestamp": "2009-12-23T15:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.481071, + -4.045209996 + ] + }, + "properties": { + "timestamp": "2009-12-23T19:00:00", + "year": 2009, + "month": 12, + "species": "Wildebeest", + "individual_id": "AG065", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.985374, + -3.610308003 + ] + }, + "properties": { + "timestamp": "2011-10-10T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995142, + -3.547880001 + ] + }, + "properties": { + "timestamp": "2011-10-12T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004855, + -3.595512004 + ] + }, + "properties": { + "timestamp": "2011-10-13T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008165, + -3.598912003 + ] + }, + "properties": { + "timestamp": "2011-10-15T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001318, + -3.587900003 + ] + }, + "properties": { + "timestamp": "2011-10-16T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00212, + -3.599232999 + ] + }, + "properties": { + "timestamp": "2011-10-18T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007665, + -3.575956 + ] + }, + "properties": { + "timestamp": "2011-10-19T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.015073, + -3.580806999 + ] + }, + "properties": { + "timestamp": "2011-10-21T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000639, + -3.586924004 + ] + }, + "properties": { + "timestamp": "2011-10-22T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004986, + -3.584850999 + ] + }, + "properties": { + "timestamp": "2011-10-24T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975752, + -3.527152006 + ] + }, + "properties": { + "timestamp": "2011-10-25T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006033, + -3.585543002 + ] + }, + "properties": { + "timestamp": "2011-10-27T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.999748, + -3.586707005 + ] + }, + "properties": { + "timestamp": "2011-10-28T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.01647, + -3.601849003 + ] + }, + "properties": { + "timestamp": "2011-10-30T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000704, + -3.585505997 + ] + }, + "properties": { + "timestamp": "2011-10-31T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.993608, + -3.601121 + ] + }, + "properties": { + "timestamp": "2011-11-01T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002996, + -3.587750997 + ] + }, + "properties": { + "timestamp": "2011-11-01T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00116, + -3.586957999 + ] + }, + "properties": { + "timestamp": "2011-11-02T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001921, + -3.589559003 + ] + }, + "properties": { + "timestamp": "2011-11-02T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.996978, + -3.585226001 + ] + }, + "properties": { + "timestamp": "2011-11-03T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003345, + -3.586891998 + ] + }, + "properties": { + "timestamp": "2011-11-03T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000375, + -3.586733002 + ] + }, + "properties": { + "timestamp": "2011-11-04T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00261, + -3.587983001 + ] + }, + "properties": { + "timestamp": "2011-11-04T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006779, + -3.575363003 + ] + }, + "properties": { + "timestamp": "2011-11-05T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003738, + -3.584765 + ] + }, + "properties": { + "timestamp": "2011-11-05T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006597, + -3.583465002 + ] + }, + "properties": { + "timestamp": "2011-11-06T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.999616, + -3.583634005 + ] + }, + "properties": { + "timestamp": "2011-11-06T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.039074, + -3.549643997 + ] + }, + "properties": { + "timestamp": "2011-11-07T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0481, + -3.515438998 + ] + }, + "properties": { + "timestamp": "2011-11-07T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.044008, + -3.508237002 + ] + }, + "properties": { + "timestamp": "2011-11-08T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.042723, + -3.516656001 + ] + }, + "properties": { + "timestamp": "2011-11-08T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.055784, + -3.516854 + ] + }, + "properties": { + "timestamp": "2011-11-09T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970278, + -3.426318005 + ] + }, + "properties": { + "timestamp": "2011-11-09T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.052314, + -3.230849005 + ] + }, + "properties": { + "timestamp": "2011-11-10T08:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.090632, + -3.001645004 + ] + }, + "properties": { + "timestamp": "2011-11-10T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.084653, + -2.845936002 + ] + }, + "properties": { + "timestamp": "2011-11-11T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.097398, + -2.850101001 + ] + }, + "properties": { + "timestamp": "2011-11-11T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.094499, + -2.844439005 + ] + }, + "properties": { + "timestamp": "2011-11-12T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.094888, + -2.833596002 + ] + }, + "properties": { + "timestamp": "2011-11-12T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.108905, + -2.83341 + ] + }, + "properties": { + "timestamp": "2011-11-13T08:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.113839, + -2.833113003 + ] + }, + "properties": { + "timestamp": "2011-11-13T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.096563, + -2.833273003 + ] + }, + "properties": { + "timestamp": "2011-11-14T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.094062, + -2.841123006 + ] + }, + "properties": { + "timestamp": "2011-11-14T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.095477, + -2.851493999 + ] + }, + "properties": { + "timestamp": "2011-11-15T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.109672, + -2.840837005 + ] + }, + "properties": { + "timestamp": "2011-11-15T20:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.119187, + -2.819958 + ] + }, + "properties": { + "timestamp": "2011-11-16T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.125363, + -2.821598007 + ] + }, + "properties": { + "timestamp": "2011-11-16T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.10206, + -2.819367 + ] + }, + "properties": { + "timestamp": "2011-11-17T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.097562, + -2.829571005 + ] + }, + "properties": { + "timestamp": "2011-11-17T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.100199, + -2.844411001 + ] + }, + "properties": { + "timestamp": "2011-11-18T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.096842, + -2.839983999 + ] + }, + "properties": { + "timestamp": "2011-11-18T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.0984, + -2.848119006 + ] + }, + "properties": { + "timestamp": "2011-11-19T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.108619, + -2.844636003 + ] + }, + "properties": { + "timestamp": "2011-11-19T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.103632, + -2.841323999 + ] + }, + "properties": { + "timestamp": "2011-11-20T08:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.104296, + -2.841353998 + ] + }, + "properties": { + "timestamp": "2011-11-20T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.088989, + -2.844673 + ] + }, + "properties": { + "timestamp": "2011-11-21T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.10577, + -2.849871005 + ] + }, + "properties": { + "timestamp": "2011-11-21T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.084897, + -2.831703005 + ] + }, + "properties": { + "timestamp": "2011-11-22T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.10819, + -2.830788999 + ] + }, + "properties": { + "timestamp": "2011-11-22T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.104672, + -2.838644 + ] + }, + "properties": { + "timestamp": "2011-11-23T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.109569, + -2.841966002 + ] + }, + "properties": { + "timestamp": "2011-11-23T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.063183, + -2.844833001 + ] + }, + "properties": { + "timestamp": "2011-11-24T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.094322, + -2.841019999 + ] + }, + "properties": { + "timestamp": "2011-11-24T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.09215, + -2.853039 + ] + }, + "properties": { + "timestamp": "2011-11-25T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.081603, + -2.837743003 + ] + }, + "properties": { + "timestamp": "2011-11-25T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085151, + -2.822472005 + ] + }, + "properties": { + "timestamp": "2011-11-26T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.105933, + -2.814782004 + ] + }, + "properties": { + "timestamp": "2011-11-26T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.107151, + -2.806843998 + ] + }, + "properties": { + "timestamp": "2011-11-27T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.096733, + -2.821243999 + ] + }, + "properties": { + "timestamp": "2011-11-27T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059338, + -2.843528999 + ] + }, + "properties": { + "timestamp": "2011-11-28T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060263, + -2.843047001 + ] + }, + "properties": { + "timestamp": "2011-11-28T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061274, + -2.843164 + ] + }, + "properties": { + "timestamp": "2011-11-29T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060952, + -2.843723004 + ] + }, + "properties": { + "timestamp": "2011-11-29T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.07759, + -2.836334002 + ] + }, + "properties": { + "timestamp": "2011-11-30T08:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058777, + -2.843596004 + ] + }, + "properties": { + "timestamp": "2011-11-30T20:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062808, + -2.841794006 + ] + }, + "properties": { + "timestamp": "2011-12-01T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061179, + -2.843240005 + ] + }, + "properties": { + "timestamp": "2011-12-01T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.08051, + -2.834790007 + ] + }, + "properties": { + "timestamp": "2011-12-02T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.059398, + -2.843424002 + ] + }, + "properties": { + "timestamp": "2011-12-02T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.076629, + -2.837617006 + ] + }, + "properties": { + "timestamp": "2011-12-03T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.05941, + -2.843417003 + ] + }, + "properties": { + "timestamp": "2011-12-03T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.073613, + -2.846813999 + ] + }, + "properties": { + "timestamp": "2011-12-04T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060107, + -2.844202 + ] + }, + "properties": { + "timestamp": "2011-12-04T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.085412, + -2.850556006 + ] + }, + "properties": { + "timestamp": "2011-12-05T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058998, + -2.843871004 + ] + }, + "properties": { + "timestamp": "2011-12-05T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075357, + -2.846954002 + ] + }, + "properties": { + "timestamp": "2011-12-06T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06081, + -2.843320007 + ] + }, + "properties": { + "timestamp": "2011-12-06T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.074522, + -2.845225999 + ] + }, + "properties": { + "timestamp": "2011-12-07T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061098, + -2.843867001 + ] + }, + "properties": { + "timestamp": "2011-12-07T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.08345, + -2.850548998 + ] + }, + "properties": { + "timestamp": "2011-12-08T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061261, + -2.844364 + ] + }, + "properties": { + "timestamp": "2011-12-08T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.084118, + -2.851951007 + ] + }, + "properties": { + "timestamp": "2011-12-09T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061466, + -2.843317999 + ] + }, + "properties": { + "timestamp": "2011-12-09T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.082682, + -2.852106002 + ] + }, + "properties": { + "timestamp": "2011-12-10T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061393, + -2.843391006 + ] + }, + "properties": { + "timestamp": "2011-12-10T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061364, + -2.843830005 + ] + }, + "properties": { + "timestamp": "2011-12-11T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.06178, + -2.843420005 + ] + }, + "properties": { + "timestamp": "2011-12-11T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.074027, + -2.843648001 + ] + }, + "properties": { + "timestamp": "2011-12-12T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062263, + -2.843511999 + ] + }, + "properties": { + "timestamp": "2011-12-12T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.058174, + -2.843434005 + ] + }, + "properties": { + "timestamp": "2011-12-13T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062378, + -2.843559005 + ] + }, + "properties": { + "timestamp": "2011-12-13T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.075531, + -2.847536002 + ] + }, + "properties": { + "timestamp": "2011-12-14T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062189, + -2.844444005 + ] + }, + "properties": { + "timestamp": "2011-12-14T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.068509, + -2.884920001 + ] + }, + "properties": { + "timestamp": "2011-12-15T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060994, + -2.843792999 + ] + }, + "properties": { + "timestamp": "2011-12-15T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.079377, + -2.834219003 + ] + }, + "properties": { + "timestamp": "2011-12-16T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061134, + -2.843528003 + ] + }, + "properties": { + "timestamp": "2011-12-16T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.073878, + -2.840934003 + ] + }, + "properties": { + "timestamp": "2011-12-17T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061495, + -2.843016 + ] + }, + "properties": { + "timestamp": "2011-12-17T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.062751, + -2.844515998 + ] + }, + "properties": { + "timestamp": "2011-12-18T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061941, + -2.843338007 + ] + }, + "properties": { + "timestamp": "2011-12-18T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.077858, + -2.836708003 + ] + }, + "properties": { + "timestamp": "2011-12-19T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061342, + -2.842030007 + ] + }, + "properties": { + "timestamp": "2011-12-19T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.072003, + -2.838296002 + ] + }, + "properties": { + "timestamp": "2011-12-20T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.060779, + -2.842295999 + ] + }, + "properties": { + "timestamp": "2011-12-20T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.073936, + -2.834370998 + ] + }, + "properties": { + "timestamp": "2011-12-21T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061657, + -2.843021004 + ] + }, + "properties": { + "timestamp": "2011-12-21T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.079033, + -2.835229003 + ] + }, + "properties": { + "timestamp": "2011-12-22T08:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.061358, + -2.842510999 + ] + }, + "properties": { + "timestamp": "2011-12-22T20:00:00", + "year": 2011, + "month": 12, + "species": "Wildebeest", + "individual_id": "TEL1", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001542, + -3.585637 + ] + }, + "properties": { + "timestamp": "2011-10-14T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.992687, + -3.608342997 + ] + }, + "properties": { + "timestamp": "2011-10-15T12:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.956187, + -3.583001999 + ] + }, + "properties": { + "timestamp": "2011-10-17T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.07034, + -3.121126 + ] + }, + "properties": { + "timestamp": "2011-10-18T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.163004, + -3.07077 + ] + }, + "properties": { + "timestamp": "2011-10-20T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.017978, + -3.340047 + ] + }, + "properties": { + "timestamp": "2011-10-21T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.992108, + -3.540383002 + ] + }, + "properties": { + "timestamp": "2011-10-23T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001192, + -3.586824004 + ] + }, + "properties": { + "timestamp": "2011-10-24T12:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003911, + -3.597980001 + ] + }, + "properties": { + "timestamp": "2011-10-26T00:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL2", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.990108, + -3.542720004 + ] + }, + "properties": { + "timestamp": "2011-10-11T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.993876, + -3.557346998 + ] + }, + "properties": { + "timestamp": "2011-10-11T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.996936, + -3.557410001 + ] + }, + "properties": { + "timestamp": "2011-10-11T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000635, + -3.573721005 + ] + }, + "properties": { + "timestamp": "2011-10-11T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002965, + -3.579750997 + ] + }, + "properties": { + "timestamp": "2011-10-12T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004248, + -3.579883002 + ] + }, + "properties": { + "timestamp": "2011-10-12T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002287, + -3.589800998 + ] + }, + "properties": { + "timestamp": "2011-10-12T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001446, + -3.586320999 + ] + }, + "properties": { + "timestamp": "2011-10-12T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.999931, + -3.586268004 + ] + }, + "properties": { + "timestamp": "2011-10-13T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006834, + -3.592635004 + ] + }, + "properties": { + "timestamp": "2011-10-13T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006968, + -3.59272 + ] + }, + "properties": { + "timestamp": "2011-10-13T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004612, + -3.584970997 + ] + }, + "properties": { + "timestamp": "2011-10-13T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006912, + -3.583433005 + ] + }, + "properties": { + "timestamp": "2011-10-14T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006487, + -3.579398997 + ] + }, + "properties": { + "timestamp": "2011-10-14T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.013833, + -3.580655001 + ] + }, + "properties": { + "timestamp": "2011-10-14T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.014444, + -3.579470997 + ] + }, + "properties": { + "timestamp": "2011-10-14T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.010541, + -3.563758005 + ] + }, + "properties": { + "timestamp": "2011-10-15T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.981448, + -3.514990998 + ] + }, + "properties": { + "timestamp": "2011-10-15T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970151, + -3.472523999 + ] + }, + "properties": { + "timestamp": "2011-10-15T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968514, + -3.428726003 + ] + }, + "properties": { + "timestamp": "2011-10-15T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001222, + -3.293814 + ] + }, + "properties": { + "timestamp": "2011-10-16T04:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.012444, + -3.222653004 + ] + }, + "properties": { + "timestamp": "2011-10-16T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.012679, + -3.219732001 + ] + }, + "properties": { + "timestamp": "2011-10-16T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995847, + -3.212771004 + ] + }, + "properties": { + "timestamp": "2011-10-16T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.99572, + -3.217306 + ] + }, + "properties": { + "timestamp": "2011-10-17T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.996064, + -3.216030006 + ] + }, + "properties": { + "timestamp": "2011-10-17T10:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.983638, + -3.222621004 + ] + }, + "properties": { + "timestamp": "2011-10-17T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970602, + -3.225721003 + ] + }, + "properties": { + "timestamp": "2011-10-17T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.013642, + -3.222297005 + ] + }, + "properties": { + "timestamp": "2011-10-18T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.996675, + -3.218640001 + ] + }, + "properties": { + "timestamp": "2011-10-18T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.99755, + -3.217096001 + ] + }, + "properties": { + "timestamp": "2011-10-18T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995532, + -3.216841003 + ] + }, + "properties": { + "timestamp": "2011-10-18T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995615, + -3.217175998 + ] + }, + "properties": { + "timestamp": "2011-10-19T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.997981, + -3.216687004 + ] + }, + "properties": { + "timestamp": "2011-10-19T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.984462, + -3.220865 + ] + }, + "properties": { + "timestamp": "2011-10-19T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.969798, + -3.225655999 + ] + }, + "properties": { + "timestamp": "2011-10-19T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.92812, + -3.275782001 + ] + }, + "properties": { + "timestamp": "2011-10-20T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.923425, + -3.297816998 + ] + }, + "properties": { + "timestamp": "2011-10-20T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.924229, + -3.297965005 + ] + }, + "properties": { + "timestamp": "2011-10-20T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.924325, + -3.306212999 + ] + }, + "properties": { + "timestamp": "2011-10-20T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.938325, + -3.359257998 + ] + }, + "properties": { + "timestamp": "2011-10-21T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.966321, + -3.468581999 + ] + }, + "properties": { + "timestamp": "2011-10-21T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003715, + -3.581065002 + ] + }, + "properties": { + "timestamp": "2011-10-21T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005636, + -3.584658004 + ] + }, + "properties": { + "timestamp": "2011-10-21T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.006096, + -3.582579998 + ] + }, + "properties": { + "timestamp": "2011-10-22T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.00826, + -3.582116997 + ] + }, + "properties": { + "timestamp": "2011-10-22T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008758, + -3.583206997 + ] + }, + "properties": { + "timestamp": "2011-10-22T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.008936, + -3.583654001 + ] + }, + "properties": { + "timestamp": "2011-10-22T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.009192, + -3.594541 + ] + }, + "properties": { + "timestamp": "2011-10-23T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.007077, + -3.592624998 + ] + }, + "properties": { + "timestamp": "2011-10-23T10:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004669, + -3.588268003 + ] + }, + "properties": { + "timestamp": "2011-10-23T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.004339, + -3.587328005 + ] + }, + "properties": { + "timestamp": "2011-10-23T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000822, + -3.586424 + ] + }, + "properties": { + "timestamp": "2011-10-24T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002331, + -3.587562001 + ] + }, + "properties": { + "timestamp": "2011-10-24T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.002048, + -3.591048999 + ] + }, + "properties": { + "timestamp": "2011-10-24T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003327, + -3.594117999 + ] + }, + "properties": { + "timestamp": "2011-10-24T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003177, + -3.595115999 + ] + }, + "properties": { + "timestamp": "2011-10-25T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003425, + -3.594283998 + ] + }, + "properties": { + "timestamp": "2011-10-25T10:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003636, + -3.597909004 + ] + }, + "properties": { + "timestamp": "2011-10-25T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.003482, + -3.598069005 + ] + }, + "properties": { + "timestamp": "2011-10-25T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.000341, + -3.646928005 + ] + }, + "properties": { + "timestamp": "2011-10-26T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.001521, + -3.695612997 + ] + }, + "properties": { + "timestamp": "2011-10-26T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.012472, + -3.712321997 + ] + }, + "properties": { + "timestamp": "2011-10-26T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 36.005874, + -3.664159005 + ] + }, + "properties": { + "timestamp": "2011-10-26T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995032, + -3.689330999 + ] + }, + "properties": { + "timestamp": "2011-10-27T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.995708, + -3.751527998 + ] + }, + "properties": { + "timestamp": "2011-10-27T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.974193, + -3.762665002 + ] + }, + "properties": { + "timestamp": "2011-10-27T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968611, + -3.760275997 + ] + }, + "properties": { + "timestamp": "2011-10-27T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.966551, + -3.759989996 + ] + }, + "properties": { + "timestamp": "2011-10-28T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.967668, + -3.767459998 + ] + }, + "properties": { + "timestamp": "2011-10-28T10:02:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.962119, + -3.779182998 + ] + }, + "properties": { + "timestamp": "2011-10-28T16:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.959947, + -3.761101005 + ] + }, + "properties": { + "timestamp": "2011-10-28T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970056, + -3.759224003 + ] + }, + "properties": { + "timestamp": "2011-10-29T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968712, + -3.759604 + ] + }, + "properties": { + "timestamp": "2011-10-29T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.96878, + -3.758609002 + ] + }, + "properties": { + "timestamp": "2011-10-29T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968778, + -3.759904005 + ] + }, + "properties": { + "timestamp": "2011-10-29T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.969442, + -3.772192004 + ] + }, + "properties": { + "timestamp": "2011-10-30T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.967698, + -3.788610997 + ] + }, + "properties": { + "timestamp": "2011-10-30T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.968654, + -3.769128 + ] + }, + "properties": { + "timestamp": "2011-10-30T16:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.965392, + -3.760865997 + ] + }, + "properties": { + "timestamp": "2011-10-30T22:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.978193, + -3.777363996 + ] + }, + "properties": { + "timestamp": "2011-10-31T04:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.994739, + -3.799485 + ] + }, + "properties": { + "timestamp": "2011-10-31T10:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.98497, + -3.802195003 + ] + }, + "properties": { + "timestamp": "2011-10-31T16:01:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.979433, + -3.802644003 + ] + }, + "properties": { + "timestamp": "2011-10-31T22:00:00", + "year": 2011, + "month": 10, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.979657, + -3.807560001 + ] + }, + "properties": { + "timestamp": "2011-11-01T04:02:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971894, + -3.810641003 + ] + }, + "properties": { + "timestamp": "2011-11-01T10:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971334, + -3.813785003 + ] + }, + "properties": { + "timestamp": "2011-11-01T16:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.971391, + -3.813513001 + ] + }, + "properties": { + "timestamp": "2011-11-01T22:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.956404, + -3.831490996 + ] + }, + "properties": { + "timestamp": "2011-11-02T04:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.934724, + -3.849834001 + ] + }, + "properties": { + "timestamp": "2011-11-02T10:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.942945, + -3.843437999 + ] + }, + "properties": { + "timestamp": "2011-11-02T16:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.943778, + -3.842461998 + ] + }, + "properties": { + "timestamp": "2011-11-02T22:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.945442, + -3.832996005 + ] + }, + "properties": { + "timestamp": "2011-11-03T04:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.950365, + -3.832971999 + ] + }, + "properties": { + "timestamp": "2011-11-03T10:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.945528, + -3.838619999 + ] + }, + "properties": { + "timestamp": "2011-11-03T16:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.945174, + -3.841351004 + ] + }, + "properties": { + "timestamp": "2011-11-03T22:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.945744, + -3.829276996 + ] + }, + "properties": { + "timestamp": "2011-11-04T04:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.948565, + -3.825046004 + ] + }, + "properties": { + "timestamp": "2011-11-04T10:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.953905, + -3.807021998 + ] + }, + "properties": { + "timestamp": "2011-11-04T16:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.956994, + -3.796877005 + ] + }, + "properties": { + "timestamp": "2011-11-04T22:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.992775, + -3.799929005 + ] + }, + "properties": { + "timestamp": "2011-11-05T04:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.990898, + -3.799986 + ] + }, + "properties": { + "timestamp": "2011-11-05T10:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.975747, + -3.799512005 + ] + }, + "properties": { + "timestamp": "2011-11-05T16:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.959683, + -3.779958998 + ] + }, + "properties": { + "timestamp": "2011-11-05T22:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.94562, + -3.796080003 + ] + }, + "properties": { + "timestamp": "2011-11-06T04:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.942102, + -3.804173 + ] + }, + "properties": { + "timestamp": "2011-11-06T10:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.955965, + -3.791722001 + ] + }, + "properties": { + "timestamp": "2011-11-06T16:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970707, + -3.799394005 + ] + }, + "properties": { + "timestamp": "2011-11-06T22:00:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970719, + -3.799417003 + ] + }, + "properties": { + "timestamp": "2011-11-07T04:03:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970741, + -3.799374999 + ] + }, + "properties": { + "timestamp": "2011-11-07T10:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 35.970767, + -3.799285 + ] + }, + "properties": { + "timestamp": "2011-11-07T18:01:00", + "year": 2011, + "month": 11, + "species": "Wildebeest", + "individual_id": "TEL3", + "study": "Wildebeest (Eastern white bearded) Morrison Tarangire-Manyara Tanzania" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9237614, + -3.8396436 + ] + }, + "properties": { + "timestamp": "2005-01-12T00:00:41", + "year": 2005, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.956307, + -3.8657851 + ] + }, + "properties": { + "timestamp": "2005-02-12T12:03:12", + "year": 2005, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9339156, + -3.8115357 + ] + }, + "properties": { + "timestamp": "2005-04-12T00:00:48", + "year": 2005, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8236536, + -3.8331395 + ] + }, + "properties": { + "timestamp": "2005-05-12T12:00:52", + "year": 2005, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8817575, + -3.7070873 + ] + }, + "properties": { + "timestamp": "2005-06-12T18:00:48", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9370422, + -3.6879458 + ] + }, + "properties": { + "timestamp": "2005-07-12T00:00:23", + "year": 2005, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9666299, + -3.7261697 + ] + }, + "properties": { + "timestamp": "2005-08-12T00:00:53", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707057, + -3.774821 + ] + }, + "properties": { + "timestamp": "2005-09-10T04:01:12", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9662617, + -3.7273358 + ] + }, + "properties": { + "timestamp": "2005-09-12T06:02:24", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912373, + -3.7981286 + ] + }, + "properties": { + "timestamp": "2005-10-09T00:01:24", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.869998, + -3.7732864 + ] + }, + "properties": { + "timestamp": "2005-10-10T00:01:41", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706688, + -3.7757635 + ] + }, + "properties": { + "timestamp": "2005-10-10T20:01:23", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706778, + -3.7758008 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:12:01", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706878, + -3.7756672 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:21:35", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706891, + -3.7757295 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:28:29", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9650063, + -3.7277695 + ] + }, + "properties": { + "timestamp": "2005-10-12T00:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705106, + -3.7758554 + ] + }, + "properties": { + "timestamp": "2005-10-12T16:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705341, + -3.7929323 + ] + }, + "properties": { + "timestamp": "2005-10-13T04:00:25", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8704719, + -3.7931708 + ] + }, + "properties": { + "timestamp": "2005-10-13T16:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870842, + -3.7771297 + ] + }, + "properties": { + "timestamp": "2005-10-14T04:01:28", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712065, + -3.7762536 + ] + }, + "properties": { + "timestamp": "2005-10-15T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699093, + -3.7805279 + ] + }, + "properties": { + "timestamp": "2005-10-15T16:00:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8734296, + -3.7858577 + ] + }, + "properties": { + "timestamp": "2005-10-16T00:01:40", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8756742, + -3.7852518 + ] + }, + "properties": { + "timestamp": "2005-10-16T12:01:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8743546, + -3.7857836 + ] + }, + "properties": { + "timestamp": "2005-10-16T20:00:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9277187, + -3.8094936 + ] + }, + "properties": { + "timestamp": "2005-10-17T08:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706835, + -3.7757561 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:11:10", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706891, + -3.7757295 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:21:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706821, + -3.7757299 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:28:18", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8703417, + -3.7757898 + ] + }, + "properties": { + "timestamp": "2005-11-10T20:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0137227, + -3.8023266 + ] + }, + "properties": { + "timestamp": "2005-11-18T18:01:24", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9327685, + -3.7879265 + ] + }, + "properties": { + "timestamp": "2005-11-20T12:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8877723, + -3.7456455 + ] + }, + "properties": { + "timestamp": "2005-11-22T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9581681, + -3.7915831 + ] + }, + "properties": { + "timestamp": "2005-11-23T12:00:46", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9773171, + -3.7259743 + ] + }, + "properties": { + "timestamp": "2005-11-25T06:01:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9772275, + -3.7259061 + ] + }, + "properties": { + "timestamp": "2005-11-26T12:03:06", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9719799, + -3.7974182 + ] + }, + "properties": { + "timestamp": "2005-11-28T12:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9285813, + -3.8822884 + ] + }, + "properties": { + "timestamp": "2005-11-29T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706453, + -3.7758242 + ] + }, + "properties": { + "timestamp": "2005-12-10T04:02:17", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241991, + -3.8368872 + ] + }, + "properties": { + "timestamp": "2005-12-12T12:02:19", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8427953, + -3.8432129 + ] + }, + "properties": { + "timestamp": "2005-12-14T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8874408, + -3.8928316 + ] + }, + "properties": { + "timestamp": "2005-12-15T06:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8538016, + -3.8293115 + ] + }, + "properties": { + "timestamp": "2005-12-16T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0152443, + -3.8064115 + ] + }, + "properties": { + "timestamp": "2005-12-17T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9981913, + -3.7947713 + ] + }, + "properties": { + "timestamp": "2005-12-19T06:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9938749, + -3.8076443 + ] + }, + "properties": { + "timestamp": "2005-12-20T18:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.987383, + -3.7827468 + ] + }, + "properties": { + "timestamp": "2005-12-22T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912415, + -3.8002036 + ] + }, + "properties": { + "timestamp": "2005-12-24T18:02:10", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9123242, + -3.798505 + ] + }, + "properties": { + "timestamp": "2005-12-26T00:00:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.885213, + -3.7415273 + ] + }, + "properties": { + "timestamp": "2005-12-27T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9371456, + -3.7784464 + ] + }, + "properties": { + "timestamp": "2005-12-29T06:01:22", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8968088, + -3.752102 + ] + }, + "properties": { + "timestamp": "2005-12-30T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8033179, + -3.794278 + ] + }, + "properties": { + "timestamp": "2006-01-01T06:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341476, + -3.8308718 + ] + }, + "properties": { + "timestamp": "2006-02-01T12:01:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9700436, + -3.7876351 + ] + }, + "properties": { + "timestamp": "2006-04-01T00:00:48", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.967356, + -3.840409 + ] + }, + "properties": { + "timestamp": "2006-05-01T18:00:48", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854274, + -3.8355154 + ] + }, + "properties": { + "timestamp": "2006-07-01T06:01:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8711941, + -3.8561049 + ] + }, + "properties": { + "timestamp": "2006-08-01T18:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.936568, + -3.7621678 + ] + }, + "properties": { + "timestamp": "2006-10-01T00:00:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9277187, + -3.8094936 + ] + }, + "properties": { + "timestamp": "2005-10-17T08:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9466397, + -3.7799364 + ] + }, + "properties": { + "timestamp": "2005-10-19T00:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9219342, + -3.8089195 + ] + }, + "properties": { + "timestamp": "2005-10-20T06:00:41", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0097373, + -3.8399 + ] + }, + "properties": { + "timestamp": "2005-10-22T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896506, + -3.8247916 + ] + }, + "properties": { + "timestamp": "2005-10-23T12:01:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9742796, + -3.7927771 + ] + }, + "properties": { + "timestamp": "2005-10-24T18:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9854944, + -3.7898854 + ] + }, + "properties": { + "timestamp": "2005-10-26T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9565721, + -3.7736336 + ] + }, + "properties": { + "timestamp": "2005-10-27T18:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341733, + -3.803391 + ] + }, + "properties": { + "timestamp": "2005-10-29T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354527, + -3.8032471 + ] + }, + "properties": { + "timestamp": "2005-10-30T06:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241093, + -3.7964649 + ] + }, + "properties": { + "timestamp": "2005-10-31T18:01:11", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9142425, + -3.8188095 + ] + }, + "properties": { + "timestamp": "2005-11-02T06:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9367545, + -3.8751715 + ] + }, + "properties": { + "timestamp": "2005-11-03T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9602053, + -3.8514934 + ] + }, + "properties": { + "timestamp": "2005-11-05T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9811552, + -3.8250467 + ] + }, + "properties": { + "timestamp": "2005-11-07T18:02:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.974705, + -3.8157164 + ] + }, + "properties": { + "timestamp": "2005-11-10T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7906729, + -3.8040805 + ] + }, + "properties": { + "timestamp": "2005-11-11T18:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9859557, + -3.7622538 + ] + }, + "properties": { + "timestamp": "2005-11-13T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9082117, + -3.6801179 + ] + }, + "properties": { + "timestamp": "2005-11-14T12:01:11", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9077937, + -3.6801835 + ] + }, + "properties": { + "timestamp": "2005-11-15T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9353667, + -3.7695233 + ] + }, + "properties": { + "timestamp": "2005-11-17T12:01:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9623615, + -3.7937513 + ] + }, + "properties": { + "timestamp": "2005-11-19T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8396696, + -3.8515562 + ] + }, + "properties": { + "timestamp": "2005-11-21T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.971166, + -3.7893109 + ] + }, + "properties": { + "timestamp": "2005-11-22T18:00:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0177826, + -3.765258 + ] + }, + "properties": { + "timestamp": "2005-11-24T00:01:19", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97686, + -3.7284153 + ] + }, + "properties": { + "timestamp": "2005-11-25T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9751614, + -3.7368545 + ] + }, + "properties": { + "timestamp": "2005-11-27T12:01:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9438136, + -3.8702075 + ] + }, + "properties": { + "timestamp": "2005-11-29T00:00:42", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9109298, + -3.8484511 + ] + }, + "properties": { + "timestamp": "2005-11-30T12:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9329107, + -3.8756283 + ] + }, + "properties": { + "timestamp": "2005-12-02T00:00:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9872703, + -3.7996358 + ] + }, + "properties": { + "timestamp": "2005-12-03T06:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699549, + -3.8531267 + ] + }, + "properties": { + "timestamp": "2005-12-05T00:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8648178, + -3.7215043 + ] + }, + "properties": { + "timestamp": "2005-12-06T06:01:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9656724, + -3.7275217 + ] + }, + "properties": { + "timestamp": "2005-12-07T18:01:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9661065, + -3.726246 + ] + }, + "properties": { + "timestamp": "2005-12-09T00:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9663287, + -3.727339 + ] + }, + "properties": { + "timestamp": "2005-12-10T06:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9351285, + -3.8374356 + ] + }, + "properties": { + "timestamp": "2005-12-12T00:01:13", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8755528, + -3.8584634 + ] + }, + "properties": { + "timestamp": "2005-12-13T06:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8421202, + -3.8551129 + ] + }, + "properties": { + "timestamp": "2005-12-14T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8502731, + -3.8741988 + ] + }, + "properties": { + "timestamp": "2005-12-16T00:00:45", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0007615, + -3.7908319 + ] + }, + "properties": { + "timestamp": "2005-12-17T06:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9982312, + -3.7947171 + ] + }, + "properties": { + "timestamp": "2005-12-18T12:01:45", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9983692, + -3.794699 + ] + }, + "properties": { + "timestamp": "2005-12-20T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9869668, + -3.7838928 + ] + }, + "properties": { + "timestamp": "2005-12-22T00:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0008082, + -3.8000236 + ] + }, + "properties": { + "timestamp": "2005-12-23T18:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9124021, + -3.8009034 + ] + }, + "properties": { + "timestamp": "2005-12-25T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8849912, + -3.7421383 + ] + }, + "properties": { + "timestamp": "2005-12-27T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354244, + -3.7697688 + ] + }, + "properties": { + "timestamp": "2005-12-28T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8880036, + -3.7521772 + ] + }, + "properties": { + "timestamp": "2005-12-30T06:01:23", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8153394, + -3.7819564 + ] + }, + "properties": { + "timestamp": "2005-12-31T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8860106, + -3.846002 + ] + }, + "properties": { + "timestamp": "2006-01-02T00:00:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9531581, + -3.771696 + ] + }, + "properties": { + "timestamp": "2006-01-03T12:01:28", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9823993, + -3.8377964 + ] + }, + "properties": { + "timestamp": "2006-01-05T00:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8506097, + -3.8449172 + ] + }, + "properties": { + "timestamp": "2006-01-06T18:01:12", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8129324, + -3.8744959 + ] + }, + "properties": { + "timestamp": "2006-01-08T00:00:41", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9612977, + -3.7709226 + ] + }, + "properties": { + "timestamp": "2006-01-09T12:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8982907, + -3.7520769 + ] + }, + "properties": { + "timestamp": "2006-01-11T00:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576394, + -3.77028 + ] + }, + "properties": { + "timestamp": "2006-01-12T18:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8824987, + -3.7778873 + ] + }, + "properties": { + "timestamp": "2006-01-14T06:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8994645, + -3.7909663 + ] + }, + "properties": { + "timestamp": "2006-01-15T12:01:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9584078, + -3.775027 + ] + }, + "properties": { + "timestamp": "2006-01-17T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9440225, + -3.7841486 + ] + }, + "properties": { + "timestamp": "2006-01-19T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.937815, + -3.8721792 + ] + }, + "properties": { + "timestamp": "2006-01-20T12:02:24", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.882474, + -3.8707473 + ] + }, + "properties": { + "timestamp": "2006-01-22T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8823361, + -3.870953 + ] + }, + "properties": { + "timestamp": "2006-01-23T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7541449, + -3.917236 + ] + }, + "properties": { + "timestamp": "2006-01-25T12:01:42", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.837192, + -3.7645569 + ] + }, + "properties": { + "timestamp": "2006-01-27T00:01:43", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9533048, + -3.7776666 + ] + }, + "properties": { + "timestamp": "2006-01-28T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9468788, + -3.7776091 + ] + }, + "properties": { + "timestamp": "2006-01-30T18:01:49", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.957278, + -3.7777761 + ] + }, + "properties": { + "timestamp": "2006-02-02T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9563988, + -3.7750264 + ] + }, + "properties": { + "timestamp": "2006-02-04T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8342061, + -3.7376426 + ] + }, + "properties": { + "timestamp": "2006-02-05T18:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9669095, + -3.8266507 + ] + }, + "properties": { + "timestamp": "2006-02-07T00:01:12", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9728493, + -3.7909212 + ] + }, + "properties": { + "timestamp": "2006-02-08T18:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9565331, + -3.7739538 + ] + }, + "properties": { + "timestamp": "2006-02-10T06:03:00", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576052, + -3.775994 + ] + }, + "properties": { + "timestamp": "2006-02-11T12:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9346617, + -3.7423108 + ] + }, + "properties": { + "timestamp": "2006-02-13T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9106728, + -3.7325449 + ] + }, + "properties": { + "timestamp": "2006-02-14T12:01:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9553983, + -3.7737704 + ] + }, + "properties": { + "timestamp": "2006-02-15T18:00:49", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9516364, + -3.7898904 + ] + }, + "properties": { + "timestamp": "2006-02-17T12:01:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9584838, + -3.7949414 + ] + }, + "properties": { + "timestamp": "2006-02-18T18:01:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9575895, + -3.7759918 + ] + }, + "properties": { + "timestamp": "2006-02-20T06:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9166468, + -3.8218991 + ] + }, + "properties": { + "timestamp": "2006-02-22T00:00:46", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8607439, + -3.8652312 + ] + }, + "properties": { + "timestamp": "2006-02-23T18:01:38", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9437435, + -3.7849259 + ] + }, + "properties": { + "timestamp": "2006-02-25T12:01:42", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.897639, + -3.8088397 + ] + }, + "properties": { + "timestamp": "2006-02-27T18:01:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9264903, + -3.6980334 + ] + }, + "properties": { + "timestamp": "2006-03-01T06:02:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9131426, + -3.7106852 + ] + }, + "properties": { + "timestamp": "2006-03-02T18:00:43", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9070689, + -3.8483161 + ] + }, + "properties": { + "timestamp": "2006-03-04T06:01:46", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9061749, + -3.8500239 + ] + }, + "properties": { + "timestamp": "2006-03-05T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582818, + -3.7710546 + ] + }, + "properties": { + "timestamp": "2006-03-07T06:02:10", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8014554, + -3.8301235 + ] + }, + "properties": { + "timestamp": "2006-03-08T12:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7680135, + -3.8896158 + ] + }, + "properties": { + "timestamp": "2006-03-10T00:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8050417, + -3.890186 + ] + }, + "properties": { + "timestamp": "2006-03-11T12:01:24", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8420921, + -3.9019947 + ] + }, + "properties": { + "timestamp": "2006-03-12T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8444823, + -3.9149695 + ] + }, + "properties": { + "timestamp": "2006-03-14T06:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.791573, + -3.8772469 + ] + }, + "properties": { + "timestamp": "2006-03-15T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8079617, + -3.8793207 + ] + }, + "properties": { + "timestamp": "2006-03-17T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9941583, + -3.7900355 + ] + }, + "properties": { + "timestamp": "2006-03-18T18:00:55", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.99496, + -3.7884343 + ] + }, + "properties": { + "timestamp": "2006-03-20T06:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9905802, + -3.7866358 + ] + }, + "properties": { + "timestamp": "2006-03-21T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7679802, + -3.8903994 + ] + }, + "properties": { + "timestamp": "2006-03-23T06:01:25", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.843656, + -3.9389079 + ] + }, + "properties": { + "timestamp": "2006-03-24T18:00:43", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9500793, + -3.8652119 + ] + }, + "properties": { + "timestamp": "2006-03-26T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.978455, + -3.8278423 + ] + }, + "properties": { + "timestamp": "2006-03-28T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9769992, + -3.8290973 + ] + }, + "properties": { + "timestamp": "2006-03-30T00:01:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7831683, + -3.8902372 + ] + }, + "properties": { + "timestamp": "2006-03-31T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7699768, + -3.8895884 + ] + }, + "properties": { + "timestamp": "2006-04-02T06:01:23", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8305646, + -3.9601223 + ] + }, + "properties": { + "timestamp": "2006-04-03T18:00:49", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7693634, + -3.9490705 + ] + }, + "properties": { + "timestamp": "2006-04-05T00:00:49", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9243869, + -3.8432656 + ] + }, + "properties": { + "timestamp": "2006-04-06T06:01:41", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9941652, + -3.748985 + ] + }, + "properties": { + "timestamp": "2006-04-08T00:01:41", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9624341, + -3.7444116 + ] + }, + "properties": { + "timestamp": "2006-04-10T00:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8069166, + -3.7833582 + ] + }, + "properties": { + "timestamp": "2006-04-11T06:02:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7933432, + -3.8891439 + ] + }, + "properties": { + "timestamp": "2006-04-12T18:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8570699, + -3.8637508 + ] + }, + "properties": { + "timestamp": "2006-04-14T00:01:59", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7971696, + -3.9838772 + ] + }, + "properties": { + "timestamp": "2006-04-16T00:01:46", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8557694, + -3.9249555 + ] + }, + "properties": { + "timestamp": "2006-04-18T00:01:14", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9121044, + -3.8725729 + ] + }, + "properties": { + "timestamp": "2006-04-19T12:01:13", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9122644, + -3.8721652 + ] + }, + "properties": { + "timestamp": "2006-04-20T18:00:49", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9725061, + -3.7912264 + ] + }, + "properties": { + "timestamp": "2006-04-22T18:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8495356, + -3.6974749 + ] + }, + "properties": { + "timestamp": "2006-04-24T12:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.785869, + -3.8576569 + ] + }, + "properties": { + "timestamp": "2006-04-25T18:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8239117, + -3.9319318 + ] + }, + "properties": { + "timestamp": "2006-04-27T00:01:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8020296, + -3.9273126 + ] + }, + "properties": { + "timestamp": "2006-04-28T12:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7718104, + -3.9018614 + ] + }, + "properties": { + "timestamp": "2006-04-30T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8549178, + -3.9713737 + ] + }, + "properties": { + "timestamp": "2006-05-01T18:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8831507, + -3.8467767 + ] + }, + "properties": { + "timestamp": "2006-05-03T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9470814, + -3.7637492 + ] + }, + "properties": { + "timestamp": "2006-05-04T18:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9238493, + -3.6903754 + ] + }, + "properties": { + "timestamp": "2006-05-06T12:02:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.731438, + -3.7071819 + ] + }, + "properties": { + "timestamp": "2006-05-08T06:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7885058, + -3.8009047 + ] + }, + "properties": { + "timestamp": "2006-05-09T12:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8481438, + -3.9133553 + ] + }, + "properties": { + "timestamp": "2006-05-11T00:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8865048, + -3.8528974 + ] + }, + "properties": { + "timestamp": "2006-05-12T06:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.887425, + -3.8518578 + ] + }, + "properties": { + "timestamp": "2006-05-14T00:01:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9385404, + -3.8259394 + ] + }, + "properties": { + "timestamp": "2006-05-15T18:01:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7399279, + -3.7521728 + ] + }, + "properties": { + "timestamp": "2006-05-17T18:02:03", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8075987, + -3.9099397 + ] + }, + "properties": { + "timestamp": "2006-05-19T00:01:40", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021262, + -3.9101185 + ] + }, + "properties": { + "timestamp": "2006-05-20T12:01:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8423507, + -3.6918416 + ] + }, + "properties": { + "timestamp": "2006-05-21T18:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9551942, + -3.7187707 + ] + }, + "properties": { + "timestamp": "2006-05-23T18:01:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9043925, + -3.8670513 + ] + }, + "properties": { + "timestamp": "2006-05-25T00:01:11", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.820856, + -3.9185076 + ] + }, + "properties": { + "timestamp": "2006-05-26T06:01:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9064939, + -3.845832 + ] + }, + "properties": { + "timestamp": "2006-05-27T18:01:59", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.939095, + -3.7416254 + ] + }, + "properties": { + "timestamp": "2006-05-30T00:01:26", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.903791, + -3.7126483 + ] + }, + "properties": { + "timestamp": "2006-05-31T12:02:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9849204, + -3.7887522 + ] + }, + "properties": { + "timestamp": "2006-06-02T06:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.943226, + -3.8103289 + ] + }, + "properties": { + "timestamp": "2006-06-04T00:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7682888, + -3.7162367 + ] + }, + "properties": { + "timestamp": "2006-06-05T12:01:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.814428, + -3.91001 + ] + }, + "properties": { + "timestamp": "2006-06-06T18:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8242268, + -3.9722749 + ] + }, + "properties": { + "timestamp": "2006-06-08T18:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8126909, + -3.9152551 + ] + }, + "properties": { + "timestamp": "2006-06-10T00:02:04", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7824942, + -3.8734038 + ] + }, + "properties": { + "timestamp": "2006-06-11T12:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8083985, + -3.7858507 + ] + }, + "properties": { + "timestamp": "2006-06-12T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9543964, + -3.7413841 + ] + }, + "properties": { + "timestamp": "2006-06-14T18:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8950296, + -3.7018146 + ] + }, + "properties": { + "timestamp": "2006-06-16T06:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8203813, + -3.7455616 + ] + }, + "properties": { + "timestamp": "2006-06-17T18:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9035137, + -3.8249956 + ] + }, + "properties": { + "timestamp": "2006-06-19T00:02:46", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8766692, + -3.862412 + ] + }, + "properties": { + "timestamp": "2006-06-20T06:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712361, + -3.8561658 + ] + }, + "properties": { + "timestamp": "2006-06-21T18:00:43", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8201775, + -4.0176032 + ] + }, + "properties": { + "timestamp": "2006-06-23T00:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7704973, + -3.9656249 + ] + }, + "properties": { + "timestamp": "2006-06-24T18:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7710494, + -3.9608136 + ] + }, + "properties": { + "timestamp": "2006-06-26T00:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7783418, + -3.8341399 + ] + }, + "properties": { + "timestamp": "2006-06-27T06:02:21", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8313266, + -3.7370384 + ] + }, + "properties": { + "timestamp": "2006-06-28T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9391316, + -3.8233855 + ] + }, + "properties": { + "timestamp": "2006-06-30T06:01:50", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9583589, + -3.797109 + ] + }, + "properties": { + "timestamp": "2006-07-01T18:01:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8129644, + -3.7802662 + ] + }, + "properties": { + "timestamp": "2006-07-03T12:00:56", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8114356, + -3.7783729 + ] + }, + "properties": { + "timestamp": "2006-07-04T18:01:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8114106, + -3.7783713 + ] + }, + "properties": { + "timestamp": "2006-07-05T18:03:05", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8120501, + -3.7782325 + ] + }, + "properties": { + "timestamp": "2006-07-08T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896287, + -3.7804894 + ] + }, + "properties": { + "timestamp": "2006-07-09T12:01:51", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8678113, + -3.8573333 + ] + }, + "properties": { + "timestamp": "2006-07-10T18:01:42", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8511506, + -3.9676744 + ] + }, + "properties": { + "timestamp": "2006-07-12T00:00:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.788008, + -3.837511 + ] + }, + "properties": { + "timestamp": "2006-07-13T18:00:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9408295, + -3.7118638 + ] + }, + "properties": { + "timestamp": "2006-07-15T06:02:24", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9856999, + -3.8025606 + ] + }, + "properties": { + "timestamp": "2006-07-16T18:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9695081, + -3.7903536 + ] + }, + "properties": { + "timestamp": "2006-07-18T12:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7731733, + -3.8393384 + ] + }, + "properties": { + "timestamp": "2006-07-21T00:01:13", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9418332, + -3.7831702 + ] + }, + "properties": { + "timestamp": "2006-07-24T12:02:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8687671, + -3.6871611 + ] + }, + "properties": { + "timestamp": "2006-07-27T12:01:24", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8421517, + -3.8475014 + ] + }, + "properties": { + "timestamp": "2006-07-30T12:00:59", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8154544, + -3.7808389 + ] + }, + "properties": { + "timestamp": "2006-08-02T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9539898, + -3.8403738 + ] + }, + "properties": { + "timestamp": "2006-08-05T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.940572, + -3.776771 + ] + }, + "properties": { + "timestamp": "2006-08-09T00:00:56", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9895173, + -3.8087961 + ] + }, + "properties": { + "timestamp": "2006-08-11T12:01:47", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9866803, + -3.7730017 + ] + }, + "properties": { + "timestamp": "2006-08-14T12:00:51", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0081405, + -3.8181395 + ] + }, + "properties": { + "timestamp": "2006-08-17T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9158213, + -3.7147287 + ] + }, + "properties": { + "timestamp": "2006-08-19T12:01:39", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8971185, + -3.7526227 + ] + }, + "properties": { + "timestamp": "2006-08-22T00:00:49", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9304345, + -3.7782123 + ] + }, + "properties": { + "timestamp": "2006-08-26T00:01:00", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9435979, + -3.7632919 + ] + }, + "properties": { + "timestamp": "2006-08-28T12:03:03", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7974296, + -3.7458006 + ] + }, + "properties": { + "timestamp": "2006-09-01T00:00:56", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9580127, + -3.7966451 + ] + }, + "properties": { + "timestamp": "2006-09-03T12:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9374736, + -3.7945904 + ] + }, + "properties": { + "timestamp": "2006-09-06T00:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8801102, + -3.7529973 + ] + }, + "properties": { + "timestamp": "2006-09-09T00:00:54", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712545, + -3.7762589 + ] + }, + "properties": { + "timestamp": "2006-09-12T12:01:23", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8929947, + -3.729483 + ] + }, + "properties": { + "timestamp": "2006-09-15T12:01:54", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341698, + -3.7628652 + ] + }, + "properties": { + "timestamp": "2006-09-20T00:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9738265, + -3.7955314 + ] + }, + "properties": { + "timestamp": "2006-09-24T00:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9519511, + -3.7416105 + ] + }, + "properties": { + "timestamp": "2006-09-27T12:01:52", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8838509, + -3.7260929 + ] + }, + "properties": { + "timestamp": "2006-09-30T12:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8801772, + -3.7289814 + ] + }, + "properties": { + "timestamp": "2006-10-03T00:00:55", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8387287, + -3.7566654 + ] + }, + "properties": { + "timestamp": "2006-10-06T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9054778, + -3.7733375 + ] + }, + "properties": { + "timestamp": "2006-10-09T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8056454, + -3.6941175 + ] + }, + "properties": { + "timestamp": "2006-10-12T12:02:23", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8632073, + -3.7367426 + ] + }, + "properties": { + "timestamp": "2006-10-15T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8695732, + -3.9913251 + ] + }, + "properties": { + "timestamp": "2006-10-18T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9019512, + -3.7547733 + ] + }, + "properties": { + "timestamp": "2006-10-21T00:00:48", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9536436, + -3.7770533 + ] + }, + "properties": { + "timestamp": "2006-10-24T00:01:12", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8341242, + -3.7047855 + ] + }, + "properties": { + "timestamp": "2006-10-28T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.684273, + -4.0381543 + ] + }, + "properties": { + "timestamp": "2006-10-30T12:01:41", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7905635, + -3.9806629 + ] + }, + "properties": { + "timestamp": "2006-11-03T00:00:54", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8526556, + -3.753436 + ] + }, + "properties": { + "timestamp": "2006-11-06T12:01:32", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8375261, + -3.7491005 + ] + }, + "properties": { + "timestamp": "2006-11-09T12:01:55", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7707893, + -3.6925166 + ] + }, + "properties": { + "timestamp": "2006-11-14T00:01:45", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7849278, + -4.0747174 + ] + }, + "properties": { + "timestamp": "2006-11-18T12:03:06", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8094392, + -3.8429285 + ] + }, + "properties": { + "timestamp": "2006-11-22T00:01:44", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8745319, + -3.6725119 + ] + }, + "properties": { + "timestamp": "2006-11-25T00:01:24", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93496, + -3.8000699 + ] + }, + "properties": { + "timestamp": "2006-11-28T00:01:56", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7307858, + -4.0336148 + ] + }, + "properties": { + "timestamp": "2006-12-01T00:01:25", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7712354, + -3.7647754 + ] + }, + "properties": { + "timestamp": "2006-12-04T00:01:50", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7622216, + -3.7670946 + ] + }, + "properties": { + "timestamp": "2006-12-06T12:01:55", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8604387, + -3.8508383 + ] + }, + "properties": { + "timestamp": "2006-12-10T00:01:52", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7586502, + -4.0935188 + ] + }, + "properties": { + "timestamp": "2006-12-13T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7499415, + -3.9975353 + ] + }, + "properties": { + "timestamp": "2006-12-17T00:00:48", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8220261, + -3.9528839 + ] + }, + "properties": { + "timestamp": "2006-12-21T00:01:50", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8197156, + -3.7173823 + ] + }, + "properties": { + "timestamp": "2006-12-24T00:00:42", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8419195, + -4.1092484 + ] + }, + "properties": { + "timestamp": "2006-12-26T12:00:55", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8331402, + -4.1285702 + ] + }, + "properties": { + "timestamp": "2006-12-30T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8232289, + -3.9805106 + ] + }, + "properties": { + "timestamp": "2007-01-03T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9002284, + -3.7613727 + ] + }, + "properties": { + "timestamp": "2007-01-06T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7914876, + -4.0083198 + ] + }, + "properties": { + "timestamp": "2007-01-09T12:02:09", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8211672, + -3.9798747 + ] + }, + "properties": { + "timestamp": "2007-01-12T00:02:05", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8472271, + -3.7184986 + ] + }, + "properties": { + "timestamp": "2007-01-17T00:00:55", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7958531, + -3.9437586 + ] + }, + "properties": { + "timestamp": "2007-01-20T00:00:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7248156, + -3.9515448 + ] + }, + "properties": { + "timestamp": "2007-01-22T12:01:49", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8103043, + -3.9670862 + ] + }, + "properties": { + "timestamp": "2007-01-25T12:01:41", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.972329, + -3.6972142 + ] + }, + "properties": { + "timestamp": "2007-01-29T00:01:16", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8176315, + -3.6663797 + ] + }, + "properties": { + "timestamp": "2007-02-02T00:00:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8382347, + -3.6987303 + ] + }, + "properties": { + "timestamp": "2007-02-04T12:00:56", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8279664, + -3.8397073 + ] + }, + "properties": { + "timestamp": "2007-02-07T12:00:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7373808, + -3.7606021 + ] + }, + "properties": { + "timestamp": "2007-02-11T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8291136, + -3.9649659 + ] + }, + "properties": { + "timestamp": "2007-02-15T12:02:52", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7686895, + -3.915274 + ] + }, + "properties": { + "timestamp": "2007-02-18T00:01:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7702883, + -3.7333822 + ] + }, + "properties": { + "timestamp": "2007-02-21T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.836334, + -3.7268192 + ] + }, + "properties": { + "timestamp": "2007-02-24T12:01:47", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8645415, + -4.0014815 + ] + }, + "properties": { + "timestamp": "2007-02-27T12:01:18", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8547661, + -4.0288684 + ] + }, + "properties": { + "timestamp": "2007-03-02T00:01:25", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7992338, + -3.9947069 + ] + }, + "properties": { + "timestamp": "2007-03-05T12:02:10", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7678836, + -3.7351812 + ] + }, + "properties": { + "timestamp": "2007-03-09T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9683745, + -3.7692018 + ] + }, + "properties": { + "timestamp": "2007-03-12T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7597777, + -3.7127047 + ] + }, + "properties": { + "timestamp": "2007-03-15T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8006917, + -3.9398587 + ] + }, + "properties": { + "timestamp": "2007-03-18T12:02:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.825878, + -3.9918951 + ] + }, + "properties": { + "timestamp": "2007-03-21T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6806739, + -4.0192521 + ] + }, + "properties": { + "timestamp": "2007-03-25T00:01:47", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8773225, + -3.7048654 + ] + }, + "properties": { + "timestamp": "2007-03-28T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8181609, + -3.6797627 + ] + }, + "properties": { + "timestamp": "2007-03-30T12:00:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8056758, + -3.9141159 + ] + }, + "properties": { + "timestamp": "2007-04-02T12:01:24", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8182786, + -4.0513442 + ] + }, + "properties": { + "timestamp": "2007-04-07T00:01:27", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8066169, + -3.9943551 + ] + }, + "properties": { + "timestamp": "2007-04-10T00:00:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8039128, + -4.0121782 + ] + }, + "properties": { + "timestamp": "2007-04-13T00:00:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8143938, + -3.96877 + ] + }, + "properties": { + "timestamp": "2007-04-15T12:01:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8022891, + -3.8747841 + ] + }, + "properties": { + "timestamp": "2007-04-18T12:01:40", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7614314, + -3.7425082 + ] + }, + "properties": { + "timestamp": "2007-04-22T00:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7610098, + -3.7426829 + ] + }, + "properties": { + "timestamp": "2007-04-25T00:02:11", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8184657, + -3.919059 + ] + }, + "properties": { + "timestamp": "2007-04-27T12:00:55", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8675882, + -3.960775 + ] + }, + "properties": { + "timestamp": "2007-05-01T00:00:55", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7615242, + -3.7671445 + ] + }, + "properties": { + "timestamp": "2007-05-05T00:00:43", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7596996, + -3.7433981 + ] + }, + "properties": { + "timestamp": "2007-05-07T12:03:01", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8253059, + -3.9917473 + ] + }, + "properties": { + "timestamp": "2007-05-11T00:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8436642, + -4.013605 + ] + }, + "properties": { + "timestamp": "2007-05-14T00:01:41", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8208642, + -4.1058691 + ] + }, + "properties": { + "timestamp": "2007-05-17T00:00:48", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85825, + -4.0648844 + ] + }, + "properties": { + "timestamp": "2007-05-20T12:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7907279, + -3.8042213 + ] + }, + "properties": { + "timestamp": "2007-05-23T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8245728, + -3.967109 + ] + }, + "properties": { + "timestamp": "2007-05-26T00:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8141076, + -3.915653 + ] + }, + "properties": { + "timestamp": "2007-05-29T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.694143, + -3.9798917 + ] + }, + "properties": { + "timestamp": "2007-06-01T12:00:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7742297, + -3.9990771 + ] + }, + "properties": { + "timestamp": "2007-06-04T00:00:50", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85, + -3.9885601 + ] + }, + "properties": { + "timestamp": "2007-06-07T12:01:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7832177, + -3.7964132 + ] + }, + "properties": { + "timestamp": "2007-06-10T00:00:49", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7835797, + -3.7829227 + ] + }, + "properties": { + "timestamp": "2007-06-13T00:00:48", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.818917, + -3.9977102 + ] + }, + "properties": { + "timestamp": "2007-06-16T00:00:55", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8727833, + -4.0978781 + ] + }, + "properties": { + "timestamp": "2007-06-20T00:01:24", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7681338, + -3.7612553 + ] + }, + "properties": { + "timestamp": "2007-06-24T12:01:36", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7922227, + -3.7504653 + ] + }, + "properties": { + "timestamp": "2007-06-27T00:01:11", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8080821, + -3.809968 + ] + }, + "properties": { + "timestamp": "2007-06-29T12:00:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8256736, + -3.9905683 + ] + }, + "properties": { + "timestamp": "2007-07-02T00:01:11", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8023723, + -3.8073425 + ] + }, + "properties": { + "timestamp": "2007-07-05T12:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8328253, + -3.8415042 + ] + }, + "properties": { + "timestamp": "2007-07-08T12:01:54", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8321514, + -3.8415925 + ] + }, + "properties": { + "timestamp": "2007-07-11T00:01:17", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7819684, + -3.9333817 + ] + }, + "properties": { + "timestamp": "2007-07-14T00:01:23", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7894568, + -3.8038727 + ] + }, + "properties": { + "timestamp": "2007-07-17T00:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92913667, + -3.80072667 + ] + }, + "properties": { + "timestamp": "2002-04-28T11:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.941715, + -3.79895333 + ] + }, + "properties": { + "timestamp": "2002-04-29T22:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.968305, + -3.83456833 + ] + }, + "properties": { + "timestamp": "2002-05-01T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.929525, + -3.79924667 + ] + }, + "properties": { + "timestamp": "2002-05-03T10:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93491, + -3.87698 + ] + }, + "properties": { + "timestamp": "2002-05-05T04:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90191833, + -3.86061 + ] + }, + "properties": { + "timestamp": "2002-05-07T12:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871845, + -3.85364 + ] + }, + "properties": { + "timestamp": "2002-05-09T13:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85860167, + -3.81106333 + ] + }, + "properties": { + "timestamp": "2002-05-11T00:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00408, + -3.766455 + ] + }, + "properties": { + "timestamp": "2002-05-12T11:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96916, + -3.721815 + ] + }, + "properties": { + "timestamp": "2002-05-13T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92052667, + -3.834145 + ] + }, + "properties": { + "timestamp": "2002-05-15T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88229333, + -3.82937833 + ] + }, + "properties": { + "timestamp": "2002-05-17T10:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92769167, + -3.801265 + ] + }, + "properties": { + "timestamp": "2002-05-18T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95025167, + -3.80272833 + ] + }, + "properties": { + "timestamp": "2002-05-20T15:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93991333, + -3.82267833 + ] + }, + "properties": { + "timestamp": "2002-05-22T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93635333, + -3.81522667 + ] + }, + "properties": { + "timestamp": "2002-05-24T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.949785, + -3.80407333 + ] + }, + "properties": { + "timestamp": "2002-05-26T11:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87726, + -3.820245 + ] + }, + "properties": { + "timestamp": "2002-05-27T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93832333, + -3.82141667 + ] + }, + "properties": { + "timestamp": "2002-05-29T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93756333, + -3.82357333 + ] + }, + "properties": { + "timestamp": "2002-05-31T10:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93057, + -3.76852667 + ] + }, + "properties": { + "timestamp": "2002-06-01T21:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95159333, + -3.78455 + ] + }, + "properties": { + "timestamp": "2002-06-03T16:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93485, + -3.85882 + ] + }, + "properties": { + "timestamp": "2002-06-05T17:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91826833, + -3.85027 + ] + }, + "properties": { + "timestamp": "2002-06-07T11:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95541333, + -3.80047 + ] + }, + "properties": { + "timestamp": "2002-06-09T05:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95564, + -3.80034667 + ] + }, + "properties": { + "timestamp": "2002-06-10T15:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95511, + -3.80021667 + ] + }, + "properties": { + "timestamp": "2002-06-12T02:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92781167, + -3.79920833 + ] + }, + "properties": { + "timestamp": "2002-06-13T20:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89089833, + -3.800295 + ] + }, + "properties": { + "timestamp": "2002-06-15T14:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89184, + -3.81185167 + ] + }, + "properties": { + "timestamp": "2002-06-17T01:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96574, + -3.82538 + ] + }, + "properties": { + "timestamp": "2002-06-18T12:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92484833, + -3.87257333 + ] + }, + "properties": { + "timestamp": "2002-06-20T07:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92270167, + -3.87681667 + ] + }, + "properties": { + "timestamp": "2002-06-22T00:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92302, + -3.87746167 + ] + }, + "properties": { + "timestamp": "2002-06-23T12:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88739833, + -3.85067167 + ] + }, + "properties": { + "timestamp": "2002-06-24T22:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88885667, + -3.84834833 + ] + }, + "properties": { + "timestamp": "2002-06-26T23:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96068333, + -3.77404 + ] + }, + "properties": { + "timestamp": "2002-06-28T17:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88459, + -3.84705167 + ] + }, + "properties": { + "timestamp": "2002-06-30T04:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89281667, + -3.757215 + ] + }, + "properties": { + "timestamp": "2002-07-01T22:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.020955, + -3.75723833 + ] + }, + "properties": { + "timestamp": "2002-07-04T06:04:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92913667, + -3.82233667 + ] + }, + "properties": { + "timestamp": "2002-07-05T17:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96524333, + -3.80891333 + ] + }, + "properties": { + "timestamp": "2002-07-07T04:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95494, + -3.81352333 + ] + }, + "properties": { + "timestamp": "2002-07-08T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89440167, + -3.84233167 + ] + }, + "properties": { + "timestamp": "2002-07-10T16:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88781, + -3.82275 + ] + }, + "properties": { + "timestamp": "2002-07-12T03:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88111333, + -3.83146167 + ] + }, + "properties": { + "timestamp": "2002-07-13T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.906165, + -3.8373 + ] + }, + "properties": { + "timestamp": "2002-07-15T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.879455, + -3.81271667 + ] + }, + "properties": { + "timestamp": "2002-07-16T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93012833, + -3.72266833 + ] + }, + "properties": { + "timestamp": "2002-07-18T13:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95433333, + -3.71189167 + ] + }, + "properties": { + "timestamp": "2002-07-20T07:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95363167, + -3.711785 + ] + }, + "properties": { + "timestamp": "2002-07-22T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.953505, + -3.71197667 + ] + }, + "properties": { + "timestamp": "2002-07-23T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92384667, + -3.70760667 + ] + }, + "properties": { + "timestamp": "2002-07-25T13:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94201167, + -3.81712667 + ] + }, + "properties": { + "timestamp": "2002-07-27T21:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87999167, + -3.828355 + ] + }, + "properties": { + "timestamp": "2002-07-29T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88596833, + -3.84989333 + ] + }, + "properties": { + "timestamp": "2002-07-31T16:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.886975, + -3.85266833 + ] + }, + "properties": { + "timestamp": "2002-08-02T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87921, + -3.81573167 + ] + }, + "properties": { + "timestamp": "2002-08-04T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90472833, + -3.85460333 + ] + }, + "properties": { + "timestamp": "2002-08-06T06:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94431833, + -3.82419167 + ] + }, + "properties": { + "timestamp": "2002-08-07T23:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88405833, + -3.82670667 + ] + }, + "properties": { + "timestamp": "2002-08-09T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89795, + -3.82587167 + ] + }, + "properties": { + "timestamp": "2002-08-10T21:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85474833, + -3.79680167 + ] + }, + "properties": { + "timestamp": "2002-08-12T08:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.84566167, + -3.771845 + ] + }, + "properties": { + "timestamp": "2002-08-14T03:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.864205, + -3.74640333 + ] + }, + "properties": { + "timestamp": "2002-08-15T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89871, + -3.74159333 + ] + }, + "properties": { + "timestamp": "2002-08-17T08:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.83529167, + -3.76430667 + ] + }, + "properties": { + "timestamp": "2002-08-19T01:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92966333, + -3.81554667 + ] + }, + "properties": { + "timestamp": "2002-08-20T19:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87630333, + -3.80187333 + ] + }, + "properties": { + "timestamp": "2002-08-22T20:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93055833, + -3.79657167 + ] + }, + "properties": { + "timestamp": "2002-08-25T04:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86906333, + -3.78058333 + ] + }, + "properties": { + "timestamp": "2002-08-26T15:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98372833, + -3.79253667 + ] + }, + "properties": { + "timestamp": "2002-08-28T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9464, + -3.78568167 + ] + }, + "properties": { + "timestamp": "2002-08-30T03:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.878105, + -3.82974333 + ] + }, + "properties": { + "timestamp": "2002-09-01T04:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86965333, + -3.77430333 + ] + }, + "properties": { + "timestamp": "2002-09-03T13:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92938667, + -3.745095 + ] + }, + "properties": { + "timestamp": "2002-09-05T14:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.908805, + -3.849975 + ] + }, + "properties": { + "timestamp": "2002-09-07T22:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871405, + -3.782155 + ] + }, + "properties": { + "timestamp": "2002-09-09T22:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87092333, + -3.78068667 + ] + }, + "properties": { + "timestamp": "2002-09-11T23:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + } + ] +} \ No newline at end of file diff --git a/Homework3_engagement/data/road.geojson b/Homework3_engagement/data/road.geojson new file mode 100644 index 0000000..29400f0 --- /dev/null +++ b/Homework3_engagement/data/road.geojson @@ -0,0 +1,140837 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2025-12-20T21:35:01Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "way/5786301", + "highway": "secondary", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7496791, + -2.0690394 + ], + [ + 33.7506645, + -2.0687623 + ], + [ + 33.7515157, + -2.0684726 + ], + [ + 33.7524733, + -2.0680783 + ], + [ + 33.7536179, + -2.0674373 + ], + [ + 33.7552128, + -2.0665441 + ], + [ + 33.7558521, + -2.0661862 + ], + [ + 33.7571108, + -2.0655069 + ], + [ + 33.7575363, + -2.0653118 + ], + [ + 33.7595915, + -2.0645824 + ], + [ + 33.7598701, + -2.0644842 + ], + [ + 33.7609824, + -2.0641017 + ], + [ + 33.7619534, + -2.0637678 + ], + [ + 33.7622061, + -2.0636809 + ], + [ + 33.7624811, + -2.0635863 + ], + [ + 33.7629762, + -2.0634161 + ], + [ + 33.7631969, + -2.0633402 + ], + [ + 33.7633484, + -2.0632881 + ], + [ + 33.763475, + -2.0632446 + ], + [ + 33.7638447, + -2.0631175 + ], + [ + 33.7649871, + -2.0627232 + ], + [ + 33.7650367, + -2.0627061 + ], + [ + 33.7654903, + -2.0625496 + ], + [ + 33.7669587, + -2.0620428 + ], + [ + 33.7685499, + -2.061494 + ], + [ + 33.7687618, + -2.0614117 + ], + [ + 33.7697529, + -2.0610029 + ], + [ + 33.770245, + -2.0607989 + ], + [ + 33.7703904, + -2.0607346 + ], + [ + 33.771113, + -2.0604231 + ], + [ + 33.7714597, + -2.0602638 + ], + [ + 33.7720199, + -2.0599986 + ], + [ + 33.7724444, + -2.0597999 + ], + [ + 33.7743288, + -2.0589321 + ], + [ + 33.7748485, + -2.0586897 + ], + [ + 33.7750456, + -2.0586008 + ], + [ + 33.7753156, + -2.0584789 + ], + [ + 33.7753923, + -2.0584403 + ], + [ + 33.7757791, + -2.0582454 + ], + [ + 33.7764266, + -2.0579706 + ], + [ + 33.7773069, + -2.0575704 + ], + [ + 33.7779892, + -2.0572517 + ], + [ + 33.7782759, + -2.0571178 + ], + [ + 33.7786453, + -2.0569513 + ], + [ + 33.7794397, + -2.0566932 + ], + [ + 33.7802008, + -2.0565416 + ], + [ + 33.7806065, + -2.0565168 + ], + [ + 33.7813108, + -2.0564225 + ], + [ + 33.7857329, + -2.0558307 + ], + [ + 33.7858707, + -2.0558136 + ], + [ + 33.7872122, + -2.0556013 + ], + [ + 33.7881014, + -2.0554784 + ], + [ + 33.7889486, + -2.0553834 + ], + [ + 33.789537, + -2.0552974 + ], + [ + 33.79134, + -2.0549007 + ], + [ + 33.7920412, + -2.0547043 + ], + [ + 33.793544, + -2.0542836 + ], + [ + 33.7938303, + -2.0541946 + ], + [ + 33.7943425, + -2.0540476 + ], + [ + 33.7948499, + -2.0539174 + ], + [ + 33.7952501, + -2.0538095 + ], + [ + 33.7958266, + -2.0536539 + ], + [ + 33.7961042, + -2.053579 + ], + [ + 33.7963659, + -2.0535084 + ], + [ + 33.7964227, + -2.0534922 + ], + [ + 33.7977547, + -2.0531127 + ], + [ + 33.7985884, + -2.0528954 + ], + [ + 33.7987176, + -2.0528617 + ], + [ + 33.8007468, + -2.052294 + ], + [ + 33.8019148, + -2.0519296 + ], + [ + 33.8019868, + -2.0519036 + ], + [ + 33.8026204, + -2.0516744 + ], + [ + 33.8030791, + -2.0515194 + ], + [ + 33.8062337, + -2.0504538 + ], + [ + 33.8083312, + -2.0497452 + ], + [ + 33.8084708, + -2.0496981 + ], + [ + 33.8093311, + -2.0493928 + ], + [ + 33.811033, + -2.0487887 + ], + [ + 33.8123731, + -2.048343 + ], + [ + 33.8124907, + -2.0483039 + ], + [ + 33.8140438, + -2.0478205 + ], + [ + 33.8147056, + -2.0476215 + ], + [ + 33.8178003, + -2.0466453 + ], + [ + 33.8209006, + -2.0456622 + ], + [ + 33.821157, + -2.0455892 + ], + [ + 33.8244411, + -2.0446544 + ], + [ + 33.8255678, + -2.0443257 + ], + [ + 33.8261685, + -2.044129 + ], + [ + 33.8267265, + -2.0439218 + ], + [ + 33.8279841, + -2.0433691 + ], + [ + 33.832022, + -2.0416506 + ] + ] + }, + "id": "way/5786301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/23854461", + "highway": "trunk", + "lanes:backward": "1", + "lanes:forward": "1", + "oneway": "no", + "ref": "A1", + "source": "Africover", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4752922, + -1.2444598 + ], + [ + 34.4753137, + -1.2442776 + ], + [ + 34.475386, + -1.244061 + ], + [ + 34.4754504, + -1.2439349 + ], + [ + 34.4755161, + -1.243825 + ], + [ + 34.4756033, + -1.2437003 + ], + [ + 34.4757293, + -1.2435562 + ], + [ + 34.4759104, + -1.2433356 + ], + [ + 34.4759768, + -1.2432555 + ], + [ + 34.4766426, + -1.2424386 + ], + [ + 34.4770503, + -1.2419693 + ], + [ + 34.477366, + -1.2415771 + ], + [ + 34.4774674, + -1.2414478 + ], + [ + 34.4775742, + -1.2413141 + ], + [ + 34.4781607, + -1.2405642 + ], + [ + 34.4787991, + -1.2397744 + ], + [ + 34.4790404, + -1.2394697 + ], + [ + 34.4797057, + -1.2386496 + ], + [ + 34.4803271, + -1.2378697 + ], + [ + 34.4804633, + -1.2377011 + ], + [ + 34.4807329, + -1.2373673 + ], + [ + 34.4812466, + -1.2367228 + ], + [ + 34.4816004, + -1.2362721 + ], + [ + 34.4817552, + -1.236073 + ], + [ + 34.4819685, + -1.2358021 + ], + [ + 34.4822337, + -1.2354853 + ], + [ + 34.4824228, + -1.2352345 + ], + [ + 34.4825763, + -1.2349871 + ], + [ + 34.4826484, + -1.2348435 + ], + [ + 34.4827391, + -1.2347135 + ], + [ + 34.4828003, + -1.2346064 + ], + [ + 34.4828634, + -1.2344871 + ], + [ + 34.4828962, + -1.234414 + ], + [ + 34.482982, + -1.2342102 + ], + [ + 34.4830318, + -1.2340591 + ], + [ + 34.4830709, + -1.2339464 + ], + [ + 34.4831764, + -1.2335183 + ], + [ + 34.4831926, + -1.2334057 + ], + [ + 34.4832154, + -1.2332247 + ], + [ + 34.4832516, + -1.2328614 + ], + [ + 34.4832556, + -1.2325986 + ], + [ + 34.4832288, + -1.2322459 + ], + [ + 34.4831792, + -1.2320153 + ], + [ + 34.4831295, + -1.2318075 + ], + [ + 34.4830316, + -1.2314803 + ], + [ + 34.4829525, + -1.2313054 + ], + [ + 34.4828767, + -1.231117 + ], + [ + 34.4827879, + -1.2309216 + ], + [ + 34.4826725, + -1.2306912 + ], + [ + 34.4825877, + -1.2305498 + ], + [ + 34.4825555, + -1.2304948 + ], + [ + 34.4824979, + -1.230409 + ], + [ + 34.4824027, + -1.2302823 + ], + [ + 34.4823222, + -1.2301871 + ], + [ + 34.4821867, + -1.2300202 + ], + [ + 34.481999, + -1.2298191 + ], + [ + 34.4818012, + -1.2296119 + ], + [ + 34.4815819, + -1.2293847 + ], + [ + 34.4813861, + -1.2291896 + ], + [ + 34.4811762, + -1.2289737 + ], + [ + 34.4810307, + -1.2288222 + ], + [ + 34.4808738, + -1.2286546 + ], + [ + 34.480729, + -1.2285091 + ], + [ + 34.4804574, + -1.228239 + ], + [ + 34.4802669, + -1.2280238 + ], + [ + 34.4801161, + -1.2278508 + ], + [ + 34.4799055, + -1.2275873 + ], + [ + 34.4797312, + -1.2273353 + ], + [ + 34.4795997, + -1.2271194 + ], + [ + 34.4794992, + -1.2269484 + ], + [ + 34.4794281, + -1.226813 + ], + [ + 34.4793744, + -1.226695 + ], + [ + 34.4792692, + -1.2264564 + ], + [ + 34.4791478, + -1.2261225 + ], + [ + 34.4790512, + -1.2257873 + ], + [ + 34.4789399, + -1.225373 + ], + [ + 34.4788781, + -1.225208 + ], + [ + 34.4788259, + -1.2249976 + ], + [ + 34.4787267, + -1.2246315 + ], + [ + 34.4785282, + -1.223823 + ], + [ + 34.4783002, + -1.2229623 + ], + [ + 34.4781527, + -1.2222999 + ], + [ + 34.4780937, + -1.2219513 + ], + [ + 34.4779971, + -1.2213211 + ], + [ + 34.477922, + -1.2206453 + ], + [ + 34.4778845, + -1.219924 + ], + [ + 34.4778576, + -1.219326 + ], + [ + 34.477812, + -1.218854 + ], + [ + 34.4776574, + -1.2179963 + ], + [ + 34.4776404, + -1.2179021 + ], + [ + 34.4775465, + -1.217599 + ], + [ + 34.4774339, + -1.2172585 + ], + [ + 34.4773266, + -1.2169689 + ], + [ + 34.4771549, + -1.2165639 + ], + [ + 34.4769189, + -1.2160276 + ], + [ + 34.4767365, + -1.2155932 + ], + [ + 34.4765487, + -1.2151105 + ], + [ + 34.4763368, + -1.2143034 + ], + [ + 34.4761786, + -1.2137563 + ], + [ + 34.4759238, + -1.2131878 + ], + [ + 34.4756502, + -1.2126649 + ], + [ + 34.4755965, + -1.2125823 + ], + [ + 34.4754705, + -1.2123887 + ], + [ + 34.4752675, + -1.212117 + ], + [ + 34.4750145, + -1.2118014 + ], + [ + 34.4746739, + -1.2114608 + ], + [ + 34.4744512, + -1.2112731 + ], + [ + 34.474014, + -1.2108897 + ], + [ + 34.4737351, + -1.2106349 + ], + [ + 34.4733837, + -1.210348 + ], + [ + 34.4730163, + -1.2100584 + ], + [ + 34.4725201, + -1.2096347 + ], + [ + 34.4720373, + -1.2092485 + ], + [ + 34.4714771, + -1.2087809 + ], + [ + 34.4714029, + -1.2087189 + ], + [ + 34.47101, + -1.2084145 + ], + [ + 34.4707257, + -1.2081732 + ], + [ + 34.4703877, + -1.2078675 + ], + [ + 34.4701597, + -1.2076127 + ], + [ + 34.4698888, + -1.2072614 + ], + [ + 34.4696474, + -1.2069557 + ], + [ + 34.4693416, + -1.2065562 + ], + [ + 34.4691887, + -1.2063256 + ], + [ + 34.4690466, + -1.2060348 + ], + [ + 34.4689178, + -1.205808 + ], + [ + 34.4685397, + -1.2051215 + ], + [ + 34.4682553, + -1.2045932 + ], + [ + 34.467971, + -1.2041293 + ], + [ + 34.4677135, + -1.2037727 + ], + [ + 34.4673192, + -1.2032417 + ], + [ + 34.4666165, + -1.2023621 + ], + [ + 34.466072, + -1.2016783 + ], + [ + 34.4656938, + -1.2012117 + ], + [ + 34.4652754, + -1.2007022 + ], + [ + 34.4642588, + -1.1994258 + ], + [ + 34.463658, + -1.198683 + ], + [ + 34.4630492, + -1.1979375 + ], + [ + 34.4626692, + -1.1974626 + ], + [ + 34.4623303, + -1.1970391 + ], + [ + 34.4617295, + -1.1962963 + ], + [ + 34.4611126, + -1.1955455 + ], + [ + 34.4605976, + -1.1948804 + ], + [ + 34.4601577, + -1.1943334 + ], + [ + 34.4597018, + -1.1937729 + ], + [ + 34.4593263, + -1.1933143 + ], + [ + 34.4591519, + -1.1931239 + ], + [ + 34.4589588, + -1.1929175 + ], + [ + 34.4585484, + -1.192534 + ], + [ + 34.4584474, + -1.1924536 + ], + [ + 34.4581676, + -1.192231 + ], + [ + 34.4578108, + -1.1919708 + ], + [ + 34.4569552, + -1.1914426 + ], + [ + 34.4560781, + -1.190917 + ], + [ + 34.4554639, + -1.190512 + ], + [ + 34.4550535, + -1.1902063 + ], + [ + 34.4545788, + -1.189796 + ], + [ + 34.4542274, + -1.1894501 + ], + [ + 34.4540066, + -1.1892032 + ], + [ + 34.4538653, + -1.1890452 + ], + [ + 34.4534844, + -1.1886161 + ], + [ + 34.4531465, + -1.188238 + ], + [ + 34.4528809, + -1.1879591 + ], + [ + 34.452657, + -1.1877298 + ], + [ + 34.4524464, + -1.1875167 + ], + [ + 34.4521245, + -1.1872217 + ], + [ + 34.4518724, + -1.1869964 + ], + [ + 34.4515774, + -1.1867363 + ], + [ + 34.4512501, + -1.1864869 + ], + [ + 34.4509967, + -1.1863126 + ], + [ + 34.4506051, + -1.1860351 + ], + [ + 34.4501712, + -1.1857481 + ], + [ + 34.4498366, + -1.1855235 + ], + [ + 34.4497072, + -1.1854464 + ], + [ + 34.4495295, + -1.1853197 + ], + [ + 34.4490829, + -1.1849651 + ], + [ + 34.4489005, + -1.1847827 + ], + [ + 34.4486012, + -1.1844918 + ] + ] + }, + "id": "way/23854461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/23956682", + "highway": "primary", + "ref": "T17", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8740484, + -1.5539228 + ], + [ + 33.8718116, + -1.5514681 + ], + [ + 33.871408, + -1.5510536 + ], + [ + 33.8681091, + -1.5476648 + ], + [ + 33.8674424, + -1.5469456 + ], + [ + 33.8669631, + -1.5464861 + ], + [ + 33.8661014, + -1.5457845 + ], + [ + 33.8656108, + -1.5454442 + ], + [ + 33.8653766, + -1.5452817 + ], + [ + 33.8651698, + -1.5451658 + ], + [ + 33.8620262, + -1.5436493 + ], + [ + 33.8609029, + -1.5430905 + ], + [ + 33.8596126, + -1.5422697 + ], + [ + 33.8591257, + -1.541966 + ], + [ + 33.8586867, + -1.5416758 + ], + [ + 33.8585639, + -1.5415936 + ], + [ + 33.8583063, + -1.541407 + ], + [ + 33.8578342, + -1.5410785 + ], + [ + 33.8575298, + -1.5408667 + ], + [ + 33.8571006, + -1.5405744 + ], + [ + 33.8565372, + -1.5401836 + ], + [ + 33.8555545, + -1.5395001 + ], + [ + 33.854987, + -1.5391212 + ], + [ + 33.8542575, + -1.5386466 + ], + [ + 33.8540585, + -1.5385067 + ], + [ + 33.853215, + -1.5379137 + ], + [ + 33.8528095, + -1.5376344 + ], + [ + 33.8524352, + -1.5373767 + ], + [ + 33.8513312, + -1.5366196 + ], + [ + 33.8509104, + -1.5363423 + ], + [ + 33.850851, + -1.5363032 + ], + [ + 33.8504755, + -1.5360673 + ], + [ + 33.8500692, + -1.5358259 + ], + [ + 33.8494254, + -1.5355016 + ], + [ + 33.8488045, + -1.535287 + ], + [ + 33.8485994, + -1.5352253 + ], + [ + 33.8484478, + -1.5351878 + ], + [ + 33.8481997, + -1.5351328 + ], + [ + 33.8479368, + -1.535094 + ], + [ + 33.8476593, + -1.5350645 + ], + [ + 33.8475439, + -1.5350484 + ], + [ + 33.8466641, + -1.5349116 + ], + [ + 33.8460901, + -1.5348285 + ], + [ + 33.8444999, + -1.5346217 + ], + [ + 33.8434323, + -1.5344455 + ], + [ + 33.8431408, + -1.5344206 + ], + [ + 33.8429681, + -1.5344006 + ], + [ + 33.8424331, + -1.5343084 + ], + [ + 33.842234, + -1.5342753 + ], + [ + 33.8416762, + -1.5341846 + ], + [ + 33.841429, + -1.5341493 + ], + [ + 33.8413112, + -1.5341219 + ], + [ + 33.8412102, + -1.5341126 + ], + [ + 33.8411202, + -1.5340957 + ], + [ + 33.8410238, + -1.5340777 + ], + [ + 33.8406188, + -1.5339986 + ], + [ + 33.8402875, + -1.5339222 + ], + [ + 33.8396863, + -1.5337341 + ], + [ + 33.8394019, + -1.533626 + ], + [ + 33.8390842, + -1.5334994 + ], + [ + 33.8387127, + -1.533368 + ], + [ + 33.838543, + -1.5332924 + ], + [ + 33.838101, + -1.5330618 + ], + [ + 33.8379833, + -1.5330004 + ], + [ + 33.8376809, + -1.5328426 + ], + [ + 33.8364328, + -1.5321327 + ], + [ + 33.8347981, + -1.5311214 + ], + [ + 33.8345413, + -1.5309634 + ], + [ + 33.8343046, + -1.5308226 + ], + [ + 33.8338692, + -1.5305522 + ], + [ + 33.8333711, + -1.5302707 + ], + [ + 33.8330768, + -1.5300983 + ], + [ + 33.8325856, + -1.5298118 + ], + [ + 33.8317139, + -1.5292833 + ], + [ + 33.8315408, + -1.5291714 + ], + [ + 33.831333, + -1.529033 + ], + [ + 33.8312285, + -1.5289631 + ], + [ + 33.8311639, + -1.5289103 + ], + [ + 33.8308795, + -1.5286931 + ], + [ + 33.8307858, + -1.5286107 + ], + [ + 33.8306081, + -1.5284731 + ], + [ + 33.8303415, + -1.5282367 + ], + [ + 33.830074, + -1.5279425 + ], + [ + 33.8299812, + -1.5278533 + ], + [ + 33.8298614, + -1.52772 + ], + [ + 33.8298456, + -1.5276959 + ], + [ + 33.8295671, + -1.527321 + ], + [ + 33.8294021, + -1.5270871 + ], + [ + 33.8292596, + -1.5268544 + ], + [ + 33.8289856, + -1.5262968 + ], + [ + 33.828873, + -1.526034 + ], + [ + 33.8287599, + -1.5257016 + ], + [ + 33.828699, + -1.5254736 + ], + [ + 33.8286562, + -1.5253677 + ], + [ + 33.8282222, + -1.5237104 + ], + [ + 33.8280684, + -1.5230873 + ], + [ + 33.8278953, + -1.5223577 + ], + [ + 33.8278042, + -1.521996 + ], + [ + 33.8276942, + -1.5215844 + ], + [ + 33.8275128, + -1.5210421 + ], + [ + 33.8272776, + -1.5205875 + ], + [ + 33.8270871, + -1.5203183 + ], + [ + 33.8268587, + -1.5200199 + ], + [ + 33.8266575, + -1.5198296 + ], + [ + 33.8262699, + -1.5195373 + ], + [ + 33.8260572, + -1.5194177 + ], + [ + 33.8258368, + -1.5192946 + ], + [ + 33.8255994, + -1.5191861 + ], + [ + 33.8254775, + -1.5191381 + ], + [ + 33.8252192, + -1.5190364 + ], + [ + 33.8247035, + -1.5188248 + ], + [ + 33.8245664, + -1.5187701 + ], + [ + 33.8244494, + -1.5187202 + ], + [ + 33.8241658, + -1.5186002 + ], + [ + 33.8240319, + -1.5185287 + ], + [ + 33.8237601, + -1.5183836 + ], + [ + 33.8232592, + -1.5181162 + ], + [ + 33.8224585, + -1.5176095 + ], + [ + 33.8209787, + -1.5165151 + ], + [ + 33.8202588, + -1.5159846 + ], + [ + 33.8198384, + -1.5156842 + ], + [ + 33.8190689, + -1.5151299 + ], + [ + 33.8187394, + -1.5148933 + ], + [ + 33.81806, + -1.5144236 + ], + [ + 33.8177936, + -1.5142343 + ], + [ + 33.8173721, + -1.5139349 + ], + [ + 33.8169938, + -1.5136669 + ], + [ + 33.8166432, + -1.5134193 + ], + [ + 33.816364, + -1.5132315 + ], + [ + 33.8159558, + -1.5129517 + ], + [ + 33.8153433, + -1.5125957 + ], + [ + 33.8150811, + -1.51244 + ], + [ + 33.8150298, + -1.5124116 + ], + [ + 33.8145627, + -1.5121648 + ], + [ + 33.814061, + -1.5118996 + ], + [ + 33.8136464, + -1.5116727 + ], + [ + 33.8134149, + -1.5115768 + ], + [ + 33.8127462, + -1.5112172 + ], + [ + 33.8125984, + -1.5111477 + ], + [ + 33.8122892, + -1.5109832 + ], + [ + 33.8120521, + -1.5108443 + ], + [ + 33.8116976, + -1.5106673 + ], + [ + 33.8104032, + -1.5100041 + ], + [ + 33.8101324, + -1.5099008 + ], + [ + 33.8098714, + -1.5098113 + ], + [ + 33.8095826, + -1.5097292 + ], + [ + 33.8092527, + -1.5096622 + ], + [ + 33.8090968, + -1.5096446 + ], + [ + 33.8090325, + -1.5096373 + ], + [ + 33.8085362, + -1.5095773 + ], + [ + 33.8078552, + -1.5094879 + ], + [ + 33.807469, + -1.5094316 + ], + [ + 33.8071606, + -1.509378 + ], + [ + 33.8070399, + -1.5093324 + ], + [ + 33.8069085, + -1.5092653 + ], + [ + 33.8066858, + -1.5091367 + ], + [ + 33.8065624, + -1.5090294 + ], + [ + 33.8064712, + -1.5089275 + ], + [ + 33.8063572, + -1.5087331 + ], + [ + 33.8063278, + -1.508655 + ], + [ + 33.8062708, + -1.50844 + ], + [ + 33.8062141, + -1.5082264 + ], + [ + 33.8062061, + -1.5081642 + ], + [ + 33.8061615, + -1.5078176 + ], + [ + 33.8061399, + -1.5076271 + ], + [ + 33.8060919, + -1.5072115 + ], + [ + 33.8060637, + -1.5069673 + ], + [ + 33.8060555, + -1.5068964 + ], + [ + 33.8060508, + -1.5068528 + ], + [ + 33.8060273, + -1.5064486 + ], + [ + 33.8060206, + -1.5063011 + ], + [ + 33.8060241, + -1.5061444 + ], + [ + 33.8060273, + -1.5060049 + ], + [ + 33.8061411, + -1.5047515 + ], + [ + 33.8062208, + -1.5041651 + ], + [ + 33.8062267, + -1.5040781 + ], + [ + 33.8062406, + -1.5039296 + ], + [ + 33.8063136, + -1.5031803 + ], + [ + 33.8062693, + -1.5022696 + ], + [ + 33.8062258, + -1.5010147 + ], + [ + 33.8062137, + -1.5007422 + ], + [ + 33.8062178, + -1.5005161 + ], + [ + 33.8062178, + -1.4995369 + ], + [ + 33.8062208, + -1.4994372 + ], + [ + 33.8062261, + -1.4992641 + ], + [ + 33.8062339, + -1.4990101 + ], + [ + 33.8062353, + -1.4989225 + ], + [ + 33.8062647, + -1.4984357 + ], + [ + 33.8062969, + -1.498081 + ], + [ + 33.8063218, + -1.497729 + ], + [ + 33.8063806, + -1.4970775 + ] + ] + }, + "id": "way/23956682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/27096155", + "highway": "secondary", + "lanes": "2", + "ref": "C12", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.5944163, + -1.3978116 + ], + [ + 35.5944203, + -1.3980626 + ], + [ + 35.594435, + -1.3986525 + ], + [ + 35.5944532, + -1.3990085 + ], + [ + 35.5944706, + -1.399459 + ], + [ + 35.5944988, + -1.3998049 + ], + [ + 35.5945229, + -1.4001414 + ], + [ + 35.5945524, + -1.4004672 + ], + [ + 35.5946476, + -1.4011871 + ], + [ + 35.5947442, + -1.4018717 + ], + [ + 35.5947522, + -1.4019285 + ], + [ + 35.5948233, + -1.4023924 + ], + [ + 35.5948863, + -1.4028282 + ], + [ + 35.5949574, + -1.4033497 + ], + [ + 35.5950131, + -1.4037016 + ], + [ + 35.5950526, + -1.4039543 + ], + [ + 35.5950848, + -1.4042225 + ], + [ + 35.5951036, + -1.4045255 + ], + [ + 35.5951085, + -1.4046624 + ], + [ + 35.595113, + -1.4047856 + ], + [ + 35.5951197, + -1.4050993 + ], + [ + 35.595109, + -1.4054385 + ], + [ + 35.5950795, + -1.405775 + ], + [ + 35.5950567, + -1.4059547 + ], + [ + 35.5950171, + -1.4061652 + ], + [ + 35.5949682, + -1.4064092 + ], + [ + 35.594943, + -1.4065249 + ], + [ + 35.5949239, + -1.406613 + ], + [ + 35.5949029, + -1.4066918 + ], + [ + 35.5948635, + -1.4068395 + ], + [ + 35.5948126, + -1.4070071 + ], + [ + 35.594765, + -1.4071264 + ], + [ + 35.5946745, + -1.4073115 + ], + [ + 35.5945564, + -1.4075032 + ], + [ + 35.5945202, + -1.4075575 + ], + [ + 35.5944411, + -1.4076647 + ], + [ + 35.5943345, + -1.4077981 + ], + [ + 35.5939905, + -1.4081735 + ], + [ + 35.593741, + -1.4084041 + ], + [ + 35.5934085, + -1.4086119 + ], + [ + 35.5931925, + -1.4087567 + ], + [ + 35.5929645, + -1.4088921 + ], + [ + 35.5926869, + -1.4090141 + ], + [ + 35.5926138, + -1.4090404 + ], + [ + 35.5924147, + -1.409112 + ], + [ + 35.5913895, + -1.4093737 + ], + [ + 35.591038, + -1.4094634 + ], + [ + 35.5904876, + -1.4095974 + ], + [ + 35.5901809, + -1.4096636 + ], + [ + 35.589475, + -1.4098158 + ], + [ + 35.5893894, + -1.4098377 + ], + [ + 35.5892306, + -1.4098783 + ], + [ + 35.589076, + -1.4099178 + ], + [ + 35.5879951, + -1.4101852 + ], + [ + 35.5875974, + -1.4102677 + ], + [ + 35.5874429, + -1.4103041 + ], + [ + 35.5862174, + -1.4105927 + ], + [ + 35.5856783, + -1.4107224 + ], + [ + 35.5844311, + -1.4110223 + ], + [ + 35.5831713, + -1.4113481 + ], + [ + 35.5811084, + -1.4117452 + ], + [ + 35.58007, + -1.4119037 + ], + [ + 35.5785208, + -1.4120964 + ], + [ + 35.5772986, + -1.4122208 + ], + [ + 35.5768627, + -1.4122596 + ], + [ + 35.5764931, + -1.4122599 + ], + [ + 35.5763027, + -1.41226 + ], + [ + 35.5759298, + -1.4122586 + ], + [ + 35.5751257, + -1.4121757 + ], + [ + 35.574916, + -1.4121541 + ], + [ + 35.5746853, + -1.4121192 + ], + [ + 35.5741167, + -1.4120468 + ], + [ + 35.5721814, + -1.4117465 + ], + [ + 35.5717268, + -1.4116781 + ], + [ + 35.5713138, + -1.4115869 + ], + [ + 35.5706767, + -1.4114274 + ], + [ + 35.5679006, + -1.4106739 + ], + [ + 35.5664978, + -1.4103294 + ], + [ + 35.565087, + -1.4099996 + ], + [ + 35.5632478, + -1.4095797 + ], + [ + 35.5615277, + -1.4091871 + ], + [ + 35.5606493, + -1.4089806 + ], + [ + 35.5601987, + -1.4088439 + ], + [ + 35.5599707, + -1.4087594 + ], + [ + 35.559622, + -1.4086039 + ], + [ + 35.5590815, + -1.4083103 + ], + [ + 35.5584713, + -1.4079121 + ], + [ + 35.5580261, + -1.4075622 + ], + [ + 35.5572389, + -1.4068717 + ], + [ + 35.5568674, + -1.4065727 + ], + [ + 35.5562961, + -1.406078 + ], + [ + 35.555596, + -1.4055069 + ], + [ + 35.5549576, + -1.4049652 + ], + [ + 35.5542858, + -1.4044155 + ], + [ + 35.553646, + -1.4038551 + ], + [ + 35.5531592, + -1.4034583 + ], + [ + 35.5525933, + -1.4029957 + ], + [ + 35.5521896, + -1.4026726 + ], + [ + 35.5517182, + -1.4022657 + ], + [ + 35.5510389, + -1.4016765 + ], + [ + 35.5507198, + -1.4014244 + ], + [ + 35.5504193, + -1.4012126 + ], + [ + 35.5500304, + -1.4009632 + ], + [ + 35.549494, + -1.4007192 + ], + [ + 35.5489093, + -1.4004511 + ], + [ + 35.5480536, + -1.4001508 + ], + [ + 35.5474716, + -1.3999604 + ], + [ + 35.546624, + -1.3997244 + ], + [ + 35.5454734, + -1.3994161 + ], + [ + 35.5446311, + -1.3992471 + ], + [ + 35.5434, + -1.3990675 + ], + [ + 35.5420965, + -1.3989039 + ], + [ + 35.5408841, + -1.3987377 + ], + [ + 35.5397629, + -1.3985768 + ], + [ + 35.5368581, + -1.3981531 + ], + [ + 35.5327597, + -1.3975873 + ], + [ + 35.5292165, + -1.3970832 + ], + [ + 35.5259817, + -1.3966059 + ], + [ + 35.523321, + -1.3962145 + ], + [ + 35.5201721, + -1.3957667 + ], + [ + 35.5171774, + -1.3953433 + ], + [ + 35.5167201, + -1.3952786 + ], + [ + 35.5157733, + -1.3951553 + ], + [ + 35.5149874, + -1.3950749 + ], + [ + 35.5143597, + -1.3950454 + ], + [ + 35.5138099, + -1.3950373 + ], + [ + 35.5128872, + -1.3950802 + ], + [ + 35.5112135, + -1.3951848 + ], + [ + 35.510661, + -1.3952411 + ], + [ + 35.5100816, + -1.395343 + ], + [ + 35.509006, + -1.3955924 + ], + [ + 35.5080404, + -1.3958525 + ], + [ + 35.5068951, + -1.3961219 + ], + [ + 35.5051946, + -1.3965885 + ], + [ + 35.5032152, + -1.3971449 + ], + [ + 35.5007113, + -1.3977965 + ], + [ + 35.4983992, + -1.3984162 + ], + [ + 35.4957532, + -1.3991077 + ], + [ + 35.4934626, + -1.3997459 + ], + [ + 35.4898336, + -1.4007997 + ], + [ + 35.489324, + -1.400923 + ], + [ + 35.488695, + -1.4010101 + ], + [ + 35.4880352, + -1.4010651 + ], + [ + 35.4871366, + -1.4011576 + ], + [ + 35.4861293, + -1.4012617 + ], + [ + 35.4847923, + -1.4014247 + ], + [ + 35.4838137, + -1.4015318 + ], + [ + 35.4833628, + -1.4015934 + ], + [ + 35.4829859, + -1.4016443 + ], + [ + 35.4818825, + -1.4018437 + ], + [ + 35.4812025, + -1.4019675 + ], + [ + 35.4804651, + -1.4020947 + ], + [ + 35.4776757, + -1.4024826 + ], + [ + 35.4770581, + -1.402555 + ], + [ + 35.475988, + -1.4027048 + ], + [ + 35.4731838, + -1.4031124 + ], + [ + 35.4678005, + -1.4037913 + ], + [ + 35.4668247, + -1.4039301 + ], + [ + 35.4661685, + -1.4040629 + ], + [ + 35.4647172, + -1.404474 + ], + [ + 35.4642889, + -1.4046394 + ], + [ + 35.4640971, + -1.4047212 + ], + [ + 35.4638321, + -1.4048799 + ], + [ + 35.4636361, + -1.4050181 + ], + [ + 35.4634288, + -1.4051963 + ], + [ + 35.4632025, + -1.4054109 + ], + [ + 35.4630333, + -1.4055906 + ], + [ + 35.4628135, + -1.4058652 + ], + [ + 35.4625157, + -1.4062642 + ], + [ + 35.4616171, + -1.4072723 + ], + [ + 35.4601822, + -1.4091529 + ], + [ + 35.4589139, + -1.4108312 + ], + [ + 35.4582648, + -1.411751 + ], + [ + 35.4577457, + -1.4125888 + ], + [ + 35.4559203, + -1.4157101 + ], + [ + 35.4549076, + -1.4176851 + ], + [ + 35.4547086, + -1.4179874 + ], + [ + 35.4537894, + -1.4193414 + ], + [ + 35.4528496, + -1.420782 + ], + [ + 35.4521871, + -1.4218717 + ], + [ + 35.4517873, + -1.4225196 + ], + [ + 35.4515869, + -1.4227861 + ], + [ + 35.451254, + -1.4230692 + ], + [ + 35.4509127, + -1.4233113 + ], + [ + 35.4504469, + -1.4235688 + ], + [ + 35.4500886, + -1.4237604 + ], + [ + 35.44952, + -1.4240125 + ], + [ + 35.4477042, + -1.4247445 + ], + [ + 35.4424685, + -1.4268494 + ], + [ + 35.4411864, + -1.4273133 + ], + [ + 35.4396253, + -1.4277852 + ], + [ + 35.4380375, + -1.4282303 + ], + [ + 35.4375547, + -1.4283778 + ], + [ + 35.4368895, + -1.4285387 + ], + [ + 35.4359534, + -1.428721 + ], + [ + 35.43491, + -1.4288671 + ], + [ + 35.4338894, + -1.4290119 + ], + [ + 35.4323887, + -1.4291447 + ], + [ + 35.4315086, + -1.4292161 + ], + [ + 35.4293216, + -1.429386 + ], + [ + 35.4283319, + -1.4294812 + ], + [ + 35.4272711, + -1.4295697 + ], + [ + 35.4265858, + -1.4296152 + ], + [ + 35.4255209, + -1.4296394 + ], + [ + 35.423811, + -1.4296689 + ], + [ + 35.4228682, + -1.4297144 + ], + [ + 35.4224297, + -1.4297346 + ], + [ + 35.4221226, + -1.4297801 + ], + [ + 35.421912, + -1.4298405 + ], + [ + 35.4210202, + -1.4302655 + ], + [ + 35.4199051, + -1.4308889 + ], + [ + 35.4191547, + -1.4313273 + ], + [ + 35.4187068, + -1.4315606 + ], + [ + 35.4179879, + -1.4319104 + ], + [ + 35.4176644, + -1.4320521 + ], + [ + 35.4169392, + -1.4323221 + ], + [ + 35.4147398, + -1.4329844 + ], + [ + 35.414447, + -1.4331068 + ], + [ + 35.4142243, + -1.4332455 + ], + [ + 35.4139653, + -1.4334467 + ], + [ + 35.4138154, + -1.4335683 + ], + [ + 35.4136741, + -1.4337163 + ], + [ + 35.4135565, + -1.4338776 + ], + [ + 35.4134779, + -1.4340191 + ], + [ + 35.4134147, + -1.4341495 + ], + [ + 35.4133629, + -1.4343493 + ] + ] + }, + "id": "way/27096155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/30801666", + "highway": "secondary", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.1759575, + -1.9430475 + ], + [ + 35.1756853, + -1.9432579 + ], + [ + 35.1754117, + -1.943408 + ], + [ + 35.175004, + -1.9435313 + ], + [ + 35.1741537, + -1.9437967 + ], + [ + 35.173746, + -1.9440219 + ], + [ + 35.1733357, + -1.9443436 + ], + [ + 35.1727268, + -1.9448047 + ], + [ + 35.1725122, + -1.9450245 + ], + [ + 35.172354, + -1.9452684 + ], + [ + 35.1721179, + -1.9457161 + ], + [ + 35.1719677, + -1.9458903 + ], + [ + 35.1717639, + -1.9460244 + ], + [ + 35.1715091, + -1.9462549 + ], + [ + 35.1713223, + -1.9464761 + ], + [ + 35.1711751, + -1.9467095 + ], + [ + 35.1705864, + -1.9475175 + ], + [ + 35.1703777, + -1.9477881 + ], + [ + 35.1701555, + -1.948097 + ], + [ + 35.1700017, + -1.9483632 + ], + [ + 35.169877, + -1.9486889 + ], + [ + 35.1698077, + -1.9489594 + ], + [ + 35.1697395, + -1.9494591 + ], + [ + 35.1697218, + -1.9499791 + ], + [ + 35.169712, + -1.9503027 + ], + [ + 35.1696718, + -1.9505078 + ], + [ + 35.169602, + -1.950682 + ], + [ + 35.1694572, + -1.9508629 + ], + [ + 35.1691689, + -1.9510506 + ], + [ + 35.1687732, + -1.9512289 + ], + [ + 35.1682368, + -1.9514111 + ], + [ + 35.1680893, + -1.9514862 + ], + [ + 35.1679444, + -1.95158 + ], + [ + 35.1676977, + -1.951706 + ], + [ + 35.1673763, + -1.95187 + ], + [ + 35.1671431, + -1.9520686 + ], + [ + 35.166944, + -1.952412 + ], + [ + 35.1664826, + -1.9532219 + ], + [ + 35.1659599, + -1.9542379 + ], + [ + 35.1658356, + -1.9544375 + ], + [ + 35.1657108, + -1.9545704 + ], + [ + 35.1654594, + -1.9546587 + ], + [ + 35.1653615, + -1.9547177 + ], + [ + 35.1653038, + -1.9547874 + ], + [ + 35.1652367, + -1.9549308 + ], + [ + 35.1651844, + -1.9550702 + ], + [ + 35.1651292, + -1.9551448 + ], + [ + 35.1650703, + -1.9551923 + ], + [ + 35.1649288, + -1.9552391 + ], + [ + 35.1647915, + -1.9553158 + ], + [ + 35.1646788, + -1.9554736 + ], + [ + 35.1643342, + -1.9560178 + ], + [ + 35.1641384, + -1.9562242 + ], + [ + 35.1639426, + -1.9563878 + ], + [ + 35.1634195, + -1.9567738 + ], + [ + 35.1629207, + -1.957192 + ], + [ + 35.1622722, + -1.9577926 + ], + [ + 35.1618939, + -1.9583313 + ], + [ + 35.1611799, + -1.9594303 + ], + [ + 35.1610994, + -1.9596045 + ], + [ + 35.1609948, + -1.9598646 + ], + [ + 35.16085, + -1.9601621 + ], + [ + 35.1606274, + -1.9604623 + ], + [ + 35.1601338, + -1.961028 + ], + [ + 35.1599139, + -1.9613738 + ], + [ + 35.1597422, + -1.9617464 + ], + [ + 35.159356, + -1.9626417 + ], + [ + 35.1592889, + -1.962883 + ], + [ + 35.1591334, + -1.9635144 + ], + [ + 35.1590636, + -1.9639525 + ], + [ + 35.1590361, + -1.9642637 + ], + [ + 35.1590869, + -1.9648784 + ], + [ + 35.1590717, + -1.9654135 + ], + [ + 35.1590475, + -1.9656949 + ], + [ + 35.1589671, + -1.9659308 + ], + [ + 35.1585513, + -1.9674105 + ], + [ + 35.1584735, + -1.9676411 + ], + [ + 35.1583099, + -1.9679762 + ], + [ + 35.1582643, + -1.9681772 + ], + [ + 35.1582456, + -1.9684319 + ], + [ + 35.1581436, + -1.969094 + ], + [ + 35.1580739, + -1.9694344 + ], + [ + 35.1579934, + -1.9697105 + ], + [ + 35.1573994, + -1.9710505 + ], + [ + 35.157178, + -1.9718604 + ], + [ + 35.1568991, + -1.9729487 + ], + [ + 35.156567, + -1.9742006 + ], + [ + 35.1563555, + -1.9747344 + ], + [ + 35.1557918, + -1.9761571 + ], + [ + 35.1546004, + -1.9792669 + ], + [ + 35.1541284, + -1.9805482 + ], + [ + 35.1540452, + -1.9808833 + ], + [ + 35.1540238, + -1.9811219 + ], + [ + 35.1540533, + -1.9846898 + ], + [ + 35.1540238, + -1.9852098 + ], + [ + 35.1539728, + -1.9855878 + ], + [ + 35.1538257, + -1.986283 + ], + [ + 35.1537502, + -1.9871532 + ], + [ + 35.1537663, + -1.9874883 + ], + [ + 35.1538387, + -1.9878582 + ], + [ + 35.1546219, + -1.9915414 + ], + [ + 35.1546702, + -1.9920024 + ], + [ + 35.154689, + -1.9923482 + ], + [ + 35.1546062, + -1.9943623 + ], + [ + 35.1545758, + -1.9948832 + ], + [ + 35.1545163, + -1.9952624 + ], + [ + 35.1543035, + -1.996618 + ], + [ + 35.1543101, + -1.9973556 + ], + [ + 35.1542987, + -1.9977696 + ], + [ + 35.1542974, + -2.0001916 + ], + [ + 35.1542799, + -2.0003605 + ], + [ + 35.1542209, + -2.0005066 + ], + [ + 35.1541753, + -2.0006084 + ], + [ + 35.1540935, + -2.000721 + ], + [ + 35.1528838, + -2.0018683 + ], + [ + 35.1526974, + -2.0020305 + ], + [ + 35.1516768, + -2.0029392 + ], + [ + 35.1506112, + -2.0039603 + ], + [ + 35.149456, + -2.0051185 + ], + [ + 35.1488659, + -2.0057917 + ], + [ + 35.1484609, + -2.0061773 + ], + [ + 35.1482087, + -2.0064052 + ], + [ + 35.1479486, + -2.0065875 + ], + [ + 35.1471868, + -2.0070244 + ], + [ + 35.1457299, + -2.0079488 + ], + [ + 35.1449418, + -2.0084719 + ], + [ + 35.1442364, + -2.0090053 + ], + [ + 35.1435819, + -2.009595 + ], + [ + 35.1431394, + -2.010174 + ], + [ + 35.1420584, + -2.0118467 + ], + [ + 35.1417553, + -2.0123775 + ], + [ + 35.1413879, + -2.0132701 + ], + [ + 35.1409024, + -2.0147203 + ], + [ + 35.1407576, + -2.0152028 + ], + [ + 35.1399529, + -2.0182827 + ], + [ + 35.1395988, + -2.0195318 + ], + [ + 35.1389337, + -2.0224375 + ], + [ + 35.138196, + -2.0248608 + ], + [ + 35.1381236, + -2.0252199 + ], + [ + 35.1380968, + -2.0255899 + ], + [ + 35.1380579, + -2.0284758 + ], + [ + 35.1376596, + -2.0317631 + ], + [ + 35.1373404, + -2.0343605 + ], + [ + 35.1372881, + -2.0347439 + ], + [ + 35.1369005, + -2.0368749 + ], + [ + 35.1362327, + -2.0407938 + ], + [ + 35.135994, + -2.0423458 + ], + [ + 35.1359135, + -2.0430025 + ], + [ + 35.1356176, + -2.0478405 + ], + [ + 35.1352525, + -2.0529756 + ], + [ + 35.1349318, + -2.0569464 + ], + [ + 35.1348031, + -2.0573941 + ], + [ + 35.134618, + -2.0577908 + ], + [ + 35.1343954, + -2.0581929 + ], + [ + 35.1332769, + -2.0597663 + ], + [ + 35.1325875, + -2.0604793 + ], + [ + 35.1320565, + -2.0609243 + ], + [ + 35.1299322, + -2.0625057 + ], + [ + 35.128484, + -2.0636123 + ], + [ + 35.1274431, + -2.0644142 + ], + [ + 35.1259357, + -2.0655454 + ], + [ + 35.1238865, + -2.0670947 + ], + [ + 35.1219016, + -2.0685475 + ], + [ + 35.1200749, + -2.0700531 + ], + [ + 35.118176, + -2.0718579 + ], + [ + 35.1158291, + -2.0744016 + ], + [ + 35.1147214, + -2.0757204 + ], + [ + 35.1133507, + -2.077586 + ], + [ + 35.1127607, + -2.0784089 + ], + [ + 35.1114491, + -2.0802075 + ], + [ + 35.1099738, + -2.0823089 + ], + [ + 35.1092631, + -2.083357 + ], + [ + 35.1086783, + -2.0840405 + ], + [ + 35.1080802, + -2.0845846 + ], + [ + 35.1073855, + -2.0851073 + ], + [ + 35.1058108, + -2.0861102 + ], + [ + 35.1039478, + -2.0870424 + ], + [ + 35.103202, + -2.0874156 + ], + [ + 35.1012886, + -2.0881154 + ], + [ + 35.0979704, + -2.0890928 + ], + [ + 35.0976487, + -2.089174 + ], + [ + 35.0964904, + -2.0894662 + ], + [ + 35.0950567, + -2.089828 + ], + [ + 35.0879909, + -2.0914745 + ], + [ + 35.0874892, + -2.0915914 + ], + [ + 35.0866455, + -2.0918031 + ], + [ + 35.0859243, + -2.0921093 + ], + [ + 35.0853013, + -2.0924846 + ], + [ + 35.0848052, + -2.092823 + ], + [ + 35.0838618, + -2.0936586 + ], + [ + 35.0826091, + -2.0947681 + ], + [ + 35.0799678, + -2.0974233 + ], + [ + 35.0785061, + -2.0989874 + ], + [ + 35.0770375, + -2.1004387 + ], + [ + 35.0745015, + -2.1027848 + ], + [ + 35.0727653, + -2.1045613 + ], + [ + 35.0720657, + -2.1052651 + ], + [ + 35.0719397, + -2.1053933 + ], + [ + 35.0693532, + -2.1080934 + ], + [ + 35.0680974, + -2.1093007 + ], + [ + 35.0667761, + -2.1105709 + ], + [ + 35.0652345, + -2.1121167 + ], + [ + 35.0630237, + -2.1145875 + ], + [ + 35.0617131, + -2.11607 + ], + [ + 35.0591847, + -2.1186966 + ], + [ + 35.0580229, + -2.1198504 + ], + [ + 35.0567748, + -2.1208186 + ], + [ + 35.0557744, + -2.1214026 + ], + [ + 35.05398, + -2.1225069 + ], + [ + 35.0535187, + -2.1229304 + ], + [ + 35.0529689, + -2.1234987 + ], + [ + 35.0524351, + -2.1242331 + ], + [ + 35.0509894, + -2.1264471 + ], + [ + 35.0503617, + -2.127337 + ], + [ + 35.049372, + -2.128519 + ], + [ + 35.0483501, + -2.1297252 + ], + [ + 35.0472477, + -2.1310064 + ], + [ + 35.0459281, + -2.1325583 + ], + [ + 35.0443835, + -2.1344567 + ], + [ + 35.0422316, + -2.1368482 + ], + [ + 35.0404301, + -2.1386833 + ], + [ + 35.0389072, + -2.1399384 + ], + [ + 35.037214, + -2.1414555 + ], + [ + 35.0361595, + -2.1425689 + ], + [ + 35.0348195, + -2.1440338 + ], + [ + 35.0338576, + -2.1449833 + ], + [ + 35.0334493, + -2.1453864 + ], + [ + 35.0307393, + -2.1474211 + ], + [ + 35.0281965, + -2.1494742 + ], + [ + 35.0269227, + -2.1506426 + ], + [ + 35.026361, + -2.1513033 + ], + [ + 35.0247245, + -2.1532562 + ], + [ + 35.0230835, + -2.155011 + ], + [ + 35.0204158, + -2.1575376 + ], + [ + 35.0181421, + -2.1598898 + ], + [ + 35.0165902, + -2.161422 + ], + [ + 35.0152638, + -2.1625883 + ], + [ + 35.0141406, + -2.1634425 + ], + [ + 35.0103719, + -2.1661394 + ], + [ + 35.0086152, + -2.1673238 + ], + [ + 35.0065438, + -2.1686295 + ], + [ + 35.0052998, + -2.1695545 + ], + [ + 35.0036307, + -2.1708556 + ], + [ + 35.0006068, + -2.1729145 + ] + ] + }, + "id": "way/30801666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/30810614", + "highway": "primary", + "lanes": "2", + "maxspeed": "40", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8303194, + -2.4938177 + ], + [ + 34.8303874, + -2.4940191 + ], + [ + 34.8304418, + -2.4940868 + ], + [ + 34.8307412, + -2.49446 + ], + [ + 34.8308838, + -2.4947679 + ], + [ + 34.8310584, + -2.4951346 + ], + [ + 34.8312366, + -2.4956265 + ], + [ + 34.8312738, + -2.4958745 + ], + [ + 34.8312658, + -2.4960764 + ], + [ + 34.8310592, + -2.4968519 + ], + [ + 34.8310548, + -2.497153 + ], + [ + 34.8310715, + -2.497382 + ], + [ + 34.8311832, + -2.4976588 + ], + [ + 34.8316866, + -2.4982838 + ], + [ + 34.832101, + -2.4986536 + ], + [ + 34.8322231, + -2.4987795 + ], + [ + 34.8323411, + -2.498951 + ], + [ + 34.8324349, + -2.4991601 + ], + [ + 34.832797, + -2.5000899 + ], + [ + 34.8328614, + -2.5002909 + ], + [ + 34.8328856, + -2.5005481 + ], + [ + 34.8328668, + -2.5007893 + ], + [ + 34.8327622, + -2.5013869 + ], + [ + 34.8327273, + -2.5018183 + ], + [ + 34.8327327, + -2.5021318 + ], + [ + 34.8327783, + -2.5024024 + ], + [ + 34.8329231, + -2.502665 + ], + [ + 34.8331296, + -2.5028499 + ], + [ + 34.8333603, + -2.5029893 + ], + [ + 34.8338619, + -2.5032626 + ], + [ + 34.834047, + -2.50341 + ], + [ + 34.8341891, + -2.5036083 + ], + [ + 34.8343474, + -2.503903 + ], + [ + 34.8349026, + -2.5048838 + ], + [ + 34.8360667, + -2.5071454 + ], + [ + 34.8366782, + -2.5083727 + ], + [ + 34.8372951, + -2.5095919 + ], + [ + 34.8375043, + -2.5100207 + ], + [ + 34.8376009, + -2.5102859 + ], + [ + 34.8376223, + -2.5104655 + ], + [ + 34.8375741, + -2.5109827 + ], + [ + 34.8375794, + -2.5114302 + ], + [ + 34.8376492, + -2.5119044 + ], + [ + 34.8377591, + -2.5122823 + ], + [ + 34.8379254, + -2.5126119 + ], + [ + 34.8381132, + -2.512845 + ], + [ + 34.8386255, + -2.5133032 + ], + [ + 34.839178, + -2.5137373 + ], + [ + 34.8394248, + -2.5140187 + ], + [ + 34.8397225, + -2.5144474 + ], + [ + 34.8404253, + -2.5158676 + ], + [ + 34.8411441, + -2.5173334 + ], + [ + 34.841879, + -2.5188688 + ], + [ + 34.8425013, + -2.5201175 + ], + [ + 34.8434213, + -2.5220227 + ], + [ + 34.843947, + -2.5231508 + ], + [ + 34.844183, + -2.5236841 + ], + [ + 34.8442367, + -2.5239172 + ], + [ + 34.8442876, + -2.524571 + ], + [ + 34.844352, + -2.5249569 + ], + [ + 34.8444298, + -2.5252382 + ], + [ + 34.8445478, + -2.5255196 + ], + [ + 34.8450977, + -2.5262699 + ], + [ + 34.8456421, + -2.5269559 + ], + [ + 34.8459104, + -2.5272479 + ], + [ + 34.8461544, + -2.5276124 + ], + [ + 34.8472944, + -2.5298069 + ], + [ + 34.8487421, + -2.5325582 + ], + [ + 34.8509361, + -2.536816 + ], + [ + 34.8513385, + -2.5375851 + ], + [ + 34.8520734, + -2.5390374 + ], + [ + 34.8523979, + -2.5396537 + ], + [ + 34.8538061, + -2.542336 + ], + [ + 34.8541977, + -2.542896 + ], + [ + 34.8542896, + -2.5430521 + ], + [ + 34.8544076, + -2.5433335 + ], + [ + 34.8546912, + -2.544359 + ], + [ + 34.8550185, + -2.5453371 + ], + [ + 34.8557185, + -2.5474164 + ], + [ + 34.8561262, + -2.5485016 + ], + [ + 34.8563783, + -2.5490402 + ], + [ + 34.8567431, + -2.5497423 + ], + [ + 34.8574861, + -2.5509722 + ], + [ + 34.8579769, + -2.551701 + ], + [ + 34.8588064, + -2.552669 + ], + [ + 34.8600342, + -2.5540376 + ], + [ + 34.860751, + -2.5547712 + ], + [ + 34.8620304, + -2.556198 + ], + [ + 34.8682156, + -2.5628245 + ], + [ + 34.8685911, + -2.5633175 + ], + [ + 34.8687977, + -2.5636766 + ], + [ + 34.8689988, + -2.5640732 + ], + [ + 34.8727237, + -2.5725585 + ], + [ + 34.8730436, + -2.5731112 + ], + [ + 34.8731804, + -2.5732987 + ], + [ + 34.873572, + -2.573765 + ], + [ + 34.8737544, + -2.5740034 + ], + [ + 34.873918, + -2.5742714 + ], + [ + 34.8741721, + -2.5748441 + ], + [ + 34.8743686, + -2.5753137 + ], + [ + 34.8744383, + -2.5756272 + ], + [ + 34.8746797, + -2.5768089 + ], + [ + 34.874789, + -2.5771672 + ], + [ + 34.8750331, + -2.5777915 + ], + [ + 34.8766317, + -2.5814517 + ], + [ + 34.8804626, + -2.5900911 + ], + [ + 34.885609, + -2.6019604 + ], + [ + 34.8864187, + -2.6037469 + ], + [ + 34.8872237, + -2.6054195 + ], + [ + 34.8886215, + -2.6081489 + ], + [ + 34.889369, + -2.6095285 + ], + [ + 34.8903, + -2.6111659 + ], + [ + 34.8913463, + -2.6129943 + ], + [ + 34.892387, + -2.6145885 + ], + [ + 34.8925077, + -2.6148698 + ], + [ + 34.8925989, + -2.615119 + ], + [ + 34.8926498, + -2.615462 + ], + [ + 34.8926924, + -2.615829 + ], + [ + 34.892792, + -2.6166865 + ], + [ + 34.892969, + -2.6180074 + ], + [ + 34.8931397, + -2.6188702 + ], + [ + 34.8933767, + -2.6198107 + ], + [ + 34.8947259, + -2.6245211 + ], + [ + 34.895493, + -2.6270799 + ], + [ + 34.8961314, + -2.6291591 + ], + [ + 34.8963352, + -2.6296441 + ], + [ + 34.8965256, + -2.6299924 + ], + [ + 34.8968448, + -2.6304291 + ], + [ + 34.8975932, + -2.6312919 + ], + [ + 34.8987867, + -2.6326932 + ], + [ + 34.9005007, + -2.6347081 + ], + [ + 34.9009191, + -2.6352359 + ], + [ + 34.9009595, + -2.635294 + ], + [ + 34.9012436, + -2.6357021 + ], + [ + 34.9018981, + -2.6369454 + ], + [ + 34.9021502, + -2.6375241 + ], + [ + 34.9025311, + -2.638971 + ], + [ + 34.9029442, + -2.6402303 + ], + [ + 34.9032715, + -2.6411772 + ], + [ + 34.9036791, + -2.6422612 + ], + [ + 34.9048646, + -2.6451656 + ], + [ + 34.9055835, + -2.6467893 + ], + [ + 34.9059697, + -2.6478557 + ], + [ + 34.906221, + -2.6488067 + ], + [ + 34.9065008, + -2.6498652 + ], + [ + 34.9071981, + -2.6521721 + ], + [ + 34.9072476, + -2.6523912 + ], + [ + 34.9073913, + -2.6530268 + ], + [ + 34.9075576, + -2.653627 + ], + [ + 34.9075742, + -2.6536706 + ], + [ + 34.907748, + -2.654128 + ], + [ + 34.9079197, + -2.6546451 + ], + [ + 34.9082888, + -2.656157 + ], + [ + 34.9084266, + -2.6567216 + ], + [ + 34.90936, + -2.6607942 + ], + [ + 34.910618, + -2.6664074 + ], + [ + 34.9109371, + -2.6676559 + ], + [ + 34.9111115, + -2.6682212 + ], + [ + 34.9123239, + -2.6711042 + ], + [ + 34.9131071, + -2.6728618 + ], + [ + 34.9133538, + -2.6734941 + ], + [ + 34.9136167, + -2.674038 + ], + [ + 34.9139439, + -2.6745658 + ], + [ + 34.9140105, + -2.6746632 + ], + [ + 34.9143221, + -2.6749543 + ], + [ + 34.9151702, + -2.6756285 + ], + [ + 34.9207084, + -2.6797261 + ], + [ + 34.9214971, + -2.6803103 + ], + [ + 34.9215694, + -2.6803638 + ], + [ + 34.9222239, + -2.6808943 + ], + [ + 34.9226369, + -2.6813283 + ], + [ + 34.9228542, + -2.6816257 + ], + [ + 34.9230983, + -2.6820758 + ], + [ + 34.9231453, + -2.682197 + ], + [ + 34.923329, + -2.6826706 + ], + [ + 34.923632, + -2.6834583 + ], + [ + 34.9241202, + -2.6845836 + ], + [ + 34.924493, + -2.685374 + ], + [ + 34.9249517, + -2.6862823 + ], + [ + 34.9254483, + -2.6871726 + ], + [ + 34.9254955, + -2.6872624 + ], + [ + 34.9257227, + -2.6876433 + ], + [ + 34.9271511, + -2.6898951 + ], + [ + 34.933583, + -2.7007984 + ], + [ + 34.9346908, + -2.7028507 + ], + [ + 34.9350724, + -2.7034221 + ], + [ + 34.9353245, + -2.7038106 + ], + [ + 34.935482, + -2.7041448 + ], + [ + 34.9357563, + -2.7047671 + ], + [ + 34.9359521, + -2.7051475 + ], + [ + 34.9364986, + -2.7060685 + ], + [ + 34.9393022, + -2.7111114 + ], + [ + 34.9395382, + -2.7116098 + ], + [ + 34.9398406, + -2.7122682 + ], + [ + 34.9400023, + -2.7126198 + ], + [ + 34.9400881, + -2.7128985 + ], + [ + 34.9401444, + -2.7131369 + ], + [ + 34.9403449, + -2.7143151 + ], + [ + 34.9404314, + -2.7146641 + ], + [ + 34.9405092, + -2.7149025 + ], + [ + 34.9406234, + -2.7151783 + ], + [ + 34.9416249, + -2.7168778 + ], + [ + 34.942608, + -2.7184966 + ], + [ + 34.9468794, + -2.7259702 + ], + [ + 34.9472791, + -2.7266668 + ], + [ + 34.9481025, + -2.7280734 + ], + [ + 34.9488562, + -2.7294264 + ], + [ + 34.9505051, + -2.7323888 + ], + [ + 34.9527679, + -2.7361396 + ], + [ + 34.9562236, + -2.7422427 + ], + [ + 34.9585195, + -2.7461275 + ], + [ + 34.9588199, + -2.7466954 + ], + [ + 34.9591204, + -2.7474402 + ], + [ + 34.9612232, + -2.7557294 + ], + [ + 34.9613607, + -2.7562874 + ], + [ + 34.9615404, + -2.7568473 + ], + [ + 34.9616933, + -2.7572224 + ], + [ + 34.9619052, + -2.7576591 + ], + [ + 34.9688729, + -2.7693633 + ], + [ + 34.9692564, + -2.7700224 + ], + [ + 34.9696373, + -2.7708315 + ], + [ + 34.9719842, + -2.7778881 + ], + [ + 34.9725099, + -2.7795063 + ], + [ + 34.9729009, + -2.7804311 + ], + [ + 34.9782264, + -2.7898909 + ], + [ + 34.9795695, + -2.7924299 + ], + [ + 34.9839361, + -2.802053 + ], + [ + 34.9871354, + -2.8088784 + ] + ] + }, + "id": "way/30810614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34357432", + "highway": "trunk", + "ref": "B1", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.605887, + -1.003136 + ], + [ + 35.6048669, + -1.0031003 + ], + [ + 35.6038114, + -1.0030721 + ], + [ + 35.6030121, + -1.0030775 + ], + [ + 35.6025119, + -1.0030949 + ], + [ + 35.6020841, + -1.0031445 + ], + [ + 35.6015369, + -1.0032076 + ], + [ + 35.6008838, + -1.0032947 + ], + [ + 35.6006156, + -1.003347 + ], + [ + 35.599988, + -1.0034972 + ], + [ + 35.5993778, + -1.0036903 + ], + [ + 35.5991149, + -1.0037748 + ], + [ + 35.598557, + -1.0040188 + ], + [ + 35.5982754, + -1.0041395 + ], + [ + 35.5978838, + -1.0043366 + ], + [ + 35.5976585, + -1.0044586 + ], + [ + 35.5972883, + -1.0046812 + ], + [ + 35.5967237, + -1.0050567 + ], + [ + 35.5960746, + -1.0054898 + ], + [ + 35.5959056, + -1.0056037 + ], + [ + 35.5957152, + -1.0057164 + ], + [ + 35.595632, + -1.0057687 + ], + [ + 35.5955154, + -1.0058384 + ], + [ + 35.5953933, + -1.0058934 + ], + [ + 35.5952445, + -1.005947 + ], + [ + 35.5949454, + -1.0060127 + ], + [ + 35.5937585, + -1.0062366 + ], + [ + 35.5907933, + -1.0069017 + ], + [ + 35.590401, + -1.0069939 + ], + [ + 35.5902569, + -1.0070278 + ], + [ + 35.5891537, + -1.0072702 + ], + [ + 35.5886033, + -1.0073912 + ], + [ + 35.5877034, + -1.0075802 + ], + [ + 35.5866453, + -1.0078216 + ], + [ + 35.5843212, + -1.0083479 + ], + [ + 35.5827266, + -1.0087025 + ], + [ + 35.5805688, + -1.0092188 + ], + [ + 35.5787918, + -1.0097364 + ], + [ + 35.5764449, + -1.0106254 + ], + [ + 35.5748945, + -1.0114246 + ], + [ + 35.5738994, + -1.0118778 + ], + [ + 35.5732799, + -1.012154 + ], + [ + 35.5726147, + -1.0124477 + ], + [ + 35.5721624, + -1.012669 + ], + [ + 35.5717269, + -1.0128821 + ], + [ + 35.5704005, + -1.0135351 + ], + [ + 35.5692324, + -1.0141292 + ], + [ + 35.5688975, + -1.0142852 + ], + [ + 35.5686799, + -1.0143866 + ], + [ + 35.5683325, + -1.0145073 + ], + [ + 35.5679999, + -1.0146172 + ], + [ + 35.5673133, + -1.0148573 + ], + [ + 35.5669083, + -1.0149712 + ], + [ + 35.5665314, + -1.0150557 + ], + [ + 35.5662297, + -1.0151094 + ], + [ + 35.5657889, + -1.0151411 + ], + [ + 35.565299, + -1.0151437 + ], + [ + 35.5649682, + -1.0151377 + ], + [ + 35.5648108, + -1.0151362 + ], + [ + 35.5643159, + -1.0151643 + ], + [ + 35.5639471, + -1.0151912 + ], + [ + 35.5637325, + -1.015218 + ], + [ + 35.5634455, + -1.015289 + ], + [ + 35.5626395, + -1.0155854 + ], + [ + 35.5622439, + -1.0157248 + ], + [ + 35.5612797, + -1.0160332 + ], + [ + 35.5599385, + -1.016461 + ], + [ + 35.5558737, + -1.0177456 + ], + [ + 35.5529769, + -1.0186855 + ], + [ + 35.5518128, + -1.0190918 + ], + [ + 35.5504194, + -1.0195665 + ], + [ + 35.5486947, + -1.0200921 + ], + [ + 35.5476513, + -1.020422 + ], + [ + 35.5466911, + -1.0206741 + ], + [ + 35.5441216, + -1.0213016 + ], + [ + 35.5423245, + -1.0216905 + ], + [ + 35.5399963, + -1.0221946 + ], + [ + 35.5380973, + -1.0226559 + ], + [ + 35.5369627, + -1.022967 + ], + [ + 35.5366208, + -1.0230474 + ], + [ + 35.5360562, + -1.0232244 + ], + [ + 35.5350181, + -1.0236093 + ], + [ + 35.53396, + -1.0239941 + ], + [ + 35.533036, + -1.0243266 + ], + [ + 35.5321066, + -1.0246525 + ], + [ + 35.5312952, + -1.0249341 + ], + [ + 35.5310632, + -1.0250253 + ], + [ + 35.5301405, + -1.0253672 + ], + [ + 35.5291803, + -1.0256984 + ], + [ + 35.5286747, + -1.0259009 + ], + [ + 35.5285567, + -1.0259558 + ], + [ + 35.5284159, + -1.0260242 + ], + [ + 35.5282067, + -1.0261395 + ], + [ + 35.5275723, + -1.0264399 + ], + [ + 35.5267154, + -1.0268448 + ], + [ + 35.5260079, + -1.0271713 + ], + [ + 35.5252147, + -1.0275676 + ], + [ + 35.5246299, + -1.0278451 + ], + [ + 35.5243041, + -1.0279967 + ], + [ + 35.5225807, + -1.0288548 + ], + [ + 35.5208534, + -1.0297492 + ], + [ + 35.5193178, + -1.0305846 + ], + [ + 35.5188565, + -1.0308474 + ], + [ + 35.5180049, + -1.0313341 + ], + [ + 35.5170004, + -1.0318906 + ], + [ + 35.5158971, + -1.0325331 + ], + [ + 35.5139253, + -1.0338121 + ], + [ + 35.5123712, + -1.0349363 + ], + [ + 35.5112538, + -1.0357725 + ], + [ + 35.5091241, + -1.0374325 + ], + [ + 35.5078755, + -1.0384221 + ], + [ + 35.5076368, + -1.0386138 + ], + [ + 35.507378, + -1.0388257 + ], + [ + 35.5071567, + -1.0389933 + ], + [ + 35.506855, + -1.039185 + ], + [ + 35.506407, + -1.0394492 + ], + [ + 35.5059631, + -1.0396597 + ], + [ + 35.5057177, + -1.0397428 + ], + [ + 35.5055152, + -1.0397888 + ], + [ + 35.5054696, + -1.0397991 + ], + [ + 35.5051464, + -1.0398353 + ], + [ + 35.5049141, + -1.0398567 + ], + [ + 35.5048406, + -1.0398635 + ], + [ + 35.5046716, + -1.0398903 + ], + [ + 35.5044825, + -1.0399547 + ], + [ + 35.5043457, + -1.040019 + ], + [ + 35.5040507, + -1.0401732 + ], + [ + 35.5039018, + -1.0402631 + ], + [ + 35.5036443, + -1.0404334 + ], + [ + 35.503466, + -1.0405675 + ], + [ + 35.5027203, + -1.0411843 + ], + [ + 35.5024065, + -1.0414203 + ], + [ + 35.5016085, + -1.042029 + ], + [ + 35.5008615, + -1.0425224 + ], + [ + 35.5003345, + -1.0428617 + ], + [ + 35.4997122, + -1.0432519 + ], + [ + 35.4994279, + -1.0434168 + ], + [ + 35.4992095, + -1.0435242 + ], + [ + 35.4990216, + -1.0436166 + ], + [ + 35.4987439, + -1.0437413 + ], + [ + 35.4981605, + -1.0440144 + ], + [ + 35.4980493, + -1.0440564 + ], + [ + 35.4979514, + -1.0440913 + ], + [ + 35.497836, + -1.0441248 + ], + [ + 35.4977489, + -1.0441664 + ], + [ + 35.4976349, + -1.0442321 + ], + [ + 35.49738, + -1.0443488 + ], + [ + 35.4970059, + -1.0444976 + ], + [ + 35.4965727, + -1.0446136 + ], + [ + 35.4962187, + -1.0446887 + ], + [ + 35.4959491, + -1.0447229 + ], + [ + 35.4955333, + -1.0447557 + ], + [ + 35.4953409, + -1.0447758 + ], + [ + 35.4951612, + -1.0447973 + ], + [ + 35.4950593, + -1.0448147 + ], + [ + 35.4949835, + -1.0448429 + ], + [ + 35.4949272, + -1.0448771 + ], + [ + 35.4948749, + -1.044918 + ], + [ + 35.4948071, + -1.0449776 + ], + [ + 35.4947501, + -1.045036 + ], + [ + 35.494557, + -1.0452498 + ], + [ + 35.4934365, + -1.0464298 + ], + [ + 35.492717, + -1.0471841 + ], + [ + 35.4919848, + -1.0479215 + ], + [ + 35.4916173, + -1.0482534 + ], + [ + 35.4912753, + -1.0485538 + ], + [ + 35.4907711, + -1.0489352 + ], + [ + 35.4905733, + -1.0490834 + ], + [ + 35.4903701, + -1.0492135 + ], + [ + 35.4901441, + -1.0493261 + ], + [ + 35.4897693, + -1.0494884 + ], + [ + 35.4880527, + -1.050262 + ], + [ + 35.4870401, + -1.0507267 + ], + [ + 35.4865369, + -1.0508996 + ], + [ + 35.4863039, + -1.050958 + ], + [ + 35.4859974, + -1.0510056 + ], + [ + 35.4857285, + -1.0510277 + ], + [ + 35.4853731, + -1.0510491 + ], + [ + 35.484545, + -1.0511028 + ], + [ + 35.483395, + -1.0511792 + ], + [ + 35.4825823, + -1.0512181 + ], + [ + 35.4819299, + -1.0512422 + ], + [ + 35.4816174, + -1.0512643 + ], + [ + 35.4813746, + -1.0512918 + ], + [ + 35.4812169, + -1.0513233 + ], + [ + 35.481095, + -1.0513589 + ], + [ + 35.480941, + -1.0514261 + ], + [ + 35.4807933, + -1.0515198 + ], + [ + 35.4806263, + -1.0516445 + ], + [ + 35.4805554, + -1.05171 + ], + [ + 35.4804929, + -1.0517678 + ], + [ + 35.4803782, + -1.0518993 + ], + [ + 35.4801656, + -1.0521654 + ], + [ + 35.4800409, + -1.0523391 + ], + [ + 35.479941, + -1.0524852 + ], + [ + 35.4798961, + -1.0525657 + ], + [ + 35.4796171, + -1.0531422 + ], + [ + 35.4792684, + -1.0539166 + ], + [ + 35.4790176, + -1.0544932 + ], + [ + 35.4787751, + -1.0550184 + ], + [ + 35.4779273, + -1.057071 + ], + [ + 35.4777736, + -1.0574259 + ], + [ + 35.4776564, + -1.0576154 + ], + [ + 35.4775452, + -1.0577649 + ], + [ + 35.477238, + -1.0581089 + ], + [ + 35.4769675, + -1.0583983 + ], + [ + 35.4765514, + -1.0588088 + ], + [ + 35.476276, + -1.0590896 + ], + [ + 35.4755298, + -1.0597627 + ], + [ + 35.474553, + -1.0606697 + ], + [ + 35.4739642, + -1.0611202 + ], + [ + 35.4730604, + -1.061788 + ], + [ + 35.4720879, + -1.0626241 + ], + [ + 35.4717547, + -1.0629306 + ], + [ + 35.4713675, + -1.0632542 + ], + [ + 35.4709574, + -1.0635206 + ], + [ + 35.4688771, + -1.0648 + ], + [ + 35.4686299, + -1.0649741 + ], + [ + 35.4671001, + -1.0663146 + ], + [ + 35.466441, + -1.0668076 + ], + [ + 35.4660512, + -1.0670678 + ], + [ + 35.4655892, + -1.067385 + ], + [ + 35.4653397, + -1.0675701 + ], + [ + 35.4651251, + -1.0676907 + ], + [ + 35.4648629, + -1.0678042 + ], + [ + 35.4644897, + -1.0679743 + ], + [ + 35.464073, + -1.0681777 + ], + [ + 35.463786, + -1.0683249 + ], + [ + 35.4634688, + -1.0685295 + ], + [ + 35.4629928, + -1.0688975 + ], + [ + 35.4623189, + -1.069334 + ], + [ + 35.461944, + -1.0695251 + ], + [ + 35.4613908, + -1.0697865 + ], + [ + 35.4612242, + -1.0698804 + ], + [ + 35.4610448, + -1.069983 + ], + [ + 35.4609168, + -1.0700822 + ], + [ + 35.4603468, + -1.0705475 + ], + [ + 35.4596575, + -1.0710295 + ], + [ + 35.4590761, + -1.0714231 + ], + [ + 35.4585014, + -1.0716986 + ], + [ + 35.4583982, + -1.0717405 + ], + [ + 35.4582915, + -1.0717737 + ], + [ + 35.4579335, + -1.0718595 + ], + [ + 35.4575492, + -1.0719547 + ], + [ + 35.4559788, + -1.0722336 + ], + [ + 35.4537727, + -1.0726412 + ], + [ + 35.4524061, + -1.0729228 + ], + [ + 35.4517798, + -1.073077 + ], + [ + 35.4511669, + -1.0732339 + ], + [ + 35.4499304, + -1.073663 + ], + [ + 35.4486993, + -1.0740612 + ], + [ + 35.4485464, + -1.0741102 + ], + [ + 35.4481038, + -1.0742556 + ], + [ + 35.447951, + -1.0742898 + ], + [ + 35.447678, + -1.0743549 + ], + [ + 35.4474822, + -1.0744159 + ], + [ + 35.4471745, + -1.0745211 + ], + [ + 35.4467373, + -1.0746673 + ], + [ + 35.4456054, + -1.0750092 + ], + [ + 35.4451621, + -1.0751547 + ], + [ + 35.4445714, + -1.0753726 + ], + [ + 35.4439075, + -1.0756461 + ], + [ + 35.4436286, + -1.0757856 + ], + [ + 35.4432061, + -1.0760095 + ], + [ + 35.4428843, + -1.0761731 + ], + [ + 35.4425141, + -1.0763648 + ], + [ + 35.4420286, + -1.0765981 + ], + [ + 35.4412588, + -1.0769401 + ], + [ + 35.4407184, + -1.0771707 + ], + [ + 35.4402705, + -1.0773638 + ], + [ + 35.439612, + -1.0776923 + ], + [ + 35.4387309, + -1.0780999 + ], + [ + 35.4381461, + -1.0783625 + ], + [ + 35.4380067, + -1.0784331 + ], + [ + 35.4377197, + -1.0785806 + ], + [ + 35.4372248, + -1.0788629 + ], + [ + 35.4366763, + -1.0791458 + ], + [ + 35.4358944, + -1.0795802 + ], + [ + 35.4354009, + -1.0798551 + ], + [ + 35.4348678, + -1.0801374 + ], + [ + 35.4343555, + -1.0804122 + ], + [ + 35.4340169, + -1.0806053 + ], + [ + 35.4337239, + -1.0807649 + ], + [ + 35.4333262, + -1.080967 + ], + [ + 35.4323955, + -1.0814655 + ], + [ + 35.4313695, + -1.0820273 + ], + [ + 35.4306534, + -1.0824182 + ], + [ + 35.4302236, + -1.0826441 + ], + [ + 35.4296871, + -1.0829062 + ], + [ + 35.4294638, + -1.0830128 + ], + [ + 35.4292265, + -1.0831147 + ], + [ + 35.4290702, + -1.0831744 + ], + [ + 35.4289227, + -1.0832193 + ], + [ + 35.4284775, + -1.0833414 + ], + [ + 35.4278585, + -1.0834982 + ], + [ + 35.4266596, + -1.0838227 + ], + [ + 35.4256484, + -1.0840882 + ], + [ + 35.4248209, + -1.0843255 + ], + [ + 35.4238111, + -1.0845897 + ], + [ + 35.4232585, + -1.0847479 + ], + [ + 35.422883, + -1.0848552 + ], + [ + 35.4225129, + -1.0849638 + ], + [ + 35.4216063, + -1.085232 + ], + [ + 35.420284, + -1.0856543 + ], + [ + 35.4197757, + -1.0858401 + ], + [ + 35.4192097, + -1.0860472 + ], + [ + 35.41857, + -1.0863006 + ], + [ + 35.4179598, + -1.08655 + ], + [ + 35.4172732, + -1.0867981 + ], + [ + 35.4168749, + -1.0869268 + ], + [ + 35.4164001, + -1.0871038 + ], + [ + 35.4160126, + -1.0872138 + ], + [ + 35.4154252, + -1.0873465 + ], + [ + 35.4147814, + -1.0874927 + ], + [ + 35.414367, + -1.0875771 + ], + [ + 35.4138494, + -1.0876871 + ], + [ + 35.413321, + -1.0878064 + ], + [ + 35.4128838, + -1.0879191 + ], + [ + 35.4124895, + -1.0880049 + ], + [ + 35.4122561, + -1.0880438 + ], + [ + 35.411835, + -1.0880719 + ], + [ + 35.4113147, + -1.0881175 + ], + [ + 35.4110706, + -1.088147 + ], + [ + 35.4107836, + -1.0882301 + ], + [ + 35.4103491, + -1.0883709 + ], + [ + 35.4100674, + -1.0884782 + ], + [ + 35.4098099, + -1.0885761 + ], + [ + 35.4096021, + -1.0886767 + ], + [ + 35.4093245, + -1.0888603 + ], + [ + 35.4084299, + -1.0896139 + ], + [ + 35.407927, + -1.0900135 + ], + [ + 35.4075542, + -1.0903232 + ], + [ + 35.4073718, + -1.0904841 + ], + [ + 35.407121, + -1.0906316 + ], + [ + 35.4067187, + -1.0907898 + ], + [ + 35.4064076, + -1.0909387 + ], + [ + 35.4062426, + -1.0910232 + ], + [ + 35.4060991, + -1.091117 + ], + [ + 35.4057303, + -1.0914066 + ], + [ + 35.4052703, + -1.0917767 + ], + [ + 35.4049149, + -1.0920234 + ], + [ + 35.4044321, + -1.0923184 + ], + [ + 35.4040003, + -1.0925786 + ], + [ + 35.4035242, + -1.0928467 + ], + [ + 35.4029757, + -1.0931565 + ], + [ + 35.402285, + -1.0935252 + ], + [ + 35.4016091, + -1.0938403 + ], + [ + 35.4009506, + -1.0941232 + ], + [ + 35.4004249, + -1.0943632 + ], + [ + 35.3999367, + -1.0945845 + ], + [ + 35.3994177, + -1.0948339 + ], + [ + 35.398778, + -1.0951771 + ], + [ + 35.3983958, + -1.0953689 + ], + [ + 35.3980364, + -1.0955057 + ], + [ + 35.3971767, + -1.095739 + ], + [ + 35.3966819, + -1.0958663 + ], + [ + 35.3961575, + -1.0959843 + ], + [ + 35.395849, + -1.0960822 + ], + [ + 35.3955969, + -1.0961788 + ], + [ + 35.3951932, + -1.0964228 + ], + [ + 35.3948016, + -1.0967232 + ], + [ + 35.3941204, + -1.0972568 + ], + [ + 35.3936335, + -1.097588 + ], + [ + 35.3932996, + -1.0978294 + ], + [ + 35.3928919, + -1.0981579 + ], + [ + 35.392613, + -1.0983764 + ], + [ + 35.3923206, + -1.0986366 + ], + [ + 35.3918888, + -1.0990656 + ], + [ + 35.3916393, + -1.0992051 + ], + [ + 35.3914274, + -1.0992909 + ], + [ + 35.3907301, + -1.0995162 + ], + [ + 35.3906349, + -1.0995505 + ], + [ + 35.3900528, + -1.0997602 + ], + [ + 35.3895526, + -1.0999835 + ], + [ + 35.3889799, + -1.1002134 + ], + [ + 35.3881491, + -1.1005627 + ], + [ + 35.3875422, + -1.1008007 + ], + [ + 35.3871956, + -1.1009629 + ], + [ + 35.3870608, + -1.1010494 + ], + [ + 35.3869971, + -1.1011131 + ], + [ + 35.3869418, + -1.1012097 + ], + [ + 35.3869059, + -1.1012915 + ], + [ + 35.3868583, + -1.1014497 + ], + [ + 35.3868087, + -1.1018975 + ], + [ + 35.3867201, + -1.1025519 + ], + [ + 35.3866531, + -1.1028013 + ], + [ + 35.3865471, + -1.1033242 + ], + [ + 35.3864767, + -1.1035682 + ], + [ + 35.3863996, + -1.103758 + ], + [ + 35.3863285, + -1.10389 + ], + [ + 35.386226, + -1.1040281 + ], + [ + 35.3860228, + -1.1042695 + ], + [ + 35.385896, + -1.1043922 + ], + [ + 35.3857505, + -1.1045122 + ], + [ + 35.3855239, + -1.1046925 + ], + [ + 35.3850599, + -1.1050224 + ], + [ + 35.3846334, + -1.1053623 + ], + [ + 35.3841023, + -1.1057511 + ], + [ + 35.3838891, + -1.1058946 + ], + [ + 35.3835712, + -1.106085 + ], + [ + 35.3832091, + -1.1062406 + ], + [ + 35.3827746, + -1.1063921 + ], + [ + 35.3823575, + -1.1065208 + ], + [ + 35.3815998, + -1.1067394 + ], + [ + 35.3807066, + -1.1070263 + ], + [ + 35.3794393, + -1.1074178 + ], + [ + 35.3784831, + -1.1077369 + ], + [ + 35.3775845, + -1.1080494 + ], + [ + 35.3772493, + -1.1081808 + ], + [ + 35.3767531, + -1.1083457 + ], + [ + 35.3761791, + -1.1085415 + ], + [ + 35.3758854, + -1.10863 + ], + [ + 35.3756748, + -1.1086916 + ], + [ + 35.3753637, + -1.1087962 + ], + [ + 35.3748339, + -1.1089705 + ], + [ + 35.3743981, + -1.1091207 + ], + [ + 35.3740011, + -1.1092481 + ], + [ + 35.3735331, + -1.1093768 + ], + [ + 35.372951, + -1.1095525 + ], + [ + 35.3723408, + -1.1097509 + ], + [ + 35.3719988, + -1.1098662 + ], + [ + 35.3716287, + -1.1099614 + ], + [ + 35.3710198, + -1.1101036 + ], + [ + 35.3702165, + -1.1102873 + ], + [ + 35.3697565, + -1.1103945 + ], + [ + 35.3692918, + -1.1105004 + ], + [ + 35.3688057, + -1.1106251 + ], + [ + 35.36828, + -1.1107566 + ], + [ + 35.3680654, + -1.1108169 + ], + [ + 35.3679279, + -1.1108652 + ], + [ + 35.367769, + -1.1109322 + ], + [ + 35.3672044, + -1.1111615 + ], + [ + 35.3664494, + -1.1115155 + ], + [ + 35.3659625, + -1.1117273 + ], + [ + 35.3654878, + -1.1119244 + ], + [ + 35.364891, + -1.1121671 + ], + [ + 35.364431, + -1.112379 + ], + [ + 35.3638878, + -1.1125908 + ], + [ + 35.3633139, + -1.1128174 + ], + [ + 35.3628901, + -1.112985 + ], + [ + 35.3624944, + -1.1131366 + ], + [ + 35.3620733, + -1.1133109 + ], + [ + 35.3616281, + -1.1134892 + ], + [ + 35.3610246, + -1.1137158 + ], + [ + 35.3605297, + -1.1139049 + ], + [ + 35.3599986, + -1.1141288 + ], + [ + 35.3597921, + -1.1142387 + ], + [ + 35.3596137, + -1.1143433 + ], + [ + 35.3594045, + -1.1144721 + ], + [ + 35.3590089, + -1.1147644 + ], + [ + 35.3585543, + -1.1150821 + ], + [ + 35.3583316, + -1.1152229 + ], + [ + 35.3581077, + -1.115361 + ], + [ + 35.3577342, + -1.1155488 + ], + [ + 35.3575605, + -1.1156346 + ], + [ + 35.3573138, + -1.1157425 + ], + [ + 35.3570744, + -1.1158498 + ], + [ + 35.3567076, + -1.116016 + ], + [ + 35.3564333, + -1.1161441 + ], + [ + 35.356206, + -1.1162507 + ], + [ + 35.3559351, + -1.1163968 + ], + [ + 35.3557983, + -1.1164739 + ], + [ + 35.3556293, + -1.1165665 + ], + [ + 35.3554731, + -1.1166456 + ], + [ + 35.3553115, + -1.1167186 + ], + [ + 35.3551539, + -1.1167783 + ], + [ + 35.354997, + -1.1168192 + ], + [ + 35.3548045, + -1.1168608 + ], + [ + 35.3546651, + -1.1168856 + ], + [ + 35.3545296, + -1.1169104 + ], + [ + 35.3543989, + -1.1169245 + ], + [ + 35.3542158, + -1.1169339 + ], + [ + 35.3540207, + -1.1169365 + ], + [ + 35.353794, + -1.1169278 + ], + [ + 35.353668, + -1.1169292 + ], + [ + 35.3535647, + -1.1169399 + ], + [ + 35.3534701, + -1.116964 + ], + [ + 35.3533984, + -1.1169895 + ], + [ + 35.353279, + -1.1170445 + ], + [ + 35.3530584, + -1.1171363 + ], + [ + 35.352351, + -1.1174756 + ], + [ + 35.3521565, + -1.1175694 + ], + [ + 35.3519916, + -1.1176458 + ], + [ + 35.3518635, + -1.1176955 + ], + [ + 35.3517522, + -1.1177337 + ], + [ + 35.3516369, + -1.1177638 + ], + [ + 35.3514558, + -1.1177987 + ], + [ + 35.3511581, + -1.1178577 + ], + [ + 35.3507866, + -1.1179274 + ], + [ + 35.3501549, + -1.1180575 + ], + [ + 35.3496896, + -1.1181594 + ], + [ + 35.3489003, + -1.118327 + ], + [ + 35.3484665, + -1.1184302 + ], + [ + 35.3482975, + -1.1184711 + ], + [ + 35.3481701, + -1.1185107 + ], + [ + 35.3480447, + -1.1185516 + ], + [ + 35.3478194, + -1.1186361 + ], + [ + 35.3475096, + -1.118746 + ], + [ + 35.3471509, + -1.1188526 + ], + [ + 35.3468531, + -1.1189438 + ], + [ + 35.3465943, + -1.1190202 + ], + [ + 35.3463703, + -1.1190658 + ], + [ + 35.3460565, + -1.1191047 + ], + [ + 35.3456837, + -1.1191449 + ], + [ + 35.3452606, + -1.1191724 + ], + [ + 35.3449038, + -1.1191838 + ], + [ + 35.3447416, + -1.1191992 + ], + [ + 35.344537, + -1.119222 + ], + [ + 35.3443848, + -1.1192435 + ], + [ + 35.3442071, + -1.1192629 + ], + [ + 35.3440053, + -1.119279 + ], + [ + 35.3437605, + -1.1192897 + ], + [ + 35.3432912, + -1.1192844 + ], + [ + 35.3426568, + -1.1192522 + ], + [ + 35.342335, + -1.1192401 + ], + [ + 35.3421398, + -1.1192381 + ], + [ + 35.341993, + -1.1192455 + ], + [ + 35.3418461, + -1.1192622 + ], + [ + 35.3416215, + -1.1192911 + ], + [ + 35.3411172, + -1.1193554 + ], + [ + 35.3405553, + -1.1194225 + ], + [ + 35.3400819, + -1.1195036 + ], + [ + 35.3397506, + -1.1195639 + ], + [ + 35.3394945, + -1.1196182 + ], + [ + 35.3393671, + -1.1196551 + ], + [ + 35.3392766, + -1.1196846 + ] + ] + }, + "id": "way/34357432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34357580", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5423702, + -1.1209363 + ], + [ + 34.5425485, + -1.121065 + ], + [ + 34.542692, + -1.1211669 + ], + [ + 34.5428811, + -1.121309 + ], + [ + 34.5431372, + -1.1215477 + ], + [ + 34.5435838, + -1.1220733 + ], + [ + 34.5440613, + -1.1227773 + ], + [ + 34.5443161, + -1.1231313 + ], + [ + 34.5445749, + -1.1234316 + ], + [ + 34.544929, + -1.1238392 + ], + [ + 34.5451958, + -1.1240645 + ], + [ + 34.545507, + -1.1243072 + ], + [ + 34.5458463, + -1.124507 + ], + [ + 34.5462956, + -1.1247309 + ], + [ + 34.5474409, + -1.1252645 + ], + [ + 34.5477761, + -1.1254295 + ], + [ + 34.5481637, + -1.125652 + ], + [ + 34.5483582, + -1.1257942 + ], + [ + 34.5486237, + -1.1260288 + ], + [ + 34.549478, + -1.1268843 + ], + [ + 34.5503001, + -1.1277022 + ], + [ + 34.5507373, + -1.1281514 + ], + [ + 34.5509881, + -1.1283659 + ], + [ + 34.5512992, + -1.1285898 + ], + [ + 34.5515232, + -1.1287172 + ], + [ + 34.5518732, + -1.1288567 + ], + [ + 34.5524459, + -1.1290229 + ], + [ + 34.5535094, + -1.1292898 + ], + [ + 34.5550919, + -1.1296813 + ], + [ + 34.5569386, + -1.1301546 + ], + [ + 34.5572617, + -1.1302216 + ], + [ + 34.5575166, + -1.1302954 + ], + [ + 34.5580798, + -1.1304255 + ], + [ + 34.5590723, + -1.1306775 + ], + [ + 34.5628313, + -1.1316121 + ], + [ + 34.5634241, + -1.1317636 + ], + [ + 34.5635159, + -1.1317872 + ], + [ + 34.5637996, + -1.1318602 + ], + [ + 34.5640424, + -1.1319554 + ], + [ + 34.564269, + -1.1320841 + ], + [ + 34.5644513, + -1.1322138 + ], + [ + 34.5645332, + -1.1322879 + ], + [ + 34.5646103, + -1.132365 + ], + [ + 34.564727, + -1.1325165 + ], + [ + 34.564837, + -1.132674 + ], + [ + 34.5649483, + -1.132896 + ], + [ + 34.5650288, + -1.1330803 + ], + [ + 34.5650804, + -1.1333264 + ], + [ + 34.5651045, + -1.1335188 + ], + [ + 34.56512, + -1.1337688 + ], + [ + 34.5651259, + -1.1339261 + ], + [ + 34.5651314, + -1.1340752 + ], + [ + 34.5651756, + -1.1343783 + ], + [ + 34.5652306, + -1.1346303 + ], + [ + 34.5652957, + -1.1347664 + ], + [ + 34.5653366, + -1.134877 + ], + [ + 34.5655397, + -1.1352324 + ], + [ + 34.5657603, + -1.1355481 + ], + [ + 34.5662002, + -1.1360503 + ], + [ + 34.5679437, + -1.1379248 + ], + [ + 34.5687494, + -1.1387986 + ], + [ + 34.5705481, + -1.1407493 + ], + [ + 34.5711838, + -1.1414257 + ], + [ + 34.571456, + -1.1416738 + ], + [ + 34.5716532, + -1.1418239 + ], + [ + 34.5718516, + -1.141946 + ], + [ + 34.5721655, + -1.1421095 + ], + [ + 34.5725141, + -1.142253 + ], + [ + 34.5729004, + -1.142367 + ], + [ + 34.5733014, + -1.1424233 + ], + [ + 34.5737641, + -1.1424394 + ], + [ + 34.5744936, + -1.1423978 + ], + [ + 34.5753024, + -1.142324 + ], + [ + 34.5769733, + -1.1422007 + ], + [ + 34.5784459, + -1.1420639 + ], + [ + 34.5791271, + -1.1419915 + ], + [ + 34.5795912, + -1.1419352 + ], + [ + 34.5798728, + -1.1419272 + ], + [ + 34.5800981, + -1.1419339 + ], + [ + 34.5804019, + -1.141958 + ] + ] + }, + "id": "way/34357580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34358035", + "highway": "trunk", + "ref": "B1", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6418516, + -1.1622244 + ], + [ + 34.6426874, + -1.1625103 + ], + [ + 34.6429704, + -1.162627 + ], + [ + 34.6431689, + -1.1627369 + ], + [ + 34.6432638, + -1.1628159 + ], + [ + 34.6433513, + -1.1629179 + ], + [ + 34.6435337, + -1.1632089 + ], + [ + 34.6436933, + -1.1635226 + ], + [ + 34.6438234, + -1.163777 + ], + [ + 34.6439135, + -1.1639459 + ], + [ + 34.6440862, + -1.1642695 + ], + [ + 34.644308, + -1.1646429 + ], + [ + 34.6445757, + -1.1649935 + ], + [ + 34.6448962, + -1.1653663 + ], + [ + 34.6452382, + -1.165735 + ], + [ + 34.6455087, + -1.1659964 + ], + [ + 34.6461864, + -1.1664778 + ], + [ + 34.6465726, + -1.1667393 + ], + [ + 34.6474014, + -1.1672944 + ], + [ + 34.6483684, + -1.1679487 + ], + [ + 34.6496679, + -1.168835 + ], + [ + 34.649916, + -1.1690173 + ], + [ + 34.65014, + -1.1692413 + ], + [ + 34.6503076, + -1.1694558 + ], + [ + 34.6504699, + -1.1697347 + ], + [ + 34.6505718, + -1.1699787 + ], + [ + 34.6506697, + -1.1702764 + ], + [ + 34.6508762, + -1.1710018 + ], + [ + 34.6510103, + -1.1714697 + ], + [ + 34.6512088, + -1.1720972 + ], + [ + 34.6513368, + -1.1723659 + ], + [ + 34.6514523, + -1.1725507 + ], + [ + 34.6515852, + -1.1727217 + ], + [ + 34.6517308, + -1.172865 + ], + [ + 34.6518798, + -1.1729897 + ], + [ + 34.6520711, + -1.1731283 + ], + [ + 34.6526432, + -1.173563 + ], + [ + 34.6530544, + -1.1738913 + ], + [ + 34.6534927, + -1.1742372 + ], + [ + 34.6536423, + -1.1743666 + ], + [ + 34.6538012, + -1.1745402 + ], + [ + 34.6540882, + -1.1749317 + ], + [ + 34.6544301, + -1.1754386 + ], + [ + 34.6547874, + -1.1760035 + ], + [ + 34.6549478, + -1.1762685 + ], + [ + 34.6550953, + -1.1764603 + ], + [ + 34.6552214, + -1.1766024 + ], + [ + 34.6553971, + -1.1767405 + ], + [ + 34.6556465, + -1.1768907 + ], + [ + 34.6558411, + -1.1770046 + ], + [ + 34.6561655, + -1.1771494 + ], + [ + 34.6565987, + -1.1773305 + ], + [ + 34.6567476, + -1.1774082 + ], + [ + 34.6568951, + -1.1775249 + ], + [ + 34.6570131, + -1.1776603 + ], + [ + 34.6571499, + -1.1778279 + ], + [ + 34.6575602, + -1.1784473 + ], + [ + 34.6578325, + -1.1788711 + ], + [ + 34.6579184, + -1.1790668 + ], + [ + 34.6580042, + -1.1792882 + ], + [ + 34.6580424, + -1.1794664 + ], + [ + 34.658062, + -1.1796678 + ] + ] + }, + "id": "way/34358035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34358522", + "highway": "secondary", + "ref": "R192", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4705518, + -1.257803 + ], + [ + 34.4705881, + -1.2578462 + ], + [ + 34.4706324, + -1.2578744 + ], + [ + 34.4706711, + -1.2578777 + ], + [ + 34.4707618, + -1.2578751 + ], + [ + 34.4709836, + -1.2578278 + ], + [ + 34.4710257, + -1.2578258 + ], + [ + 34.4710985, + -1.2578268 + ], + [ + 34.4711605, + -1.2578305 + ], + [ + 34.4712316, + -1.2578399 + ], + [ + 34.4713721, + -1.2578737 + ], + [ + 34.4720091, + -1.258099 + ], + [ + 34.4724999, + -1.2583672 + ], + [ + 34.472681, + -1.2584892 + ], + [ + 34.4728379, + -1.2585803 + ], + [ + 34.4729532, + -1.2586742 + ], + [ + 34.473086, + -1.2587989 + ], + [ + 34.4732362, + -1.2589075 + ], + [ + 34.4735286, + -1.2592279 + ], + [ + 34.4738008, + -1.2594545 + ], + [ + 34.473951, + -1.2596127 + ], + [ + 34.4740556, + -1.259716 + ], + [ + 34.4741441, + -1.2598407 + ], + [ + 34.4742528, + -1.2599761 + ], + [ + 34.4743359, + -1.2601142 + ], + [ + 34.474462, + -1.2603408 + ], + [ + 34.4746785, + -1.2609553 + ], + [ + 34.47482, + -1.2612673 + ], + [ + 34.4749185, + -1.2614616 + ], + [ + 34.4751223, + -1.2618156 + ], + [ + 34.4753739, + -1.2621535 + ], + [ + 34.4754209, + -1.2622219 + ], + [ + 34.4757204, + -1.2625911 + ], + [ + 34.4758742, + -1.2627609 + ], + [ + 34.4760297, + -1.2629395 + ], + [ + 34.4761483, + -1.263059 + ], + [ + 34.4762443, + -1.2631832 + ], + [ + 34.4764956, + -1.2634313 + ], + [ + 34.476713, + -1.2636217 + ], + [ + 34.4769149, + -1.2638067 + ], + [ + 34.4771811, + -1.2639933 + ], + [ + 34.4775009, + -1.2642039 + ], + [ + 34.4775512, + -1.2642378 + ], + [ + 34.4781138, + -1.2646219 + ], + [ + 34.4782083, + -1.264696 + ], + [ + 34.4783874, + -1.2648478 + ], + [ + 34.4787193, + -1.2650952 + ], + [ + 34.4789603, + -1.2652374 + ], + [ + 34.4796064, + -1.2655872 + ], + [ + 34.4799833, + -1.2657763 + ], + [ + 34.4800906, + -1.2658286 + ], + [ + 34.480221, + -1.2658905 + ], + [ + 34.4805144, + -1.266078 + ], + [ + 34.4808255, + -1.2662415 + ], + [ + 34.48091, + -1.2663126 + ], + [ + 34.4812453, + -1.2665352 + ], + [ + 34.4817133, + -1.2668824 + ], + [ + 34.4820108, + -1.2671334 + ], + [ + 34.4831867, + -1.267981 + ], + [ + 34.4834296, + -1.268213 + ], + [ + 34.4835862, + -1.2683559 + ], + [ + 34.4842305, + -1.2688936 + ], + [ + 34.4843171, + -1.268976 + ], + [ + 34.4845618, + -1.269206 + ], + [ + 34.4847443, + -1.2693817 + ], + [ + 34.4849682, + -1.2695975 + ], + [ + 34.485316, + -1.2699515 + ], + [ + 34.4856604, + -1.2703351 + ], + [ + 34.4860464, + -1.2707278 + ], + [ + 34.4863195, + -1.2710638 + ], + [ + 34.4864769, + -1.2712198 + ], + [ + 34.4867009, + -1.271429 + ], + [ + 34.4869971, + -1.2716819 + ], + [ + 34.4871933, + -1.2718176 + ], + [ + 34.4882861, + -1.2723783 + ], + [ + 34.4887246, + -1.2725512 + ], + [ + 34.489149, + -1.2726598 + ], + [ + 34.4892777, + -1.2727054 + ], + [ + 34.4901427, + -1.2729962 + ], + [ + 34.4905325, + -1.2731274 + ], + [ + 34.4910048, + -1.273345 + ], + [ + 34.4914549, + -1.2736474 + ], + [ + 34.4917582, + -1.2738618 + ], + [ + 34.4920335, + -1.2740729 + ], + [ + 34.49235, + -1.2743089 + ], + [ + 34.4926532, + -1.2744601 + ], + [ + 34.4930117, + -1.2745979 + ], + [ + 34.4934026, + -1.2747109 + ], + [ + 34.493689, + -1.274751 + ], + [ + 34.4940265, + -1.2747484 + ], + [ + 34.4945991, + -1.2747672 + ], + [ + 34.4947448, + -1.2747635 + ], + [ + 34.4956836, + -1.274848 + ], + [ + 34.4961718, + -1.2748775 + ], + [ + 34.4972993, + -1.2748568 + ], + [ + 34.4978634, + -1.2748413 + ], + [ + 34.4985822, + -1.2748024 + ], + [ + 34.4997834, + -1.2747246 + ], + [ + 34.5001822, + -1.2746992 + ], + [ + 34.5007409, + -1.2746475 + ], + [ + 34.5010055, + -1.2746227 + ], + [ + 34.5012799, + -1.2746113 + ], + [ + 34.5017835, + -1.2745758 + ], + [ + 34.5020797, + -1.2745555 + ], + [ + 34.5029824, + -1.2744296 + ], + [ + 34.5036798, + -1.27436 + ], + [ + 34.5043618, + -1.2742603 + ], + [ + 34.5048218, + -1.274165 + ], + [ + 34.5050043, + -1.2741302 + ], + [ + 34.5053046, + -1.2740509 + ], + [ + 34.505629, + -1.2739759 + ], + [ + 34.5060086, + -1.2738458 + ], + [ + 34.5061581, + -1.2738089 + ], + [ + 34.5065886, + -1.2736835 + ], + [ + 34.5069568, + -1.2735722 + ], + [ + 34.5071613, + -1.2735039 + ], + [ + 34.5074094, + -1.2734254 + ], + [ + 34.507862, + -1.2732679 + ], + [ + 34.5082161, + -1.2731425 + ], + [ + 34.5087748, + -1.2729708 + ], + [ + 34.50913, + -1.2728281 + ], + [ + 34.5095136, + -1.2726632 + ], + [ + 34.5099575, + -1.2724942 + ], + [ + 34.5102184, + -1.2723977 + ], + [ + 34.5103479, + -1.2723508 + ], + [ + 34.5106059, + -1.2723276 + ], + [ + 34.5109312, + -1.2723377 + ], + [ + 34.5112779, + -1.2723354 + ], + [ + 34.5114803, + -1.272377 + ], + [ + 34.5117318, + -1.2723943 + ], + [ + 34.512226, + -1.2725573 + ], + [ + 34.5124519, + -1.2726565 + ], + [ + 34.5127235, + -1.2728402 + ], + [ + 34.5128924, + -1.2729676 + ], + [ + 34.5129804, + -1.2730782 + ], + [ + 34.5130729, + -1.273239 + ], + [ + 34.513197, + -1.2734757 + ], + [ + 34.5133813, + -1.2737217 + ], + [ + 34.5135946, + -1.2740066 + ], + [ + 34.5138306, + -1.274364 + ], + [ + 34.5139723, + -1.2745637 + ], + [ + 34.5143328, + -1.2750659 + ], + [ + 34.5147433, + -1.2755661 + ], + [ + 34.5149246, + -1.2758053 + ], + [ + 34.5150933, + -1.2760556 + ], + [ + 34.5156801, + -1.2767975 + ], + [ + 34.5160139, + -1.2772815 + ], + [ + 34.5161836, + -1.2775732 + ], + [ + 34.5163304, + -1.2779083 + ], + [ + 34.5164839, + -1.2781435 + ], + [ + 34.5166107, + -1.2783279 + ], + [ + 34.5167583, + -1.278574 + ], + [ + 34.5167703, + -1.2790137 + ], + [ + 34.5169031, + -1.2800864 + ], + [ + 34.5169368, + -1.280459 + ], + [ + 34.5169543, + -1.2806386 + ], + [ + 34.517101, + -1.2812837 + ], + [ + 34.5171788, + -1.2816564 + ], + [ + 34.517257, + -1.2819712 + ], + [ + 34.5172772, + -1.2820734 + ], + [ + 34.5173231, + -1.2822322 + ], + [ + 34.5173939, + -1.2823724 + ], + [ + 34.5174745, + -1.2825031 + ], + [ + 34.5176152, + -1.2825681 + ], + [ + 34.5179746, + -1.2826774 + ], + [ + 34.5180526, + -1.2827003 + ], + [ + 34.5182764, + -1.2827505 + ], + [ + 34.5187846, + -1.2827679 + ], + [ + 34.5188946, + -1.2827853 + ], + [ + 34.5192057, + -1.28278 + ], + [ + 34.5194619, + -1.2827853 + ], + [ + 34.5198267, + -1.2827532 + ], + [ + 34.5199806, + -1.2827371 + ], + [ + 34.5202183, + -1.2826955 + ], + [ + 34.5203243, + -1.2826696 + ], + [ + 34.5205294, + -1.2826244 + ], + [ + 34.5209841, + -1.2824623 + ], + [ + 34.5213206, + -1.282375 + ], + [ + 34.5215366, + -1.282241 + ], + [ + 34.5221535, + -1.2819165 + ], + [ + 34.5227154, + -1.2816081 + ], + [ + 34.52282, + -1.2815371 + ], + [ + 34.5230641, + -1.2814312 + ], + [ + 34.523126, + -1.2814118 + ], + [ + 34.5234503, + -1.2813199 + ], + [ + 34.5238535, + -1.2812033 + ], + [ + 34.5240606, + -1.2811469 + ], + [ + 34.5246024, + -1.2809994 + ], + [ + 34.525045, + -1.2808989 + ], + [ + 34.525513, + -1.2807393 + ], + [ + 34.5256084, + -1.2807119 + ], + [ + 34.525639, + -1.2807031 + ], + [ + 34.5258723, + -1.280632 + ], + [ + 34.5262546, + -1.2804765 + ], + [ + 34.5266892, + -1.2802949 + ], + [ + 34.5269265, + -1.2802392 + ], + [ + 34.5270204, + -1.2802137 + ], + [ + 34.5272336, + -1.2801829 + ], + [ + 34.5275621, + -1.2801427 + ], + [ + 34.5277097, + -1.2801333 + ], + [ + 34.5281362, + -1.2801279 + ], + [ + 34.5287477, + -1.2801279 + ], + [ + 34.5294142, + -1.2801333 + ], + [ + 34.5296396, + -1.2801762 + ], + [ + 34.5298609, + -1.2801923 + ], + [ + 34.5300512, + -1.2802406 + ], + [ + 34.5304803, + -1.2803425 + ], + [ + 34.5307312, + -1.2804605 + ], + [ + 34.5309927, + -1.280569 + ], + [ + 34.5312606, + -1.2806991 + ], + [ + 34.531611, + -1.2808211 + ], + [ + 34.5320535, + -1.2811054 + ], + [ + 34.5328541, + -1.2815586 + ], + [ + 34.5335837, + -1.2819353 + ], + [ + 34.5342462, + -1.2822732 + ], + [ + 34.5345426, + -1.2823844 + ], + [ + 34.5345963, + -1.2824984 + ], + [ + 34.5346969, + -1.2826272 + ], + [ + 34.5348778, + -1.282788 + ], + [ + 34.5349449, + -1.283091 + ], + [ + 34.53524, + -1.283756 + ], + [ + 34.5352802, + -1.2839478 + ], + [ + 34.53548, + -1.2843822 + ], + [ + 34.5355149, + -1.2848434 + ], + [ + 34.5355753, + -1.2851438 + ], + [ + 34.5358435, + -1.2857525 + ], + [ + 34.5359776, + -1.2864175 + ], + [ + 34.5362431, + -1.2871422 + ], + [ + 34.536404, + -1.2873452 + ], + [ + 34.5364269, + -1.2875974 + ], + [ + 34.5367032, + -1.2882382 + ], + [ + 34.5368909, + -1.2886458 + ], + [ + 34.5371417, + -1.289154 + ], + [ + 34.5374944, + -1.2899839 + ], + [ + 34.5377075, + -1.2902984 + ], + [ + 34.538047, + -1.2910847 + ], + [ + 34.5383487, + -1.2915955 + ], + [ + 34.5387148, + -1.2921908 + ], + [ + 34.5390098, + -1.2925434 + ], + [ + 34.5390555, + -1.2927754 + ], + [ + 34.5391547, + -1.2929269 + ], + [ + 34.5393411, + -1.2931455 + ], + [ + 34.5395543, + -1.2932701 + ], + [ + 34.5397059, + -1.2934712 + ], + [ + 34.539958, + -1.2936549 + ], + [ + 34.540414, + -1.2939258 + ], + [ + 34.5409692, + -1.2941992 + ], + [ + 34.5410248, + -1.2942738 + ], + [ + 34.5416304, + -1.2945761 + ], + [ + 34.5423411, + -1.2948911 + ], + [ + 34.5425986, + -1.295044 + ], + [ + 34.5426724, + -1.2950788 + ], + [ + 34.5432329, + -1.2951418 + ], + [ + 34.5449174, + -1.2950909 + ], + [ + 34.5452496, + -1.2950775 + ], + [ + 34.5455396, + -1.2950707 + ], + [ + 34.545655, + -1.2950963 + ], + [ + 34.5459581, + -1.2951714 + ], + [ + 34.5462705, + -1.295241 + ], + [ + 34.5465481, + -1.2953483 + ], + [ + 34.5466099, + -1.2954087 + ], + [ + 34.5467487, + -1.2954375 + ], + [ + 34.5470302, + -1.2954351 + ], + [ + 34.5472077, + -1.2954274 + ], + [ + 34.5475611, + -1.295407 + ], + [ + 34.5475808, + -1.2954288 + ], + [ + 34.5477793, + -1.2954489 + ], + [ + 34.5480539, + -1.2956017 + ], + [ + 34.548305, + -1.295717 + ], + [ + 34.5485759, + -1.2959368 + ], + [ + 34.5486685, + -1.2960857 + ], + [ + 34.5487607, + -1.296201 + ], + [ + 34.5488482, + -1.2963325 + ], + [ + 34.5490422, + -1.2969049 + ], + [ + 34.5491955, + -1.2972454 + ], + [ + 34.5492894, + -1.2974171 + ], + [ + 34.5493787, + -1.2975706 + ], + [ + 34.5494766, + -1.2976987 + ], + [ + 34.5497174, + -1.2979487 + ], + [ + 34.5501297, + -1.2983141 + ], + [ + 34.5507747, + -1.29889 + ], + [ + 34.551291, + -1.2993612 + ], + [ + 34.5515363, + -1.2995881 + ], + [ + 34.5520889, + -1.300051 + ], + [ + 34.5525654, + -1.3004697 + ], + [ + 34.5527888, + -1.3006642 + ], + [ + 34.552983, + -1.300795 + ], + [ + 34.553245, + -1.3010057 + ], + [ + 34.5536143, + -1.3012588 + ], + [ + 34.5539693, + -1.3014534 + ], + [ + 34.555032, + -1.3019813 + ], + [ + 34.5554018, + -1.3021433 + ], + [ + 34.5559036, + -1.3023845 + ], + [ + 34.5566926, + -1.3027981 + ], + [ + 34.5572337, + -1.3030147 + ], + [ + 34.5576954, + -1.3032118 + ], + [ + 34.558025, + -1.303291 + ], + [ + 34.5583847, + -1.303358 + ], + [ + 34.5588739, + -1.3034425 + ], + [ + 34.5593258, + -1.3034894 + ], + [ + 34.55986, + -1.3035564 + ], + [ + 34.5603075, + -1.3036342 + ], + [ + 34.5609754, + -1.3037323 + ], + [ + 34.5612009, + -1.3037509 + ], + [ + 34.561473, + -1.3038112 + ], + [ + 34.5618418, + -1.3039077 + ], + [ + 34.5622834, + -1.3040015 + ], + [ + 34.5626951, + -1.3041303 + ], + [ + 34.5629338, + -1.3042308 + ], + [ + 34.5632366, + -1.3044172 + ], + [ + 34.5636284, + -1.3046881 + ], + [ + 34.5640549, + -1.3049628 + ], + [ + 34.5644744, + -1.3052297 + ], + [ + 34.5647277, + -1.3053933 + ], + [ + 34.5650325, + -1.3055904 + ], + [ + 34.5652388, + -1.3057486 + ], + [ + 34.5654403, + -1.3058813 + ], + [ + 34.5657541, + -1.3061441 + ], + [ + 34.5660458, + -1.3065256 + ], + [ + 34.5660928, + -1.3065651 + ], + [ + 34.5666339, + -1.3071121 + ], + [ + 34.567212, + -1.3075653 + ], + [ + 34.5674721, + -1.3078542 + ], + [ + 34.5677547, + -1.3081378 + ], + [ + 34.5680481, + -1.3084682 + ], + [ + 34.5682205, + -1.3087103 + ], + [ + 34.5683466, + -1.3088873 + ], + [ + 34.5684243, + -1.3090441 + ], + [ + 34.5684722, + -1.3091594 + ], + [ + 34.5684923, + -1.3093163 + ], + [ + 34.5685114, + -1.309559 + ], + [ + 34.5685261, + -1.3098165 + ], + [ + 34.5685222, + -1.3101075 + ], + [ + 34.5685202, + -1.3102485 + ], + [ + 34.5685812, + -1.3109253 + ], + [ + 34.5686067, + -1.3110861 + ], + [ + 34.5686494, + -1.3112609 + ], + [ + 34.5687376, + -1.3115098 + ], + [ + 34.569119, + -1.3120625 + ], + [ + 34.5695786, + -1.3127192 + ], + [ + 34.5698455, + -1.3130859 + ], + [ + 34.5701509, + -1.3135741 + ], + [ + 34.5702068, + -1.3136568 + ], + [ + 34.5704912, + -1.3140826 + ], + [ + 34.5708162, + -1.3146525 + ], + [ + 34.5712735, + -1.3153306 + ], + [ + 34.5713936, + -1.3154549 + ], + [ + 34.5721874, + -1.316324 + ], + [ + 34.5722805, + -1.3164382 + ], + [ + 34.572305, + -1.3164525 + ], + [ + 34.5727359, + -1.3167816 + ], + [ + 34.573027, + -1.3170082 + ], + [ + 34.5734719, + -1.3172255 + ], + [ + 34.5738732, + -1.3173849 + ], + [ + 34.5741589, + -1.3174654 + ], + [ + 34.5752317, + -1.3176759 + ], + [ + 34.5759441, + -1.3177845 + ], + [ + 34.5760321, + -1.3177864 + ], + [ + 34.5767983, + -1.3177895 + ], + [ + 34.5773662, + -1.3178006 + ], + [ + 34.5775586, + -1.3178133 + ], + [ + 34.5777427, + -1.3178002 + ], + [ + 34.5784716, + -1.3178626 + ], + [ + 34.5786685, + -1.3179135 + ], + [ + 34.579589, + -1.3180552 + ], + [ + 34.5798478, + -1.3180727 + ], + [ + 34.5803494, + -1.3181278 + ], + [ + 34.5810126, + -1.3180708 + ], + [ + 34.581547, + -1.3179979 + ], + [ + 34.5818604, + -1.3179806 + ], + [ + 34.5819906, + -1.3180248 + ], + [ + 34.5823269, + -1.3181056 + ], + [ + 34.582535, + -1.3181814 + ], + [ + 34.5829952, + -1.318317 + ], + [ + 34.5832969, + -1.318398 + ], + [ + 34.5833582, + -1.3184176 + ], + [ + 34.5834918, + -1.3184771 + ], + [ + 34.5837565, + -1.3185676 + ], + [ + 34.5839635, + -1.3186769 + ], + [ + 34.5842161, + -1.3188479 + ], + [ + 34.5845245, + -1.319084 + ], + [ + 34.5847815, + -1.3193871 + ], + [ + 34.5849439, + -1.3195781 + ], + [ + 34.5853068, + -1.3200838 + ], + [ + 34.5854617, + -1.3202783 + ], + [ + 34.5856622, + -1.3205265 + ], + [ + 34.5857079, + -1.3208924 + ], + [ + 34.5857336, + -1.3209991 + ], + [ + 34.5859494, + -1.3217091 + ], + [ + 34.5860109, + -1.3220112 + ], + [ + 34.5860827, + -1.3226923 + ], + [ + 34.5861181, + -1.3233759 + ], + [ + 34.586126, + -1.3239059 + ], + [ + 34.5861281, + -1.3240682 + ], + [ + 34.586085, + -1.3245561 + ], + [ + 34.5860121, + -1.3248906 + ], + [ + 34.5857772, + -1.3255497 + ], + [ + 34.5857609, + -1.325577 + ], + [ + 34.5854455, + -1.3262111 + ], + [ + 34.5850003, + -1.3269726 + ], + [ + 34.5846769, + -1.3273625 + ], + [ + 34.5843075, + -1.3278999 + ], + [ + 34.5831633, + -1.3295646 + ], + [ + 34.5828194, + -1.330065 + ], + [ + 34.5823136, + -1.3307545 + ], + [ + 34.5821486, + -1.3309776 + ], + [ + 34.5809447, + -1.3325502 + ], + [ + 34.5807721, + -1.3327553 + ], + [ + 34.5802153, + -1.3334149 + ], + [ + 34.5795226, + -1.3342177 + ], + [ + 34.579137, + -1.3346645 + ], + [ + 34.578791, + -1.3350453 + ], + [ + 34.5784647, + -1.3353632 + ], + [ + 34.5783475, + -1.3355063 + ], + [ + 34.5781231, + -1.3358145 + ], + [ + 34.577938, + -1.3360867 + ], + [ + 34.5773556, + -1.3369752 + ], + [ + 34.5766157, + -1.3380325 + ], + [ + 34.5760744, + -1.3387282 + ], + [ + 34.5757755, + -1.3392604 + ], + [ + 34.5753988, + -1.3397336 + ], + [ + 34.5752957, + -1.3399617 + ], + [ + 34.5750982, + -1.3403639 + ], + [ + 34.575062, + -1.3405348 + ], + [ + 34.575074, + -1.3407327 + ], + [ + 34.5751015, + -1.3409016 + ], + [ + 34.5751818, + -1.3410289 + ], + [ + 34.5753092, + -1.3411646 + ], + [ + 34.5759032, + -1.341486 + ], + [ + 34.5770913, + -1.3420598 + ], + [ + 34.578135, + -1.3425556 + ], + [ + 34.5787866, + -1.3429004 + ], + [ + 34.5797075, + -1.3432337 + ], + [ + 34.5802777, + -1.3434 + ], + [ + 34.5811917, + -1.3436157 + ], + [ + 34.5825779, + -1.3439667 + ], + [ + 34.5843587, + -1.3444159 + ], + [ + 34.585777, + -1.3447825 + ], + [ + 34.5868457, + -1.3450315 + ], + [ + 34.5880971, + -1.3452916 + ], + [ + 34.588697, + -1.3454052 + ], + [ + 34.5891136, + -1.3454992 + ], + [ + 34.589411, + -1.3455746 + ], + [ + 34.5896872, + -1.3457148 + ], + [ + 34.5897754, + -1.3457865 + ], + [ + 34.5899208, + -1.345957 + ], + [ + 34.5903764, + -1.3467614 + ], + [ + 34.5905372, + -1.3470215 + ], + [ + 34.5907845, + -1.3474438 + ], + [ + 34.5916009, + -1.3485626 + ], + [ + 34.5923955, + -1.3496152 + ], + [ + 34.5927105, + -1.3500091 + ], + [ + 34.5930231, + -1.3504437 + ], + [ + 34.5935695, + -1.351178 + ], + [ + 34.5942194, + -1.3519745 + ], + [ + 34.5943587, + -1.3521297 + ], + [ + 34.594728, + -1.3524762 + ], + [ + 34.5950581, + -1.3527524 + ], + [ + 34.5953413, + -1.3529975 + ], + [ + 34.5957245, + -1.3532552 + ], + [ + 34.5957947, + -1.3532944 + ], + [ + 34.5959365, + -1.3533789 + ], + [ + 34.5963009, + -1.3535578 + ], + [ + 34.5965857, + -1.3536974 + ], + [ + 34.5969243, + -1.3538093 + ], + [ + 34.5973873, + -1.3539036 + ], + [ + 34.5979283, + -1.3539782 + ], + [ + 34.5982044, + -1.3539759 + ], + [ + 34.5986528, + -1.3540124 + ], + [ + 34.598822, + -1.3540029 + ], + [ + 34.5994181, + -1.3540215 + ], + [ + 34.5997206, + -1.3540407 + ], + [ + 34.6000345, + -1.3541008 + ], + [ + 34.600397, + -1.3541786 + ], + [ + 34.6010538, + -1.3543082 + ], + [ + 34.601858, + -1.3544737 + ], + [ + 34.6024232, + -1.3545971 + ], + [ + 34.6028135, + -1.3546959 + ], + [ + 34.6030467, + -1.354789 + ], + [ + 34.603201, + -1.3548779 + ], + [ + 34.6033735, + -1.3550263 + ], + [ + 34.6039385, + -1.35568 + ], + [ + 34.6042083, + -1.3559949 + ], + [ + 34.6043567, + -1.3561383 + ], + [ + 34.6045684, + -1.3563185 + ], + [ + 34.6047678, + -1.3563821 + ], + [ + 34.6051176, + -1.3564693 + ], + [ + 34.6056812, + -1.3566038 + ], + [ + 34.6060388, + -1.3566857 + ], + [ + 34.6063018, + -1.3567119 + ], + [ + 34.6065308, + -1.3567001 + ], + [ + 34.6068389, + -1.3566445 + ], + [ + 34.6074202, + -1.3564736 + ], + [ + 34.6082259, + -1.3562443 + ], + [ + 34.6086412, + -1.356147 + ], + [ + 34.6088747, + -1.3561082 + ], + [ + 34.6093035, + -1.3560948 + ], + [ + 34.609784, + -1.3561082 + ], + [ + 34.6103123, + -1.3561309 + ], + [ + 34.6109454, + -1.356135 + ], + [ + 34.6114523, + -1.3561109 + ], + [ + 34.6120611, + -1.356001 + ], + [ + 34.6127316, + -1.3558481 + ], + [ + 34.6131608, + -1.3557113 + ], + [ + 34.6136736, + -1.3555558 + ], + [ + 34.6138158, + -1.3554968 + ], + [ + 34.6142847, + -1.355328 + ], + [ + 34.6149714, + -1.355155 + ], + [ + 34.6150434, + -1.3551516 + ], + [ + 34.6153093, + -1.3551295 + ], + [ + 34.61549, + -1.3551321 + ], + [ + 34.6156824, + -1.3551617 + ], + [ + 34.6158687, + -1.3551984 + ], + [ + 34.6159945, + -1.3552434 + ], + [ + 34.6161816, + -1.3552906 + ], + [ + 34.6164563, + -1.3554312 + ], + [ + 34.6168066, + -1.3556047 + ], + [ + 34.6171531, + -1.3558276 + ], + [ + 34.6175121, + -1.3560086 + ], + [ + 34.6181176, + -1.3563469 + ], + [ + 34.6183229, + -1.3565318 + ], + [ + 34.6184568, + -1.3567381 + ], + [ + 34.6185943, + -1.3569268 + ], + [ + 34.6186989, + -1.3571305 + ], + [ + 34.6188157, + -1.3574337 + ], + [ + 34.6189194, + -1.3579671 + ], + [ + 34.6189618, + -1.3582726 + ], + [ + 34.6190454, + -1.3588176 + ], + [ + 34.6191181, + -1.3591531 + ], + [ + 34.6191616, + -1.3593104 + ], + [ + 34.619211, + -1.3594657 + ], + [ + 34.6192605, + -1.3596263 + ], + [ + 34.6192984, + -1.3597025 + ], + [ + 34.619331, + -1.359762 + ], + [ + 34.6193777, + -1.359816 + ], + [ + 34.6194492, + -1.359863 + ], + [ + 34.6195585, + -1.3599316 + ], + [ + 34.619886, + -1.3601068 + ], + [ + 34.6202308, + -1.3602632 + ], + [ + 34.6205833, + -1.3604062 + ], + [ + 34.6208782, + -1.3605037 + ], + [ + 34.6212076, + -1.3606019 + ], + [ + 34.6214069, + -1.3606227 + ], + [ + 34.6215695, + -1.3606158 + ], + [ + 34.621894, + -1.3605849 + ], + [ + 34.6222294, + -1.3604924 + ], + [ + 34.6223125, + -1.3604464 + ], + [ + 34.6226961, + -1.3602604 + ], + [ + 34.6234682, + -1.3598086 + ], + [ + 34.6244556, + -1.359326 + ], + [ + 34.6246427, + -1.3591528 + ], + [ + 34.6247895, + -1.3590269 + ], + [ + 34.6250687, + -1.3587467 + ], + [ + 34.6253166, + -1.358535 + ], + [ + 34.6256975, + -1.3582883 + ], + [ + 34.6258477, + -1.3581998 + ], + [ + 34.6262205, + -1.3580161 + ], + [ + 34.627225, + -1.3575978 + ], + [ + 34.6276931, + -1.3573283 + ], + [ + 34.627917, + -1.3572518 + ], + [ + 34.6280923, + -1.3572131 + ], + [ + 34.6284996, + -1.3571894 + ], + [ + 34.6290237, + -1.3571826 + ], + [ + 34.6291749, + -1.3571855 + ], + [ + 34.6293873, + -1.3571869 + ], + [ + 34.6295834, + -1.357209 + ], + [ + 34.6298097, + -1.3572768 + ], + [ + 34.6300867, + -1.3573359 + ], + [ + 34.6302486, + -1.3574104 + ], + [ + 34.6304793, + -1.3575109 + ], + [ + 34.6308312, + -1.3576366 + ], + [ + 34.6310207, + -1.3577613 + ], + [ + 34.6311933, + -1.357902 + ], + [ + 34.6313543, + -1.3580389 + ], + [ + 34.6315441, + -1.3582221 + ], + [ + 34.6318591, + -1.3585571 + ], + [ + 34.6322701, + -1.359008 + ], + [ + 34.6325602, + -1.3593585 + ], + [ + 34.6328591, + -1.3596739 + ], + [ + 34.633086, + -1.3599704 + ], + [ + 34.6332899, + -1.3602364 + ], + [ + 34.6334513, + -1.3604251 + ], + [ + 34.6335747, + -1.3605358 + ], + [ + 34.6337304, + -1.360743 + ], + [ + 34.6338313, + -1.3608039 + ], + [ + 34.6339125, + -1.360855 + ], + [ + 34.6340487, + -1.3608867 + ], + [ + 34.6341643, + -1.3608865 + ], + [ + 34.6344245, + -1.360893 + ], + [ + 34.6346162, + -1.3608931 + ], + [ + 34.6348093, + -1.3608904 + ], + [ + 34.6350051, + -1.3608822 + ], + [ + 34.6351352, + -1.3608689 + ], + [ + 34.6352935, + -1.3608368 + ], + [ + 34.635836, + -1.3606998 + ], + [ + 34.636044, + -1.3606401 + ], + [ + 34.6362992, + -1.3605859 + ], + [ + 34.6366851, + -1.3603664 + ], + [ + 34.6369311, + -1.360198 + ], + [ + 34.6372176, + -1.3599534 + ], + [ + 34.6373356, + -1.3598301 + ], + [ + 34.6374455, + -1.3596859 + ], + [ + 34.6374971, + -1.3595906 + ], + [ + 34.6375468, + -1.359485 + ], + [ + 34.6375857, + -1.3593783 + ], + [ + 34.637823, + -1.3588493 + ], + [ + 34.6380355, + -1.3583339 + ], + [ + 34.6381155, + -1.3581398 + ], + [ + 34.638502, + -1.3572498 + ], + [ + 34.6385694, + -1.3571183 + ], + [ + 34.6387344, + -1.3568333 + ], + [ + 34.6387719, + -1.3567826 + ], + [ + 34.6388055, + -1.3567518 + ], + [ + 34.6389511, + -1.3566934 + ], + [ + 34.639091, + -1.3566659 + ], + [ + 34.6395022, + -1.3565993 + ], + [ + 34.6397158, + -1.3565797 + ], + [ + 34.6401051, + -1.3565108 + ], + [ + 34.640643, + -1.3564287 + ], + [ + 34.6410015, + -1.3563668 + ], + [ + 34.6414587, + -1.3562664 + ], + [ + 34.6416013, + -1.3562493 + ], + [ + 34.641733, + -1.3562335 + ], + [ + 34.6419285, + -1.3561896 + ], + [ + 34.6421591, + -1.3561638 + ], + [ + 34.6423857, + -1.3561527 + ], + [ + 34.6426858, + -1.3561689 + ], + [ + 34.6428366, + -1.3561736 + ], + [ + 34.6430603, + -1.3561993 + ], + [ + 34.6432651, + -1.3562397 + ], + [ + 34.6433636, + -1.3562575 + ], + [ + 34.6434951, + -1.3562779 + ], + [ + 34.6436839, + -1.3562894 + ], + [ + 34.6438299, + -1.3562788 + ], + [ + 34.6441623, + -1.3562427 + ], + [ + 34.6445338, + -1.3562336 + ], + [ + 34.6448769, + -1.3562268 + ], + [ + 34.6452241, + -1.3562354 + ], + [ + 34.6455946, + -1.3561986 + ], + [ + 34.6457867, + -1.3561897 + ], + [ + 34.6459301, + -1.3561764 + ], + [ + 34.6461173, + -1.3561596 + ], + [ + 34.6462241, + -1.3561278 + ], + [ + 34.6463443, + -1.3560982 + ], + [ + 34.6464396, + -1.3560662 + ], + [ + 34.6465433, + -1.3560165 + ], + [ + 34.6467211, + -1.3559223 + ], + [ + 34.6468402, + -1.3558414 + ], + [ + 34.6470925, + -1.355624 + ], + [ + 34.6472384, + -1.3555173 + ], + [ + 34.6473264, + -1.355449 + ], + [ + 34.6474451, + -1.3553929 + ], + [ + 34.6476509, + -1.3553359 + ], + [ + 34.6478456, + -1.3553071 + ], + [ + 34.6480551, + -1.3552882 + ], + [ + 34.6485065, + -1.3552675 + ], + [ + 34.648936, + -1.3552627 + ], + [ + 34.6493438, + -1.355287 + ], + [ + 34.6496008, + -1.3553047 + ], + [ + 34.6498033, + -1.3552951 + ], + [ + 34.6499807, + -1.3552802 + ], + [ + 34.6501432, + -1.3552717 + ], + [ + 34.65048, + -1.3552993 + ], + [ + 34.6505658, + -1.35532 + ], + [ + 34.6506389, + -1.3553576 + ], + [ + 34.6507173, + -1.3554584 + ], + [ + 34.6508384, + -1.3556457 + ], + [ + 34.6510546, + -1.3560244 + ], + [ + 34.6512617, + -1.356371 + ], + [ + 34.6513848, + -1.3565779 + ], + [ + 34.6514885, + -1.3568026 + ], + [ + 34.6515305, + -1.3568657 + ], + [ + 34.6517045, + -1.3573159 + ], + [ + 34.6519209, + -1.3578887 + ], + [ + 34.652077, + -1.3583021 + ], + [ + 34.6521727, + -1.3586196 + ], + [ + 34.6521954, + -1.3587074 + ], + [ + 34.6523381, + -1.3590917 + ], + [ + 34.6523919, + -1.3592359 + ], + [ + 34.6525343, + -1.3596428 + ], + [ + 34.652581, + -1.3597573 + ], + [ + 34.6526226, + -1.3598646 + ], + [ + 34.6526674, + -1.3600634 + ], + [ + 34.6527088, + -1.3602854 + ], + [ + 34.6527242, + -1.3605076 + ], + [ + 34.6527078, + -1.3607186 + ], + [ + 34.6526765, + -1.3609294 + ], + [ + 34.6526577, + -1.3611935 + ], + [ + 34.6526277, + -1.3614246 + ], + [ + 34.6526191, + -1.3615976 + ], + [ + 34.6526054, + -1.361729 + ], + [ + 34.6526179, + -1.3619238 + ], + [ + 34.6526195, + -1.3622603 + ], + [ + 34.6526216, + -1.3624343 + ], + [ + 34.6526648, + -1.362668 + ], + [ + 34.6526966, + -1.3628736 + ], + [ + 34.6527111, + -1.3632745 + ], + [ + 34.6527174, + -1.3634035 + ], + [ + 34.6527129, + -1.3635325 + ], + [ + 34.6526863, + -1.3636812 + ], + [ + 34.6525794, + -1.364132 + ], + [ + 34.652493, + -1.3644278 + ], + [ + 34.6523312, + -1.3650015 + ], + [ + 34.6523055, + -1.3651544 + ], + [ + 34.6522428, + -1.3654302 + ], + [ + 34.6521561, + -1.3657082 + ], + [ + 34.6520957, + -1.365894 + ], + [ + 34.6520209, + -1.3660528 + ], + [ + 34.6518647, + -1.3663024 + ], + [ + 34.6517484, + -1.3664968 + ], + [ + 34.6515707, + -1.3668712 + ], + [ + 34.6514869, + -1.3670592 + ], + [ + 34.6513546, + -1.3673983 + ], + [ + 34.6512469, + -1.3676948 + ], + [ + 34.6511183, + -1.3682781 + ], + [ + 34.6510751, + -1.3685636 + ], + [ + 34.6510182, + -1.368951 + ], + [ + 34.6509383, + -1.3694951 + ], + [ + 34.6508013, + -1.3705198 + ], + [ + 34.6507894, + -1.370757 + ], + [ + 34.6507808, + -1.3708146 + ], + [ + 34.6507386, + -1.3711471 + ], + [ + 34.6507098, + -1.3713979 + ], + [ + 34.6506956, + -1.3715219 + ], + [ + 34.6506296, + -1.3720936 + ], + [ + 34.6505288, + -1.3728055 + ], + [ + 34.6505039, + -1.372984 + ], + [ + 34.6504395, + -1.3733606 + ], + [ + 34.6503979, + -1.3737382 + ], + [ + 34.6502929, + -1.374649 + ], + [ + 34.6501493, + -1.3755889 + ], + [ + 34.6501398, + -1.3756667 + ], + [ + 34.6500972, + -1.3760136 + ], + [ + 34.6499933, + -1.3769245 + ], + [ + 34.6498964, + -1.3777676 + ], + [ + 34.6498647, + -1.377998 + ], + [ + 34.6498039, + -1.3784419 + ], + [ + 34.6496722, + -1.3790913 + ], + [ + 34.6496255, + -1.3793054 + ], + [ + 34.6495637, + -1.379536 + ], + [ + 34.6495154, + -1.3796466 + ], + [ + 34.6492527, + -1.3800763 + ], + [ + 34.6490248, + -1.3805171 + ], + [ + 34.6488941, + -1.3808284 + ], + [ + 34.6488491, + -1.3810115 + ], + [ + 34.6487851, + -1.3812742 + ], + [ + 34.6487276, + -1.3815197 + ], + [ + 34.6486428, + -1.3818981 + ], + [ + 34.6485338, + -1.3824989 + ], + [ + 34.6484641, + -1.3827818 + ], + [ + 34.6483057, + -1.3833405 + ], + [ + 34.6482227, + -1.3836493 + ], + [ + 34.6480599, + -1.38414 + ], + [ + 34.6479692, + -1.3845194 + ], + [ + 34.6478338, + -1.3850705 + ], + [ + 34.647752, + -1.3854217 + ], + [ + 34.6476285, + -1.3859047 + ], + [ + 34.6475869, + -1.3860612 + ], + [ + 34.647491, + -1.3863255 + ], + [ + 34.6472786, + -1.3868388 + ], + [ + 34.6469021, + -1.3876848 + ], + [ + 34.6467281, + -1.3881944 + ], + [ + 34.6465275, + -1.3887239 + ], + [ + 34.646333, + -1.3892401 + ], + [ + 34.6461107, + -1.3896507 + ], + [ + 34.6459089, + -1.3901725 + ], + [ + 34.6457642, + -1.3904995 + ], + [ + 34.6456274, + -1.3908739 + ], + [ + 34.6455283, + -1.391137 + ], + [ + 34.6454151, + -1.3914273 + ], + [ + 34.6453669, + -1.3915967 + ], + [ + 34.6452389, + -1.3925393 + ], + [ + 34.6450356, + -1.393597 + ] + ] + }, + "id": "way/34358522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34358818", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4700463, + -1.104712 + ], + [ + 34.4702241, + -1.1048011 + ], + [ + 34.47044, + -1.1048984 + ], + [ + 34.4706371, + -1.1049882 + ], + [ + 34.4708182, + -1.1050754 + ], + [ + 34.4709671, + -1.1051545 + ], + [ + 34.4711045, + -1.1052369 + ], + [ + 34.4712232, + -1.1053127 + ], + [ + 34.4713184, + -1.1053811 + ], + [ + 34.4714063, + -1.1054568 + ], + [ + 34.4715404, + -1.1055936 + ], + [ + 34.4716852, + -1.1057545 + ], + [ + 34.4718689, + -1.1059777 + ], + [ + 34.4721861, + -1.1063505 + ], + [ + 34.4722626, + -1.1064269 + ], + [ + 34.472402, + -1.106545 + ], + [ + 34.4725047, + -1.1066254 + ], + [ + 34.4726052, + -1.106683 + ], + [ + 34.4727098, + -1.106742 + ], + [ + 34.4728412, + -1.1068091 + ], + [ + 34.4729888, + -1.1068748 + ], + [ + 34.473137, + -1.1069311 + ], + [ + 34.4733562, + -1.1069874 + ], + [ + 34.4735882, + -1.1070457 + ], + [ + 34.4738182, + -1.107086 + ], + [ + 34.4740784, + -1.1071202 + ], + [ + 34.4743104, + -1.107159 + ], + [ + 34.4745304, + -1.1072127 + ], + [ + 34.4747543, + -1.1072797 + ], + [ + 34.4749756, + -1.1073602 + ], + [ + 34.4754249, + -1.1075318 + ], + [ + 34.4760512, + -1.1077825 + ], + [ + 34.476369, + -1.107918 + ], + [ + 34.4765608, + -1.1080038 + ], + [ + 34.4767673, + -1.1081178 + ], + [ + 34.4770128, + -1.1082626 + ], + [ + 34.4772622, + -1.1084302 + ], + [ + 34.4774795, + -1.1085964 + ], + [ + 34.477635, + -1.1087225 + ], + [ + 34.4779006, + -1.1089558 + ], + [ + 34.4780494, + -1.1091046 + ], + [ + 34.4782037, + -1.1092816 + ], + [ + 34.4783512, + -1.1094599 + ], + [ + 34.4786154, + -1.1098193 + ], + [ + 34.478775, + -1.1100781 + ], + [ + 34.4789359, + -1.1103677 + ], + [ + 34.4790082, + -1.1104915 + ] + ] + }, + "id": "way/34358818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34358859", + "highway": "trunk", + "ref": "B1", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.658067, + -1.1797721 + ], + [ + 34.6580654, + -1.1798585 + ], + [ + 34.658078, + -1.1799283 + ], + [ + 34.6581222, + -1.1800423 + ], + [ + 34.6581987, + -1.1801824 + ], + [ + 34.6582925, + -1.1802997 + ], + [ + 34.6583774, + -1.180374 + ], + [ + 34.6584709, + -1.1804398 + ], + [ + 34.6586533, + -1.1805444 + ], + [ + 34.6587981, + -1.1806758 + ], + [ + 34.6589182, + -1.180832 + ], + [ + 34.6597825, + -1.1825167 + ], + [ + 34.659922, + -1.1827608 + ], + [ + 34.6600896, + -1.1829603 + ], + [ + 34.6603055, + -1.1831644 + ], + [ + 34.661192, + -1.1838663 + ], + [ + 34.6614079, + -1.1840372 + ], + [ + 34.6622407, + -1.1846433 + ], + [ + 34.6630011, + -1.1852265 + ], + [ + 34.663724, + -1.1858004 + ], + [ + 34.6645179, + -1.1863796 + ], + [ + 34.6649632, + -1.1867014 + ], + [ + 34.6657839, + -1.1873504 + ], + [ + 34.6661755, + -1.1876132 + ], + [ + 34.6667173, + -1.1878974 + ], + [ + 34.6674456, + -1.1882259 + ], + [ + 34.6681952, + -1.1885544 + ], + [ + 34.6690348, + -1.1889138 + ], + [ + 34.669708, + -1.1892061 + ], + [ + 34.6702579, + -1.1894528 + ], + [ + 34.6715721, + -1.1900401 + ], + [ + 34.6728328, + -1.1905932 + ], + [ + 34.6731359, + -1.1907286 + ], + [ + 34.6740156, + -1.19111 + ], + [ + 34.6765532, + -1.1922593 + ], + [ + 34.6780325, + -1.1929334 + ], + [ + 34.6799608, + -1.1937867 + ], + [ + 34.6818438, + -1.1946161 + ], + [ + 34.682254, + -1.1948067 + ], + [ + 34.6828321, + -1.1950668 + ], + [ + 34.6834047, + -1.1953175 + ], + [ + 34.68374, + -1.1954476 + ], + [ + 34.6838761, + -1.1955019 + ], + [ + 34.6840712, + -1.1955615 + ], + [ + 34.6846613, + -1.1957184 + ], + [ + 34.685814, + -1.1960536 + ], + [ + 34.6859159, + -1.1960784 + ], + [ + 34.6859977, + -1.1961012 + ], + [ + 34.6860923, + -1.1961146 + ], + [ + 34.6861821, + -1.1961166 + ], + [ + 34.6863464, + -1.1961066 + ], + [ + 34.686618, + -1.1960489 + ], + [ + 34.6867662, + -1.1960261 + ], + [ + 34.6868829, + -1.1960067 + ], + [ + 34.6870109, + -1.1960013 + ], + [ + 34.687137, + -1.196004 + ], + [ + 34.6872175, + -1.1960194 + ], + [ + 34.6873321, + -1.1960623 + ], + [ + 34.6875192, + -1.1961837 + ], + [ + 34.6877821, + -1.1963995 + ], + [ + 34.6879484, + -1.1965631 + ], + [ + 34.688226, + -1.1969319 + ], + [ + 34.6883655, + -1.1971088 + ], + [ + 34.6884365, + -1.1971879 + ], + [ + 34.6885378, + -1.1973012 + ], + [ + 34.6886474, + -1.1974243 + ], + [ + 34.6887825, + -1.1975312 + ], + [ + 34.6889193, + -1.1976197 + ], + [ + 34.6918107, + -1.1991228 + ], + [ + 34.6920808, + -1.1992428 + ], + [ + 34.692527, + -1.1994325 + ], + [ + 34.6929842, + -1.1996108 + ], + [ + 34.6934576, + -1.1997771 + ], + [ + 34.693628, + -1.1998602 + ], + [ + 34.693691, + -1.1998991 + ], + [ + 34.6937768, + -1.1999782 + ], + [ + 34.6938761, + -1.2000881 + ], + [ + 34.6939766, + -1.200241 + ], + [ + 34.694034, + -1.2003563 + ], + [ + 34.6940893, + -1.2004669 + ], + [ + 34.6941604, + -1.2006553 + ], + [ + 34.6942127, + -1.200847 + ], + [ + 34.6942382, + -1.2010039 + ], + [ + 34.694269, + -1.2013136 + ], + [ + 34.6942998, + -1.2014651 + ], + [ + 34.6943468, + -1.2016193 + ], + [ + 34.6943964, + -1.2017574 + ], + [ + 34.6944782, + -1.2018902 + ], + [ + 34.6946177, + -1.2020859 + ], + [ + 34.6948374, + -1.2022981 + ], + [ + 34.6950522, + -1.2025056 + ], + [ + 34.6953428, + -1.2027379 + ], + [ + 34.6955206, + -1.2028614 + ], + [ + 34.6956705, + -1.202944 + ], + [ + 34.6958046, + -1.202991 + ], + [ + 34.6960849, + -1.2030366 + ], + [ + 34.6963676, + -1.2030591 + ], + [ + 34.6977854, + -1.2030889 + ], + [ + 34.6979865, + -1.2030942 + ], + [ + 34.6981461, + -1.203113 + ], + [ + 34.6983004, + -1.2031505 + ], + [ + 34.6988784, + -1.2033443 + ], + [ + 34.6991064, + -1.2034361 + ], + [ + 34.6993424, + -1.2035501 + ], + [ + 34.6994551, + -1.2036252 + ], + [ + 34.6995784, + -1.2037217 + ], + [ + 34.6998373, + -1.2039376 + ], + [ + 34.7004153, + -1.2044873 + ], + [ + 34.7005239, + -1.2045772 + ], + [ + 34.7006406, + -1.2046643 + ], + [ + 34.7007506, + -1.2047327 + ], + [ + 34.7008511, + -1.2047689 + ], + [ + 34.7010416, + -1.2048118 + ], + [ + 34.7012655, + -1.2048131 + ], + [ + 34.7013769, + -1.2047984 + ], + [ + 34.7014841, + -1.2047796 + ], + [ + 34.7016384, + -1.204738 + ], + [ + 34.7017424, + -1.2047189 + ], + [ + 34.7020159, + -1.2045891 + ], + [ + 34.7021869, + -1.2044806 + ], + [ + 34.7023465, + -1.2043733 + ], + [ + 34.7024846, + -1.2042621 + ], + [ + 34.7026226, + -1.204134 + ], + [ + 34.7028038, + -1.2038571 + ], + [ + 34.7028775, + -1.2037539 + ], + [ + 34.7029513, + -1.2036721 + ], + [ + 34.7030237, + -1.2036064 + ], + [ + 34.7031257, + -1.2035286 + ], + [ + 34.7033161, + -1.2034375 + ], + [ + 34.7034797, + -1.2033825 + ], + [ + 34.7036125, + -1.2033503 + ], + [ + 34.7037251, + -1.2033342 + ], + [ + 34.7038505, + -1.2033215 + ], + [ + 34.7039742, + -1.2033222 + ], + [ + 34.7041315, + -1.2033449 + ], + [ + 34.7043595, + -1.2034066 + ], + [ + 34.7046103, + -1.2035206 + ], + [ + 34.7048141, + -1.2036453 + ], + [ + 34.7052513, + -1.203959 + ], + [ + 34.7058778, + -1.2045078 + ], + [ + 34.7066923, + -1.2053134 + ], + [ + 34.7072844, + -1.2060132 + ], + [ + 34.707432, + -1.2061613 + ], + [ + 34.707491, + -1.2062149 + ], + [ + 34.7075884, + -1.206267 + ], + [ + 34.7076836, + -1.2062945 + ], + [ + 34.7077498, + -1.2063048 + ], + [ + 34.7078183, + -1.2062965 + ], + [ + 34.7078946, + -1.2062713 + ], + [ + 34.7079724, + -1.2062284 + ], + [ + 34.7080254, + -1.2061861 + ], + [ + 34.7080857, + -1.2061157 + ], + [ + 34.7085893, + -1.2054219 + ], + [ + 34.7086859, + -1.2053173 + ], + [ + 34.7087798, + -1.2052127 + ], + [ + 34.7089179, + -1.2051135 + ], + [ + 34.7097051, + -1.2047005 + ], + [ + 34.7101282, + -1.2044645 + ], + [ + 34.7102684, + -1.2043693 + ], + [ + 34.7108011, + -1.2039864 + ] + ] + }, + "id": "way/34358859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/34358985", + "highway": "secondary", + "lanes": "2", + "ref": "C12", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3727066, + -1.4651958 + ], + [ + 35.3726841, + -1.4653885 + ], + [ + 35.3726248, + -1.4655859 + ], + [ + 35.3723744, + -1.4661808 + ], + [ + 35.372196, + -1.4665415 + ], + [ + 35.3718768, + -1.4670965 + ], + [ + 35.3716126, + -1.467484 + ], + [ + 35.3707945, + -1.4685283 + ], + [ + 35.370065, + -1.4693837 + ], + [ + 35.369778, + -1.4697617 + ], + [ + 35.3695205, + -1.4702042 + ], + [ + 35.3692254, + -1.4708182 + ], + [ + 35.3690109, + -1.4713679 + ], + [ + 35.3686354, + -1.4724002 + ], + [ + 35.3683296, + -1.473293 + ], + [ + 35.3679004, + -1.4747115 + ], + [ + 35.3676885, + -1.4754542 + ], + [ + 35.367482, + -1.4763149 + ], + [ + 35.366495, + -1.4802698 + ] + ] + }, + "id": "way/34358985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/36837957", + "AUTO_ID": "32168;867", + "highway": "trunk", + "ref": "B1", + "source": "survey", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8088878, + -1.2278602 + ], + [ + 34.8093384, + -1.2281847 + ], + [ + 34.8098281, + -1.2285522 + ], + [ + 34.8101592, + -1.2288001 + ], + [ + 34.810646, + -1.2291621 + ], + [ + 34.8109263, + -1.2293686 + ], + [ + 34.8111235, + -1.2295161 + ], + [ + 34.8112831, + -1.2296408 + ], + [ + 34.8115365, + -1.2298312 + ], + [ + 34.8118919, + -1.2300939 + ], + [ + 34.8122473, + -1.2303326 + ], + [ + 34.8124418, + -1.2304325 + ], + [ + 34.8126242, + -1.2305418 + ], + [ + 34.8127536, + -1.2305988 + ], + [ + 34.8128521, + -1.230635 + ], + [ + 34.8129407, + -1.2306598 + ], + [ + 34.8131056, + -1.2306993 + ], + [ + 34.8135415, + -1.2307711 + ], + [ + 34.813984, + -1.2308475 + ], + [ + 34.8142841, + -1.2308941 + ], + [ + 34.8144715, + -1.2309045 + ], + [ + 34.8147096, + -1.2309179 + ], + [ + 34.8150288, + -1.2309199 + ], + [ + 34.8154619, + -1.2309252 + ], + [ + 34.8161419, + -1.2309319 + ], + [ + 34.8168272, + -1.2309319 + ], + [ + 34.8178866, + -1.2309467 + ], + [ + 34.8183614, + -1.2309427 + ], + [ + 34.818515, + -1.2309373 + ], + [ + 34.8186149, + -1.2309266 + ], + [ + 34.818747, + -1.2309051 + ], + [ + 34.8188918, + -1.230879 + ], + [ + 34.8190152, + -1.2308468 + ], + [ + 34.819148, + -1.2308066 + ], + [ + 34.819331, + -1.2307349 + ], + [ + 34.8194953, + -1.2306705 + ], + [ + 34.8198051, + -1.2305565 + ], + [ + 34.8201109, + -1.2304372 + ], + [ + 34.8203751, + -1.2303319 + ], + [ + 34.8207512, + -1.2301838 + ], + [ + 34.8211154, + -1.2300403 + ], + [ + 34.8214862, + -1.2299056 + ], + [ + 34.8217718, + -1.229811 + ], + [ + 34.8219663, + -1.2297567 + ], + [ + 34.8221165, + -1.2297192 + ], + [ + 34.8222224, + -1.2296971 + ], + [ + 34.8223063, + -1.2296823 + ], + [ + 34.8223995, + -1.2296723 + ], + [ + 34.8225577, + -1.2296602 + ], + [ + 34.8227274, + -1.2296522 + ], + [ + 34.8228715, + -1.2296548 + ], + [ + 34.8230124, + -1.2296662 + ], + [ + 34.8231558, + -1.2296783 + ], + [ + 34.8233148, + -1.2297004 + ], + [ + 34.8235213, + -1.2297453 + ], + [ + 34.82376, + -1.229811 + ], + [ + 34.823925, + -1.229868 + ], + [ + 34.8241047, + -1.2299438 + ], + [ + 34.8242636, + -1.2300195 + ], + [ + 34.8244051, + -1.2300993 + ], + [ + 34.8245265, + -1.2301704 + ], + [ + 34.8247498, + -1.2303125 + ], + [ + 34.825087, + -1.2305545 + ], + [ + 34.8273468, + -1.2321628 + ], + [ + 34.8287183, + -1.2331456 + ], + [ + 34.8301014, + -1.2341177 + ], + [ + 34.8306768, + -1.234532 + ], + [ + 34.8311169, + -1.2350069 + ], + [ + 34.8314326, + -1.2353938 + ], + [ + 34.8318019, + -1.2360752 + ], + [ + 34.832392, + -1.2371881 + ], + [ + 34.8325637, + -1.2374107 + ], + [ + 34.8327488, + -1.2375716 + ], + [ + 34.8329768, + -1.2377271 + ], + [ + 34.8332611, + -1.2378183 + ], + [ + 34.833701, + -1.2379041 + ], + [ + 34.8343688, + -1.2379845 + ], + [ + 34.8349723, + -1.2380516 + ], + [ + 34.8356187, + -1.2381535 + ], + [ + 34.8361739, + -1.238309 + ], + [ + 34.8367828, + -1.2385396 + ], + [ + 34.837912, + -1.2389874 + ], + [ + 34.8384511, + -1.2391403 + ], + [ + 34.8390654, + -1.2392395 + ], + [ + 34.8397547, + -1.2394379 + ], + [ + 34.8401114, + -1.2395988 + ], + [ + 34.8403877, + -1.239749 + ], + [ + 34.8407364, + -1.2400064 + ], + [ + 34.8410609, + -1.2401995 + ], + [ + 34.8415115, + -1.2403872 + ], + [ + 34.8421311, + -1.2405293 + ], + [ + 34.8428339, + -1.2406715 + ], + [ + 34.8433784, + -1.2407251 + ], + [ + 34.8439443, + -1.2406983 + ], + [ + 34.8444915, + -1.2406286 + ], + [ + 34.8458755, + -1.2403819 + ], + [ + 34.8471147, + -1.2401056 + ], + [ + 34.8481768, + -1.2399072 + ], + [ + 34.8488474, + -1.2397986 + ], + [ + 34.8492564, + -1.2397021 + ], + [ + 34.8497231, + -1.2395908 + ], + [ + 34.8499699, + -1.2395398 + ], + [ + 34.8501804, + -1.2395077 + ], + [ + 34.8503736, + -1.2394835 + ], + [ + 34.8505801, + -1.2394674 + ], + [ + 34.8508872, + -1.23945 + ], + [ + 34.8514116, + -1.2394299 + ], + [ + 34.85172, + -1.2394232 + ], + [ + 34.8522605, + -1.239391 + ], + [ + 34.8526615, + -1.2393696 + ], + [ + 34.8530397, + -1.2393494 + ], + [ + 34.8535533, + -1.2393267 + ], + [ + 34.8541112, + -1.2392891 + ], + [ + 34.854539, + -1.239265 + ], + [ + 34.8552914, + -1.2392221 + ], + [ + 34.8557943, + -1.2391953 + ], + [ + 34.8562261, + -1.2391698 + ], + [ + 34.8566687, + -1.2391537 + ], + [ + 34.8573151, + -1.2391336 + ], + [ + 34.8578288, + -1.2391161 + ], + [ + 34.8585154, + -1.2391041 + ], + [ + 34.858966, + -1.2390934 + ], + [ + 34.8596057, + -1.2390786 + ], + [ + 34.8600818, + -1.2390759 + ], + [ + 34.8605995, + -1.2390719 + ], + [ + 34.8609723, + -1.2390679 + ], + [ + 34.8612674, + -1.2390612 + ], + [ + 34.8615731, + -1.2390518 + ], + [ + 34.8622303, + -1.2390504 + ], + [ + 34.8629478, + -1.2390384 + ], + [ + 34.8636827, + -1.2390357 + ], + [ + 34.8644364, + -1.239025 + ], + [ + 34.8653336, + -1.2390102 + ], + [ + 34.866212, + -1.2390035 + ], + [ + 34.8669684, + -1.2389968 + ], + [ + 34.8677181, + -1.2389754 + ], + [ + 34.8681539, + -1.2389767 + ], + [ + 34.868449, + -1.238978 + ], + [ + 34.8686535, + -1.2389801 + ], + [ + 34.8688117, + -1.2389888 + ], + [ + 34.8689358, + -1.2389961 + ], + [ + 34.8690444, + -1.2390122 + ], + [ + 34.8691893, + -1.2390391 + ], + [ + 34.8693267, + -1.2390712 + ], + [ + 34.8694521, + -1.2391027 + ], + [ + 34.8695641, + -1.2391356 + ], + [ + 34.8697572, + -1.2391872 + ], + [ + 34.8698947, + -1.2392294 + ], + [ + 34.870061, + -1.2392931 + ], + [ + 34.8701797, + -1.2393468 + ], + [ + 34.8703084, + -1.2394118 + ], + [ + 34.8704774, + -1.239507 + ], + [ + 34.8707952, + -1.2397121 + ], + [ + 34.8709823, + -1.2398335 + ], + [ + 34.8723768, + -1.2408217 + ], + [ + 34.8726272, + -1.2409979 + ], + [ + 34.8729397, + -1.2412071 + ], + [ + 34.8732602, + -1.2414256 + ], + [ + 34.8734922, + -1.2415838 + ], + [ + 34.8736572, + -1.2416871 + ], + [ + 34.8742859, + -1.2420558 + ], + [ + 34.8750883, + -1.2424658 + ], + [ + 34.8760095, + -1.2429616 + ], + [ + 34.876641, + -1.2432549 + ], + [ + 34.8773007, + -1.243613 + ], + [ + 34.8776226, + -1.2437685 + ], + [ + 34.8780839, + -1.2439844 + ], + [ + 34.8783347, + -1.2440997 + ], + [ + 34.8787277, + -1.2442432 + ], + [ + 34.8794535, + -1.2444569 + ], + [ + 34.879807, + -1.2445221 + ], + [ + 34.8805132, + -1.2447075 + ], + [ + 34.8808627, + -1.2447557 + ], + [ + 34.8814663, + -1.2447878 + ], + [ + 34.8825704, + -1.2447358 + ], + [ + 34.8832472, + -1.2447244 + ], + [ + 34.8836381, + -1.2447318 + ], + [ + 34.8837601, + -1.2447358 + ], + [ + 34.8838634, + -1.2447492 + ], + [ + 34.8839807, + -1.24477 + ], + [ + 34.8841102, + -1.2448049 + ], + [ + 34.884247, + -1.2448451 + ], + [ + 34.8847378, + -1.2450113 + ], + [ + 34.8850922, + -1.2452253 + ], + [ + 34.8853407, + -1.2454123 + ], + [ + 34.8857087, + -1.2457522 + ], + [ + 34.8863184, + -1.2463235 + ], + [ + 34.8867999, + -1.2467727 + ], + [ + 34.8871513, + -1.2471038 + ], + [ + 34.8876984, + -1.2476053 + ], + [ + 34.8883462, + -1.2481966 + ], + [ + 34.8897425, + -1.2495374 + ], + [ + 34.8903452, + -1.2500667 + ], + [ + 34.8908644, + -1.2505036 + ], + [ + 34.891222, + -1.2507967 + ], + [ + 34.8919207, + -1.2513268 + ], + [ + 34.8924649, + -1.2517447 + ], + [ + 34.8928785, + -1.2521199 + ], + [ + 34.8932231, + -1.2523783 + ], + [ + 34.8934658, + -1.2525858 + ], + [ + 34.8937778, + -1.2528561 + ], + [ + 34.894032, + -1.2530386 + ], + [ + 34.8943185, + -1.2532558 + ], + [ + 34.8945727, + -1.2534245 + ], + [ + 34.8947899, + -1.2535492 + ], + [ + 34.8950233, + -1.253674 + ], + [ + 34.8953705, + -1.2538387 + ], + [ + 34.8956969, + -1.253975 + ], + [ + 34.8960031, + -1.2541149 + ], + [ + 34.8964186, + -1.2543264 + ], + [ + 34.8966271, + -1.2544502 + ], + [ + 34.8967934, + -1.2545542 + ], + [ + 34.8969529, + -1.2546582 + ], + [ + 34.8971031, + -1.2547621 + ], + [ + 34.8976415, + -1.2551503 + ], + [ + 34.8980367, + -1.2554506 + ], + [ + 34.8984919, + -1.2557856 + ], + [ + 34.8986185, + -1.2558727 + ], + [ + 34.8988848, + -1.2560559 + ], + [ + 34.8993747, + -1.2564071 + ], + [ + 34.899823, + -1.2567236 + ], + [ + 34.900091, + -1.2569292 + ], + [ + 34.9002829, + -1.2570863 + ], + [ + 34.9004677, + -1.2572596 + ], + [ + 34.900678, + -1.2574421 + ], + [ + 34.9008513, + -1.2576177 + ], + [ + 34.9010893, + -1.2578464 + ], + [ + 34.9013066, + -1.2580428 + ], + [ + 34.9015423, + -1.258283 + ], + [ + 34.9018194, + -1.2585732 + ], + [ + 34.9021697, + -1.2588636 + ], + [ + 34.9024571, + -1.2591386 + ], + [ + 34.9027533, + -1.2594357 + ], + [ + 34.9030409, + -1.2597184 + ], + [ + 34.9032475, + -1.2599288 + ], + [ + 34.9036986, + -1.2603644 + ], + [ + 34.9045818, + -1.2612697 + ], + [ + 34.9051535, + -1.2618682 + ], + [ + 34.9058382, + -1.2625779 + ], + [ + 34.9063604, + -1.2631185 + ], + [ + 34.9068711, + -1.2636614 + ], + [ + 34.9071484, + -1.2639479 + ], + [ + 34.9073957, + -1.2642321 + ], + [ + 34.9075621, + -1.2644423 + ], + [ + 34.9078494, + -1.2647829 + ], + [ + 34.9081214, + -1.2651501 + ], + [ + 34.908398, + -1.2655247 + ], + [ + 34.9087505, + -1.2660217 + ], + [ + 34.909016, + -1.2663931 + ], + [ + 34.9092025, + -1.266688 + ], + [ + 34.9093607, + -1.2669682 + ], + [ + 34.909476, + -1.2672015 + ], + [ + 34.9096061, + -1.2674885 + ], + [ + 34.9097912, + -1.2679095 + ], + [ + 34.9099857, + -1.2683345 + ], + [ + 34.9101868, + -1.2687703 + ], + [ + 34.910388, + -1.2692127 + ], + [ + 34.9107635, + -1.2700467 + ], + [ + 34.9111347, + -1.270925 + ], + [ + 34.9112271, + -1.2710914 + ], + [ + 34.9113159, + -1.2712238 + ], + [ + 34.9113988, + -1.2713469 + ], + [ + 34.9115036, + -1.2714711 + ], + [ + 34.9116156, + -1.2715935 + ], + [ + 34.9117411, + -1.2717125 + ], + [ + 34.9118819, + -1.2718299 + ], + [ + 34.9120436, + -1.2719578 + ], + [ + 34.9121931, + -1.2720598 + ], + [ + 34.9123386, + -1.2721376 + ], + [ + 34.9125312, + -1.2722243 + ], + [ + 34.9127318, + -1.2723024 + ], + [ + 34.912921, + -1.2723713 + ], + [ + 34.913299, + -1.2724048 + ], + [ + 34.9138392, + -1.2724333 + ], + [ + 34.9140903, + -1.2724367 + ], + [ + 34.9143146, + -1.2724208 + ], + [ + 34.9145212, + -1.2724204 + ], + [ + 34.9148144, + -1.2724448 + ], + [ + 34.9150048, + -1.2724535 + ], + [ + 34.9151338, + -1.2724613 + ], + [ + 34.9151997, + -1.2724717 + ], + [ + 34.915959, + -1.2725447 + ], + [ + 34.9168009, + -1.272563 + ], + [ + 34.9171753, + -1.2725515 + ], + [ + 34.9175199, + -1.2725394 + ], + [ + 34.917869, + -1.2725059 + ], + [ + 34.9183266, + -1.2724842 + ], + [ + 34.9189479, + -1.2724152 + ], + [ + 34.9192045, + -1.2723807 + ], + [ + 34.9194173, + -1.2723521 + ], + [ + 34.9198887, + -1.2723028 + ], + [ + 34.9203092, + -1.2722593 + ], + [ + 34.9205422, + -1.2722258 + ], + [ + 34.9208355, + -1.2722024 + ], + [ + 34.9212097, + -1.2721992 + ], + [ + 34.9218515, + -1.2722305 + ], + [ + 34.9222457, + -1.2722466 + ], + [ + 34.9224765, + -1.2722532 + ], + [ + 34.9226924, + -1.2722519 + ], + [ + 34.9229123, + -1.2722331 + ], + [ + 34.9231644, + -1.2722036 + ], + [ + 34.9233736, + -1.2721715 + ], + [ + 34.9235909, + -1.2721286 + ], + [ + 34.9238578, + -1.2720468 + ], + [ + 34.9241958, + -1.2719368 + ], + [ + 34.9244895, + -1.2718014 + ], + [ + 34.9247148, + -1.2716848 + ], + [ + 34.9248785, + -1.2715826 + ], + [ + 34.9250554, + -1.2714662 + ], + [ + 34.9252431, + -1.2713268 + ], + [ + 34.9254591, + -1.2711552 + ], + [ + 34.9256616, + -1.2709969 + ], + [ + 34.9259794, + -1.2707181 + ], + [ + 34.9268091, + -1.2699203 + ], + [ + 34.9273248, + -1.2694414 + ], + [ + 34.9275757, + -1.2692083 + ], + [ + 34.9279913, + -1.2688359 + ], + [ + 34.9280846, + -1.2687334 + ], + [ + 34.9282287, + -1.2685731 + ], + [ + 34.9283876, + -1.2684062 + ], + [ + 34.9285929, + -1.2681836 + ], + [ + 34.9288684, + -1.2678733 + ], + [ + 34.9292546, + -1.2673852 + ], + [ + 34.9294658, + -1.2671285 + ], + [ + 34.9296972, + -1.2668436 + ], + [ + 34.9299165, + -1.2665841 + ], + [ + 34.9301143, + -1.2663166 + ], + [ + 34.9303865, + -1.2659814 + ], + [ + 34.9307205, + -1.2655651 + ], + [ + 34.9309686, + -1.2652581 + ], + [ + 34.9311959, + -1.2649624 + ], + [ + 34.9314681, + -1.2646239 + ], + [ + 34.931782, + -1.2642377 + ], + [ + 34.9319963, + -1.2639776 + ], + [ + 34.9321192, + -1.2638268 + ], + [ + 34.9324572, + -1.2633857 + ], + [ + 34.9326597, + -1.2631182 + ], + [ + 34.9328977, + -1.2628481 + ], + [ + 34.9331505, + -1.2625538 + ], + [ + 34.9332404, + -1.2624444 + ], + [ + 34.9333732, + -1.262309 + ], + [ + 34.9334785, + -1.2621957 + ], + [ + 34.9335978, + -1.2620891 + ], + [ + 34.9337406, + -1.2619752 + ], + [ + 34.9338433, + -1.261888 + ], + [ + 34.9339609, + -1.2618056 + ], + [ + 34.9341302, + -1.261693 + ], + [ + 34.9342496, + -1.2616253 + ], + [ + 34.9343884, + -1.2615488 + ], + [ + 34.9345769, + -1.2614563 + ], + [ + 34.9348806, + -1.2613142 + ], + [ + 34.935287, + -1.2611426 + ], + [ + 34.935869, + -1.2608851 + ], + [ + 34.9361902, + -1.2607497 + ], + [ + 34.93651, + -1.260613 + ], + [ + 34.9377492, + -1.26007 + ], + [ + 34.9387269, + -1.2596449 + ], + [ + 34.9397743, + -1.2592065 + ], + [ + 34.9406701, + -1.2588204 + ], + [ + 34.9418101, + -1.2583175 + ], + [ + 34.9427609, + -1.2579086 + ], + [ + 34.9432062, + -1.2577189 + ], + [ + 34.9437399, + -1.2574997 + ], + [ + 34.9443347, + -1.2572194 + ], + [ + 34.944916, + -1.2569607 + ], + [ + 34.945926, + -1.2565316 + ], + [ + 34.9467896, + -1.2561777 + ], + [ + 34.9474233, + -1.2558927 + ], + [ + 34.947955, + -1.2556668 + ], + [ + 34.9491969, + -1.2551359 + ], + [ + 34.9502215, + -1.2547081 + ], + [ + 34.9511496, + -1.2542858 + ], + [ + 34.9521111, + -1.2538755 + ], + [ + 34.9531129, + -1.2534626 + ], + [ + 34.9533563, + -1.2533535 + ], + [ + 34.9541804, + -1.2529839 + ], + [ + 34.9548832, + -1.2526782 + ], + [ + 34.9551782, + -1.2525455 + ], + [ + 34.9554478, + -1.2524328 + ], + [ + 34.9556717, + -1.2523457 + ], + [ + 34.9559467, + -1.2522478 + ], + [ + 34.9562766, + -1.252154 + ], + [ + 34.9565595, + -1.252095 + ], + [ + 34.9567902, + -1.2520588 + ], + [ + 34.9569293, + -1.2520395 + ], + [ + 34.956988, + -1.2520313 + ], + [ + 34.9571671, + -1.2520172 + ], + [ + 34.9573401, + -1.2520098 + ], + [ + 34.9575332, + -1.2520105 + ], + [ + 34.9577679, + -1.2520112 + ], + [ + 34.9580348, + -1.2520253 + ], + [ + 34.9583016, + -1.252048 + ], + [ + 34.9586383, + -1.2520896 + ], + [ + 34.9590822, + -1.2521419 + ], + [ + 34.959343, + -1.252168 + ], + [ + 34.9596119, + -1.2521895 + ], + [ + 34.9598332, + -1.2522049 + ], + [ + 34.9600357, + -1.2522183 + ], + [ + 34.9602395, + -1.2522331 + ], + [ + 34.9605406, + -1.2522398 + ], + [ + 34.9608665, + -1.2522465 + ], + [ + 34.9611374, + -1.2522512 + ], + [ + 34.9615096, + -1.2522432 + ], + [ + 34.9618596, + -1.252223 + ], + [ + 34.9622753, + -1.2522076 + ], + [ + 34.9626105, + -1.2522035 + ], + [ + 34.9629861, + -1.2521861 + ], + [ + 34.9634856, + -1.252166 + ], + [ + 34.9638967, + -1.2521641 + ], + [ + 34.9642266, + -1.252162 + ], + [ + 34.9649642, + -1.2521567 + ], + [ + 34.9658802, + -1.2521473 + ], + [ + 34.9663569, + -1.2521345 + ], + [ + 34.9667553, + -1.2521379 + ], + [ + 34.967108, + -1.2521318 + ], + [ + 34.9675874, + -1.2521137 + ], + [ + 34.9681936, + -1.2521057 + ], + [ + 34.9687663, + -1.2521003 + ], + [ + 34.9700833, + -1.2520936 + ], + [ + 34.9710405, + -1.2520823 + ], + [ + 34.9715612, + -1.2520762 + ], + [ + 34.9727232, + -1.2520554 + ], + [ + 34.973039, + -1.2520514 + ], + [ + 34.9732918, + -1.25204 + ], + [ + 34.9734722, + -1.2520253 + ], + [ + 34.9736425, + -1.2520045 + ], + [ + 34.9737968, + -1.251977 + ], + [ + 34.9739543, + -1.2519354 + ], + [ + 34.9741012, + -1.2518939 + ], + [ + 34.9742715, + -1.2518375 + ], + [ + 34.9744264, + -1.2517779 + ], + [ + 34.9746343, + -1.2516994 + ], + [ + 34.9748696, + -1.2516002 + ], + [ + 34.975107, + -1.251495 + ], + [ + 34.9754731, + -1.2513327 + ], + [ + 34.9758024, + -1.251202 + ], + [ + 34.9759935, + -1.2511464 + ], + [ + 34.9761725, + -1.2510948 + ], + [ + 34.9762939, + -1.2510646 + ], + [ + 34.9765051, + -1.2510418 + ], + [ + 34.9766507, + -1.251023 + ], + [ + 34.9768544, + -1.2510163 + ], + [ + 34.9772145, + -1.251031 + ], + [ + 34.9775613, + -1.2510491 + ], + [ + 34.977816, + -1.2510693 + ], + [ + 34.9785369, + -1.2511048 + ], + [ + 34.9790002, + -1.2511015 + ], + [ + 34.9796225, + -1.2511256 + ], + [ + 34.9798264, + -1.2511269 + ], + [ + 34.9800034, + -1.2511236 + ], + [ + 34.9802321, + -1.2510981 + ], + [ + 34.9803722, + -1.251086 + ], + [ + 34.9804801, + -1.2510719 + ], + [ + 34.9806471, + -1.2510498 + ], + [ + 34.9809019, + -1.2509882 + ], + [ + 34.9811836, + -1.2509218 + ], + [ + 34.9815041, + -1.2508252 + ], + [ + 34.9820419, + -1.2506228 + ], + [ + 34.9828264, + -1.2501803 + ], + [ + 34.983328, + -1.24988 + ], + [ + 34.9839437, + -1.2495081 + ], + [ + 34.9848166, + -1.2489441 + ], + [ + 34.9852619, + -1.2485902 + ], + [ + 34.9858439, + -1.24796 + ], + [ + 34.9860907, + -1.2476409 + ], + [ + 34.9863535, + -1.2471099 + ], + [ + 34.9864072, + -1.2467694 + ], + [ + 34.986434, + -1.2463055 + ], + [ + 34.9864501, + -1.2460279 + ], + [ + 34.9865332, + -1.2457678 + ], + [ + 34.9866459, + -1.2455707 + ], + [ + 34.9868417, + -1.2454527 + ], + [ + 34.987016, + -1.2453723 + ], + [ + 34.9872418, + -1.2453439 + ], + [ + 34.9875256, + -1.2454071 + ], + [ + 34.987826, + -1.2455412 + ], + [ + 34.9881305, + -1.2456807 + ], + [ + 34.9883558, + -1.2457383 + ], + [ + 34.9885878, + -1.2457571 + ], + [ + 34.9887414, + -1.2457202 + ], + [ + 34.9888815, + -1.2456471 + ], + [ + 34.9891645, + -1.2454165 + ], + [ + 34.9895038, + -1.2450987 + ], + [ + 34.9896662, + -1.2449598 + ], + [ + 34.9897546, + -1.2448842 + ], + [ + 34.9900979, + -1.244718 + ], + [ + 34.9905619, + -1.2445651 + ], + [ + 34.9911976, + -1.2445276 + ], + [ + 34.9915838, + -1.2445919 + ], + [ + 34.991925, + -1.2447046 + ], + [ + 34.9923187, + -1.2449084 + ], + [ + 34.9927694, + -1.2452584 + ], + [ + 34.993169, + -1.2458442 + ], + [ + 34.9938315, + -1.2468525 + ], + [ + 34.99403, + -1.2471046 + ], + [ + 34.9942929, + -1.2473674 + ], + [ + 34.9945664, + -1.2475443 + ], + [ + 34.9948266, + -1.2476409 + ], + [ + 34.9951284, + -1.2478086 + ], + [ + 34.9953309, + -1.2480163 + ], + [ + 34.9954998, + -1.2483032 + ], + [ + 34.9956241, + -1.2487935 + ], + [ + 34.9957545, + -1.2494956 + ], + [ + 34.9957979, + -1.2496327 + ], + [ + 34.9958541, + -1.2497796 + ], + [ + 34.9959113, + -1.2498447 + ], + [ + 34.9959735, + -1.2498939 + ], + [ + 34.9961087, + -1.2499444 + ], + [ + 34.9962589, + -1.2499524 + ], + [ + 34.996452, + -1.2499363 + ], + [ + 34.9966022, + -1.2499028 + ], + [ + 34.996857, + -1.2498384 + ], + [ + 34.9971199, + -1.2497593 + ], + [ + 34.9976403, + -1.249589 + ], + [ + 34.9981593, + -1.2494134 + ], + [ + 34.9982987, + -1.2493665 + ], + [ + 34.9983779, + -1.2493557 + ], + [ + 34.9984717, + -1.2493852 + ], + [ + 34.9985535, + -1.2494174 + ], + [ + 34.9986555, + -1.2494925 + ], + [ + 34.9987426, + -1.2495783 + ], + [ + 34.9989063, + -1.2497325 + ], + [ + 34.9990042, + -1.2498143 + ], + [ + 34.9991705, + -1.2499283 + ], + [ + 34.9993555, + -1.2500181 + ], + [ + 35.0000972, + -1.2503721 + ], + [ + 35.0005116, + -1.2505584 + ], + [ + 35.0006524, + -1.2506322 + ], + [ + 35.0009085, + -1.2507931 + ], + [ + 35.0011204, + -1.2509861 + ], + [ + 35.0014801, + -1.2514401 + ], + [ + 35.001673, + -1.2517102 + ], + [ + 35.0018672, + -1.251938 + ], + [ + 35.0019501, + -1.2519843 + ], + [ + 35.0019894, + -1.2520038 + ], + [ + 35.0020294, + -1.2520137 + ], + [ + 35.0021243, + -1.2520155 + ], + [ + 35.0022157, + -1.2519672 + ], + [ + 35.0023158, + -1.2518607 + ], + [ + 35.0024226, + -1.2516807 + ], + [ + 35.0029028, + -1.2507682 + ], + [ + 35.0031173, + -1.2503546 + ], + [ + 35.0032487, + -1.2500436 + ], + [ + 35.0033534, + -1.2496011 + ], + [ + 35.0036779, + -1.2483247 + ], + [ + 35.0041795, + -1.2468418 + ], + [ + 35.004217, + -1.2467184 + ], + [ + 35.0042452, + -1.2465361 + ], + [ + 35.0042583, + -1.2463741 + ], + [ + 35.0042469, + -1.2462505 + ], + [ + 35.0042108, + -1.2461198 + ], + [ + 35.0041769, + -1.2460361 + ], + [ + 35.0041264, + -1.2459378 + ], + [ + 35.0040813, + -1.245865 + ], + [ + 35.004032, + -1.2457652 + ], + [ + 35.0040319, + -1.2457351 + ], + [ + 35.0040432, + -1.2457007 + ] + ] + }, + "id": "way/36837957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37422675", + "highway": "secondary", + "ref": "R184", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5386367, + -1.5905265 + ], + [ + 34.5380907, + -1.5903189 + ], + [ + 34.5375676, + -1.5900937 + ], + [ + 34.5368904, + -1.5898309 + ], + [ + 34.5361662, + -1.5895507 + ], + [ + 34.5354795, + -1.5892893 + ], + [ + 34.5348653, + -1.5890587 + ], + [ + 34.5345193, + -1.5889139 + ], + [ + 34.5342001, + -1.5887933 + ], + [ + 34.5335699, + -1.5885708 + ], + [ + 34.5330816, + -1.5883777 + ], + [ + 34.5328564, + -1.5883401 + ], + [ + 34.5321643, + -1.5880399 + ], + [ + 34.5319739, + -1.5879434 + ], + [ + 34.5317512, + -1.5877986 + ], + [ + 34.5315903, + -1.5876028 + ], + [ + 34.5315018, + -1.5873991 + ], + [ + 34.5314751, + -1.5872168 + ], + [ + 34.5315045, + -1.5869996 + ], + [ + 34.531585, + -1.5864741 + ], + [ + 34.5316762, + -1.5857341 + ], + [ + 34.5318586, + -1.5844364 + ], + [ + 34.5320731, + -1.5830207 + ], + [ + 34.5321697, + -1.5823611 + ], + [ + 34.5322234, + -1.5819295 + ], + [ + 34.5322368, + -1.5816828 + ], + [ + 34.5322287, + -1.5815273 + ], + [ + 34.5322046, + -1.581404 + ], + [ + 34.5321214, + -1.5812136 + ], + [ + 34.5319685, + -1.5809669 + ], + [ + 34.5317915, + -1.5806827 + ], + [ + 34.5314508, + -1.5801572 + ], + [ + 34.5312631, + -1.5798837 + ], + [ + 34.5311156, + -1.5796398 + ], + [ + 34.531019, + -1.5794279 + ], + [ + 34.530952, + -1.5792456 + ], + [ + 34.5308502, + -1.5789196 + ] + ] + }, + "id": "way/37422675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37423099", + "highway": "primary", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9799458, + -1.8219488 + ], + [ + 33.9807835, + -1.8234046 + ], + [ + 33.9809592, + -1.8237211 + ], + [ + 33.9820322, + -1.8256544 + ], + [ + 33.9831877, + -1.8277363 + ], + [ + 33.9837831, + -1.8288941 + ], + [ + 33.9850673, + -1.8316757 + ], + [ + 33.9851804, + -1.8319207 + ], + [ + 33.9860971, + -1.8338881 + ], + [ + 33.9871132, + -1.8361111 + ], + [ + 33.9874668, + -1.8368285 + ], + [ + 33.9878238, + -1.8375529 + ], + [ + 33.9884301, + -1.8389056 + ], + [ + 33.9885273, + -1.8391225 + ], + [ + 33.9891115, + -1.8405723 + ], + [ + 33.9891455, + -1.8406566 + ], + [ + 33.9897069, + -1.8423683 + ], + [ + 33.9900073, + -1.8433147 + ], + [ + 33.9901759, + -1.8438456 + ], + [ + 33.9903962, + -1.844776 + ], + [ + 33.9907941, + -1.8468924 + ], + [ + 33.9910641, + -1.8483484 + ], + [ + 33.9911431, + -1.8486731 + ], + [ + 33.9914306, + -1.8496666 + ], + [ + 33.9916966, + -1.8505856 + ], + [ + 33.991717, + -1.8506489 + ], + [ + 33.9920239, + -1.851602 + ], + [ + 33.9927554, + -1.853874 + ], + [ + 33.9937218, + -1.8567078 + ], + [ + 33.9938718, + -1.8572177 + ], + [ + 33.9941481, + -1.8581567 + ], + [ + 33.9944892, + -1.8589521 + ], + [ + 33.9955045, + -1.860744 + ], + [ + 33.9958323, + -1.8613669 + ], + [ + 33.9961785, + -1.8619772 + ], + [ + 33.9962021, + -1.8620189 + ], + [ + 33.9965871, + -1.8626977 + ], + [ + 33.9972259, + -1.8638046 + ], + [ + 33.9972426, + -1.8638344 + ], + [ + 33.9992737, + -1.8674671 + ], + [ + 34.0006819, + -1.8700218 + ], + [ + 34.0015026, + -1.8715016 + ], + [ + 34.002994, + -1.8741797 + ], + [ + 34.0040132, + -1.8760375 + ], + [ + 34.0058237, + -1.8796217 + ], + [ + 34.0074893, + -1.8824955 + ], + [ + 34.0081178, + -1.8835474 + ], + [ + 34.0087634, + -1.8847741 + ], + [ + 34.0100133, + -1.887097 + ], + [ + 34.0106884, + -1.8882455 + ], + [ + 34.0107509, + -1.8883583 + ], + [ + 34.0126035, + -1.8917121 + ], + [ + 34.0134493, + -1.8932434 + ], + [ + 34.0136399, + -1.8935885 + ], + [ + 34.0136573, + -1.89362 + ], + [ + 34.01395, + -1.8941498 + ], + [ + 34.0141638, + -1.8945369 + ], + [ + 34.0141881, + -1.8945808 + ], + [ + 34.0146047, + -1.8953351 + ], + [ + 34.0146275, + -1.8953765 + ], + [ + 34.0147267, + -1.895556 + ], + [ + 34.0151873, + -1.8963898 + ], + [ + 34.0152769, + -1.8965463 + ], + [ + 34.0152886, + -1.8965668 + ], + [ + 34.0154957, + -1.8969286 + ], + [ + 34.0161548, + -1.898103 + ], + [ + 34.0162898, + -1.8983435 + ], + [ + 34.0163866, + -1.898516 + ], + [ + 34.0165139, + -1.8987428 + ], + [ + 34.0167486, + -1.8991609 + ], + [ + 34.0170198, + -1.8996441 + ], + [ + 34.0170639, + -1.8997227 + ], + [ + 34.0170943, + -1.8997768 + ], + [ + 34.017331, + -1.9001986 + ], + [ + 34.0177013, + -1.9008584 + ], + [ + 34.0179668, + -1.9014528 + ], + [ + 34.018106, + -1.9016316 + ], + [ + 34.0182658, + -1.9019671 + ], + [ + 34.018675, + -1.9027071 + ], + [ + 34.0188593, + -1.9030126 + ], + [ + 34.0191744, + -1.9035648 + ], + [ + 34.0192348, + -1.9036733 + ] + ] + }, + "id": "way/37423099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37423646", + "highway": "primary", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1522771, + -1.9227632 + ], + [ + 34.1547511, + -1.9230455 + ], + [ + 34.1551619, + -1.9230868 + ], + [ + 34.1553703, + -1.9230831 + ], + [ + 34.1559456, + -1.9230578 + ], + [ + 34.1569809, + -1.9229718 + ], + [ + 34.1576843, + -1.922885 + ], + [ + 34.1582822, + -1.9228112 + ], + [ + 34.1589014, + -1.9226206 + ], + [ + 34.1592018, + -1.9225697 + ], + [ + 34.1594566, + -1.9225999 + ], + [ + 34.1596283, + -1.9226475 + ], + [ + 34.1597946, + -1.9227198 + ], + [ + 34.1604624, + -1.9231487 + ], + [ + 34.1609586, + -1.9234946 + ], + [ + 34.1614066, + -1.923776 + ], + [ + 34.1620101, + -1.9240629 + ], + [ + 34.1634271, + -1.9245663 + ], + [ + 34.1643487, + -1.9247477 + ], + [ + 34.1649873, + -1.9247404 + ], + [ + 34.1659312, + -1.924708 + ], + [ + 34.1664553, + -1.92469 + ], + [ + 34.1666183, + -1.9246895 + ], + [ + 34.1668502, + -1.9246937 + ], + [ + 34.1670119, + -1.9246896 + ], + [ + 34.1672151, + -1.9246914 + ], + [ + 34.1688557, + -1.924706 + ], + [ + 34.1693308, + -1.9247103 + ], + [ + 34.1694574, + -1.9247114 + ], + [ + 34.1699508, + -1.9247666 + ], + [ + 34.1702773, + -1.9248347 + ], + [ + 34.1707998, + -1.9250233 + ], + [ + 34.1712406, + -1.9252233 + ], + [ + 34.1716016, + -1.9253871 + ], + [ + 34.1721073, + -1.9255654 + ], + [ + 34.1724787, + -1.9256659 + ], + [ + 34.1729109, + -1.9257571 + ], + [ + 34.1737742, + -1.9259393 + ], + [ + 34.1740921, + -1.9260399 + ], + [ + 34.1744191, + -1.9261477 + ], + [ + 34.1747311, + -1.9263036 + ], + [ + 34.1751704, + -1.9265412 + ], + [ + 34.1755284, + -1.9268106 + ], + [ + 34.1761802, + -1.9273521 + ], + [ + 34.1765383, + -1.9275867 + ], + [ + 34.1768897, + -1.9277823 + ], + [ + 34.1771303, + -1.9279378 + ], + [ + 34.1773456, + -1.9281121 + ], + [ + 34.1775508, + -1.9283144 + ], + [ + 34.1779826, + -1.9287246 + ], + [ + 34.178393, + -1.9290382 + ], + [ + 34.1787041, + -1.9292554 + ], + [ + 34.1795099, + -1.9297292 + ], + [ + 34.1796295, + -1.9297995 + ], + [ + 34.1801552, + -1.9300783 + ], + [ + 34.1806487, + -1.9302258 + ], + [ + 34.181271, + -1.9303357 + ], + [ + 34.1827867, + -1.9305715 + ], + [ + 34.1829753, + -1.9305974 + ], + [ + 34.183073, + -1.9306124 + ], + [ + 34.1847445, + -1.9308691 + ], + [ + 34.1887865, + -1.9315581 + ], + [ + 34.1936581, + -1.9323918 + ], + [ + 34.1955631, + -1.9326384 + ], + [ + 34.1958509, + -1.932686 + ], + [ + 34.1981273, + -1.9331169 + ], + [ + 34.1989409, + -1.9332186 + ], + [ + 34.2003414, + -1.9333128 + ], + [ + 34.2009881, + -1.9333055 + ], + [ + 34.2035111, + -1.9332782 + ], + [ + 34.2042019, + -1.9332693 + ], + [ + 34.2064281, + -1.933179 + ], + [ + 34.2077618, + -1.9331116 + ], + [ + 34.2087945, + -1.9330499 + ], + [ + 34.2091727, + -1.9330338 + ], + [ + 34.209575, + -1.9330097 + ], + [ + 34.2099452, + -1.9330177 + ], + [ + 34.2111367, + -1.932989 + ], + [ + 34.2119593, + -1.932956 + ], + [ + 34.2123956, + -1.9329386 + ], + [ + 34.2124671, + -1.9329357 + ], + [ + 34.2125116, + -1.9329354 + ], + [ + 34.212863, + -1.9329335 + ], + [ + 34.2135596, + -1.9329295 + ], + [ + 34.213737, + -1.9329285 + ], + [ + 34.2140346, + -1.9329647 + ], + [ + 34.2143578, + -1.9330722 + ], + [ + 34.2149772, + -1.9332782 + ], + [ + 34.2151728, + -1.9333517 + ], + [ + 34.2158194, + -1.9335946 + ], + [ + 34.2160152, + -1.933675 + ], + [ + 34.2161735, + -1.9337554 + ], + [ + 34.2163425, + -1.9338707 + ], + [ + 34.2164318, + -1.9339343 + ], + [ + 34.2172008, + -1.9344819 + ], + [ + 34.2175357, + -1.9347183 + ], + [ + 34.2180323, + -1.9350689 + ], + [ + 34.2182221, + -1.9351846 + ], + [ + 34.2183515, + -1.9352512 + ], + [ + 34.2186545, + -1.9353879 + ], + [ + 34.2191293, + -1.9355541 + ], + [ + 34.2204248, + -1.9359428 + ], + [ + 34.2207641, + -1.9360662 + ], + [ + 34.2211155, + -1.9362136 + ], + [ + 34.2215674, + -1.9364361 + ], + [ + 34.2219751, + -1.9366666 + ], + [ + 34.2220282, + -1.9367036 + ], + [ + 34.2224096, + -1.9369695 + ], + [ + 34.222696, + -1.9371842 + ], + [ + 34.2228388, + -1.9372912 + ], + [ + 34.223427, + -1.9377491 + ], + [ + 34.2234932, + -1.9378006 + ], + [ + 34.2237883, + -1.9380338 + ], + [ + 34.2239199, + -1.9381534 + ], + [ + 34.2240538, + -1.938275 + ], + [ + 34.2245071, + -1.9386262 + ], + [ + 34.2252984, + -1.9391516 + ], + [ + 34.2259823, + -1.9396556 + ], + [ + 34.2268175, + -1.9402978 + ], + [ + 34.2270808, + -1.9405002 + ], + [ + 34.2271182, + -1.940529 + ], + [ + 34.2271488, + -1.9405519 + ], + [ + 34.2277376, + -1.9410064 + ], + [ + 34.2279478, + -1.9411505 + ], + [ + 34.22845, + -1.9415267 + ], + [ + 34.2292815, + -1.94217 + ], + [ + 34.2303258, + -1.9430151 + ], + [ + 34.2304529, + -1.9431179 + ], + [ + 34.2306762, + -1.9432986 + ], + [ + 34.2309654, + -1.9435351 + ], + [ + 34.2311778, + -1.9437088 + ], + [ + 34.2316659, + -1.9440787 + ], + [ + 34.2319047, + -1.9442502 + ], + [ + 34.2321407, + -1.9443843 + ], + [ + 34.2325546, + -1.94456 + ], + [ + 34.2327281, + -1.9446336 + ], + [ + 34.233657, + -1.9450409 + ], + [ + 34.2342597, + -1.9453053 + ], + [ + 34.2365467, + -1.9463075 + ], + [ + 34.2368713, + -1.9464738 + ] + ] + }, + "id": "way/37423646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37423819", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2017124, + -1.3341577 + ], + [ + 34.2009474, + -1.3354571 + ], + [ + 34.199998, + -1.3369325 + ], + [ + 34.1990045, + -1.3383918 + ], + [ + 34.1987643, + -1.3387194 + ], + [ + 34.1981381, + -1.3393866 + ], + [ + 34.19765, + -1.3398827 + ], + [ + 34.1972557, + -1.3400784 + ], + [ + 34.195933, + -1.3405853 + ], + [ + 34.194662, + -1.3410652 + ], + [ + 34.1941872, + -1.3411778 + ], + [ + 34.193624, + -1.3412743 + ], + [ + 34.1933584, + -1.3413253 + ], + [ + 34.1931599, + -1.3414165 + ], + [ + 34.1929752, + -1.3415657 + ], + [ + 34.191694, + -1.3426252 + ], + [ + 34.1912761, + -1.3429524 + ], + [ + 34.1903812, + -1.343653 + ], + [ + 34.190231, + -1.3438432 + ], + [ + 34.1900647, + -1.3441167 + ], + [ + 34.1899383, + -1.3444278 + ], + [ + 34.1899064, + -1.3447468 + ], + [ + 34.1899225, + -1.3456296 + ], + [ + 34.1899091, + -1.3459857 + ], + [ + 34.1898608, + -1.3464818 + ], + [ + 34.1897643, + -1.3469421 + ], + [ + 34.1895738, + -1.3477152 + ], + [ + 34.1892582, + -1.3486657 + ], + [ + 34.1888657, + -1.3498953 + ], + [ + 34.1887362, + -1.3504841 + ], + [ + 34.1886109, + -1.35148 + ], + [ + 34.1886163, + -1.3518608 + ], + [ + 34.1886431, + -1.3521638 + ], + [ + 34.1887289, + -1.3526089 + ], + [ + 34.188745, + -1.3528878 + ], + [ + 34.1887046, + -1.3536625 + ], + [ + 34.1886096, + -1.3541843 + ], + [ + 34.1885278, + -1.3544538 + ], + [ + 34.1883936, + -1.3547345 + ], + [ + 34.1881657, + -1.3549364 + ], + [ + 34.1876606, + -1.3551964 + ], + [ + 34.1871759, + -1.3553896 + ], + [ + 34.1856042, + -1.3557382 + ], + [ + 34.1829166, + -1.3564246 + ], + [ + 34.1826913, + -1.3565265 + ], + [ + 34.1823667, + -1.3567142 + ], + [ + 34.1820905, + -1.3569716 + ], + [ + 34.1819403, + -1.3571754 + ], + [ + 34.1817042, + -1.3575937 + ], + [ + 34.1815077, + -1.3581059 + ], + [ + 34.1813153, + -1.3587012 + ], + [ + 34.1811812, + -1.359401 + ], + [ + 34.1811141, + -1.3596075 + ], + [ + 34.1808245, + -1.3602537 + ], + [ + 34.1805348, + -1.3606828 + ], + [ + 34.1802022, + -1.361018 + ], + [ + 34.179773, + -1.361396 + ], + [ + 34.1793781, + -1.3616527 + ], + [ + 34.1791347, + -1.3617768 + ], + [ + 34.1788691, + -1.3618546 + ], + [ + 34.1786411, + -1.3618948 + ], + [ + 34.1783084, + -1.3619316 + ], + [ + 34.1779172, + -1.3619642 + ], + [ + 34.1759612, + -1.3620627 + ], + [ + 34.1758504, + -1.3620683 + ], + [ + 34.1757186, + -1.3620749 + ], + [ + 34.1754114, + -1.3620808 + ], + [ + 34.1747543, + -1.3620935 + ], + [ + 34.1745722, + -1.3621013 + ], + [ + 34.1743979, + -1.3621468 + ], + [ + 34.1737159, + -1.3623596 + ], + [ + 34.1726652, + -1.3628065 + ], + [ + 34.1721636, + -1.3630398 + ], + [ + 34.1718122, + -1.3632516 + ], + [ + 34.1716298, + -1.3633857 + ], + [ + 34.1708495, + -1.3641137 + ], + [ + 34.1703881, + -1.3645427 + ], + [ + 34.1698703, + -1.3649999 + ], + [ + 34.1697876, + -1.3650705 + ], + [ + 34.168506, + -1.3659648 + ], + [ + 34.168344, + -1.3660745 + ], + [ + 34.168035, + -1.3662837 + ], + [ + 34.1674697, + -1.36666 + ], + [ + 34.1668227, + -1.3671045 + ], + [ + 34.1660133, + -1.3676626 + ], + [ + 34.1657934, + -1.3678905 + ], + [ + 34.1655165, + -1.3683209 + ], + [ + 34.1649216, + -1.3694109 + ], + [ + 34.1648183, + -1.3695828 + ], + [ + 34.1646481, + -1.3697836 + ], + [ + 34.1643879, + -1.3700062 + ], + [ + 34.1640139, + -1.3702343 + ], + [ + 34.1638214, + -1.3703041 + ], + [ + 34.1616766, + -1.3710826 + ], + [ + 34.1615306, + -1.3711356 + ], + [ + 34.1614439, + -1.3711682 + ], + [ + 34.1580318, + -1.3723858 + ], + [ + 34.1573707, + -1.372622 + ], + [ + 34.1566332, + -1.372882 + ], + [ + 34.1556051, + -1.3732445 + ], + [ + 34.1555227, + -1.3732736 + ], + [ + 34.1530827, + -1.3741341 + ], + [ + 34.153021, + -1.3741558 + ], + [ + 34.1507282, + -1.3750153 + ], + [ + 34.1502371, + -1.3751994 + ], + [ + 34.1497931, + -1.3753957 + ], + [ + 34.1485539, + -1.3759435 + ], + [ + 34.147912, + -1.3762272 + ], + [ + 34.1475221, + -1.3764066 + ], + [ + 34.1470246, + -1.3766051 + ], + [ + 34.1466169, + -1.3767173 + ], + [ + 34.1460335, + -1.376876 + ], + [ + 34.1458404, + -1.376935 + ], + [ + 34.1455212, + -1.3770798 + ], + [ + 34.1453737, + -1.3771897 + ], + [ + 34.1451591, + -1.3774525 + ], + [ + 34.1449794, + -1.3777233 + ], + [ + 34.1448158, + -1.3781604 + ], + [ + 34.1446836, + -1.3787176 + ], + [ + 34.1445315, + -1.3791606 + ], + [ + 34.1443035, + -1.3796057 + ], + [ + 34.143499, + -1.3812557 + ], + [ + 34.1433915, + -1.3814774 + ], + [ + 34.1430858, + -1.3819198 + ], + [ + 34.1428189, + -1.3821412 + ], + [ + 34.1426566, + -1.3822469 + ], + [ + 34.1424286, + -1.3823488 + ], + [ + 34.141978, + -1.3824507 + ], + [ + 34.1414684, + -1.3824748 + ], + [ + 34.1408005, + -1.3824588 + ], + [ + 34.1405323, + -1.3825097 + ], + [ + 34.1402695, + -1.3826036 + ], + [ + 34.1400442, + -1.3827108 + ], + [ + 34.1393865, + -1.3831374 + ], + [ + 34.1386385, + -1.3835989 + ], + [ + 34.1376221, + -1.3842741 + ], + [ + 34.1372412, + -1.3846146 + ], + [ + 34.1371125, + -1.3848479 + ], + [ + 34.1370696, + -1.3852501 + ], + [ + 34.1370964, + -1.3855424 + ], + [ + 34.1371608, + -1.3858159 + ], + [ + 34.1373968, + -1.3865064 + ], + [ + 34.1375517, + -1.3869007 + ], + [ + 34.137611, + -1.3870846 + ], + [ + 34.1378965, + -1.3879704 + ], + [ + 34.1380104, + -1.3883239 + ], + [ + 34.1382672, + -1.3892353 + ], + [ + 34.1390035, + -1.3920582 + ], + [ + 34.1392445, + -1.3929331 + ], + [ + 34.1393039, + -1.3931469 + ], + [ + 34.1393065, + -1.3934231 + ], + [ + 34.1392284, + -1.3937001 + ], + [ + 34.1390276, + -1.3940639 + ], + [ + 34.1388211, + -1.3943643 + ], + [ + 34.138523, + -1.3947567 + ], + [ + 34.1380263, + -1.3954395 + ], + [ + 34.1373646, + -1.3963083 + ], + [ + 34.1370052, + -1.3968446 + ], + [ + 34.1365841, + -1.3974157 + ], + [ + 34.134673, + -1.4000884 + ], + [ + 34.1337383, + -1.4014231 + ], + [ + 34.1336404, + -1.4015719 + ] + ] + }, + "id": "way/37423819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37423927", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0818663, + -1.2462259 + ], + [ + 34.0819191, + -1.2462959 + ], + [ + 34.0822291, + -1.2467064 + ], + [ + 34.0825134, + -1.2471448 + ], + [ + 34.0828648, + -1.2477347 + ], + [ + 34.0830891, + -1.2482384 + ], + [ + 34.0832189, + -1.2486384 + ], + [ + 34.083302, + -1.2489495 + ], + [ + 34.0834308, + -1.2493866 + ], + [ + 34.0835515, + -1.2497298 + ], + [ + 34.0837126, + -1.2500763 + ], + [ + 34.0839734, + -1.2505573 + ], + [ + 34.0840519, + -1.2507021 + ], + [ + 34.0846412, + -1.2517888 + ], + [ + 34.0848199, + -1.2521183 + ], + [ + 34.0849919, + -1.2524298 + ], + [ + 34.0851464, + -1.2527096 + ], + [ + 34.085415, + -1.2531961 + ], + [ + 34.0859023, + -1.2540787 + ], + [ + 34.0862981, + -1.2547956 + ], + [ + 34.0867059, + -1.2555342 + ], + [ + 34.087589, + -1.2571337 + ], + [ + 34.0877076, + -1.2573486 + ], + [ + 34.087959, + -1.2578039 + ], + [ + 34.0880482, + -1.2579694 + ], + [ + 34.0888125, + -1.259387 + ], + [ + 34.0893481, + -1.2604157 + ], + [ + 34.0894366, + -1.2605446 + ], + [ + 34.0905365, + -1.2625734 + ], + [ + 34.0909589, + -1.2634468 + ], + [ + 34.0913065, + -1.26407 + ], + [ + 34.0918184, + -1.2650586 + ], + [ + 34.0919182, + -1.265225 + ], + [ + 34.0919536, + -1.2652549 + ], + [ + 34.0921516, + -1.2655423 + ], + [ + 34.0935384, + -1.2672619 + ], + [ + 34.093739, + -1.2675197 + ], + [ + 34.0940385, + -1.2679048 + ], + [ + 34.0941447, + -1.2680413 + ], + [ + 34.0944806, + -1.268473 + ], + [ + 34.0950994, + -1.2692425 + ], + [ + 34.0951736, + -1.2693424 + ], + [ + 34.0953121, + -1.2695162 + ], + [ + 34.0961855, + -1.2706445 + ], + [ + 34.0973009, + -1.2721181 + ], + [ + 34.0975914, + -1.2724934 + ], + [ + 34.0996986, + -1.2751461 + ], + [ + 34.1015629, + -1.2774983 + ], + [ + 34.1033535, + -1.2796755 + ], + [ + 34.1047637, + -1.2814675 + ], + [ + 34.1050859, + -1.2818769 + ], + [ + 34.1051381, + -1.2819433 + ], + [ + 34.1054248, + -1.2823096 + ], + [ + 34.1057429, + -1.2827159 + ], + [ + 34.1061203, + -1.2831981 + ], + [ + 34.1064926, + -1.2836736 + ], + [ + 34.1082063, + -1.2858185 + ], + [ + 34.1086483, + -1.2863717 + ], + [ + 34.1089978, + -1.2868092 + ], + [ + 34.1093092, + -1.2871989 + ], + [ + 34.1096048, + -1.2875221 + ], + [ + 34.1096532, + -1.287575 + ], + [ + 34.1097056, + -1.2876321 + ], + [ + 34.1098402, + -1.2877188 + ], + [ + 34.1101303, + -1.2878719 + ], + [ + 34.1106834, + -1.2881085 + ], + [ + 34.1110914, + -1.2882791 + ], + [ + 34.1115085, + -1.2884909 + ], + [ + 34.112268, + -1.2890552 + ], + [ + 34.1130826, + -1.2897198 + ], + [ + 34.113273, + -1.2898807 + ], + [ + 34.1137639, + -1.2902829 + ], + [ + 34.113965, + -1.2904384 + ], + [ + 34.11437, + -1.2907629 + ], + [ + 34.1147456, + -1.291023 + ], + [ + 34.1157863, + -1.2917899 + ], + [ + 34.1160437, + -1.2919615 + ], + [ + 34.1172722, + -1.2928518 + ], + [ + 34.1175377, + -1.2929832 + ], + [ + 34.117763, + -1.293061 + ], + [ + 34.1181895, + -1.2931387 + ], + [ + 34.1184926, + -1.293187 + ], + [ + 34.1187125, + -1.2932165 + ], + [ + 34.1221297, + -1.2937233 + ], + [ + 34.1223603, + -1.2937555 + ], + [ + 34.12287, + -1.2938413 + ], + [ + 34.1239724, + -1.2939968 + ], + [ + 34.1245142, + -1.2940799 + ], + [ + 34.1250372, + -1.2941631 + ], + [ + 34.1255549, + -1.2942382 + ], + [ + 34.125815, + -1.294265 + ], + [ + 34.1263354, + -1.2943132 + ], + [ + 34.1268021, + -1.2943454 + ], + [ + 34.127486, + -1.2943401 + ], + [ + 34.1277945, + -1.294332 + ], + [ + 34.1282773, + -1.2943374 + ], + [ + 34.1307878, + -1.2942113 + ], + [ + 34.1309836, + -1.2941926 + ], + [ + 34.1323481, + -1.2941581 + ], + [ + 34.1323744, + -1.2941572 + ], + [ + 34.1331274, + -1.2941301 + ], + [ + 34.1338442, + -1.2941242 + ] + ] + }, + "id": "way/37423927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37423960", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0099265, + -1.1252145 + ], + [ + 34.0110372, + -1.1252427 + ], + [ + 34.013191, + -1.1253324 + ], + [ + 34.0135998, + -1.1253802 + ], + [ + 34.0142072, + -1.1254628 + ], + [ + 34.0156232, + -1.1256118 + ], + [ + 34.0159585, + -1.1256494 + ], + [ + 34.0160979, + -1.1257915 + ], + [ + 34.0177944, + -1.1274126 + ], + [ + 34.0186721, + -1.1282483 + ], + [ + 34.0190096, + -1.1285911 + ], + [ + 34.0197928, + -1.1294518 + ], + [ + 34.0201575, + -1.1299789 + ], + [ + 34.0203211, + -1.1302713 + ], + [ + 34.0204686, + -1.1306091 + ], + [ + 34.0206805, + -1.1314217 + ], + [ + 34.0207985, + -1.1320841 + ], + [ + 34.0211257, + -1.1333311 + ], + [ + 34.0212893, + -1.1338754 + ], + [ + 34.0219894, + -1.1358867 + ], + [ + 34.0225983, + -1.1375038 + ], + [ + 34.0229121, + -1.1382707 + ], + [ + 34.0231937, + -1.1388741 + ], + [ + 34.0234217, + -1.1394292 + ], + [ + 34.0239635, + -1.1406655 + ], + [ + 34.0250954, + -1.1432291 + ], + [ + 34.0254226, + -1.1440846 + ], + [ + 34.025782, + -1.1448569 + ], + [ + 34.02623, + -1.1457016 + ], + [ + 34.0265197, + -1.1462219 + ], + [ + 34.0267423, + -1.1465732 + ], + [ + 34.0270615, + -1.1469567 + ], + [ + 34.0273699, + -1.1472087 + ], + [ + 34.0282627, + -1.1478775 + ], + [ + 34.0289434, + -1.1482906 + ], + [ + 34.0299287, + -1.1488794 + ], + [ + 34.0303981, + -1.1491932 + ], + [ + 34.0305725, + -1.1493755 + ], + [ + 34.0306932, + -1.1496142 + ], + [ + 34.031007, + -1.1504107 + ], + [ + 34.0311277, + -1.1508156 + ], + [ + 34.0312242, + -1.1512634 + ], + [ + 34.0312886, + -1.1518534 + ], + [ + 34.0313191, + -1.1522277 + ], + [ + 34.0313058, + -1.1526562 + ], + [ + 34.03131, + -1.1527855 + ], + [ + 34.0312806, + -1.153634 + ], + [ + 34.0312779, + -1.1538378 + ], + [ + 34.0313017, + -1.1540782 + ], + [ + 34.0314174, + -1.1545243 + ], + [ + 34.0316695, + -1.1552377 + ], + [ + 34.0319008, + -1.1558695 + ], + [ + 34.0327076, + -1.1580736 + ], + [ + 34.0329508, + -1.1587486 + ], + [ + 34.0333004, + -1.159693 + ], + [ + 34.0334854, + -1.1601424 + ], + [ + 34.0338582, + -1.1609013 + ], + [ + 34.0347792, + -1.1624733 + ], + [ + 34.0350337, + -1.1627879 + ], + [ + 34.0353812, + -1.1632921 + ], + [ + 34.0357558, + -1.1637403 + ], + [ + 34.0362936, + -1.1645323 + ], + [ + 34.0366013, + -1.1649394 + ], + [ + 34.0371397, + -1.1657563 + ], + [ + 34.0375882, + -1.1664464 + ], + [ + 34.0376883, + -1.1666249 + ], + [ + 34.0380558, + -1.1672595 + ], + [ + 34.0382332, + -1.1675965 + ], + [ + 34.0383228, + -1.1678129 + ], + [ + 34.0384465, + -1.1681117 + ], + [ + 34.0386853, + -1.1686885 + ], + [ + 34.0387493, + -1.1688432 + ], + [ + 34.0391153, + -1.1698178 + ], + [ + 34.0399138, + -1.1719447 + ], + [ + 34.0399963, + -1.1721644 + ], + [ + 34.040271, + -1.1729936 + ], + [ + 34.0406835, + -1.1742389 + ], + [ + 34.0411143, + -1.1755393 + ], + [ + 34.0411984, + -1.1757611 + ], + [ + 34.0413523, + -1.1761251 + ], + [ + 34.0416627, + -1.1767864 + ], + [ + 34.0418991, + -1.177259 + ], + [ + 34.0419584, + -1.1773678 + ], + [ + 34.042023, + -1.1774864 + ], + [ + 34.0427484, + -1.1788175 + ], + [ + 34.0430171, + -1.1792474 + ], + [ + 34.0432106, + -1.179817 + ], + [ + 34.0436192, + -1.1810638 + ], + [ + 34.0437135, + -1.1812981 + ], + [ + 34.0439954, + -1.1819989 + ], + [ + 34.044174, + -1.1823706 + ], + [ + 34.044544, + -1.1829198 + ], + [ + 34.0451127, + -1.1839099 + ], + [ + 34.0451986, + -1.1840788 + ], + [ + 34.0452576, + -1.1842853 + ], + [ + 34.0452855, + -1.1859219 + ], + [ + 34.0452683, + -1.1870661 + ], + [ + 34.0452317, + -1.189501 + ], + [ + 34.0452359, + -1.1895887 + ], + [ + 34.0452429, + -1.1897363 + ], + [ + 34.0452629, + -1.1900052 + ], + [ + 34.0453112, + -1.1902948 + ], + [ + 34.0454037, + -1.1906296 + ], + [ + 34.0456559, + -1.1912767 + ], + [ + 34.0456911, + -1.1913669 + ], + [ + 34.0457911, + -1.1916235 + ], + [ + 34.0459735, + -1.1920913 + ], + [ + 34.0464503, + -1.1931255 + ], + [ + 34.0465433, + -1.1933273 + ], + [ + 34.0468526, + -1.1938016 + ], + [ + 34.0473495, + -1.1945634 + ], + [ + 34.048357, + -1.1959245 + ], + [ + 34.0484789, + -1.1961124 + ], + [ + 34.0486503, + -1.1963475 + ], + [ + 34.0499075, + -1.1978605 + ], + [ + 34.0500293, + -1.198007 + ], + [ + 34.0503892, + -1.1983764 + ], + [ + 34.0524579, + -1.2009437 + ], + [ + 34.0526387, + -1.2011626 + ], + [ + 34.0542083, + -1.2030758 + ], + [ + 34.0542399, + -1.203119 + ], + [ + 34.0547065, + -1.2037566 + ], + [ + 34.0548533, + -1.2039571 + ], + [ + 34.0553158, + -1.2046603 + ], + [ + 34.0557101, + -1.2052717 + ], + [ + 34.0560979, + -1.2058581 + ], + [ + 34.056747, + -1.206927 + ], + [ + 34.0573644, + -1.2079647 + ], + [ + 34.0575711, + -1.2082923 + ], + [ + 34.0577451, + -1.208568 + ], + [ + 34.0580143, + -1.2090087 + ], + [ + 34.0585094, + -1.2098193 + ], + [ + 34.0589906, + -1.2106071 + ], + [ + 34.0591807, + -1.2109184 + ], + [ + 34.0592287, + -1.210997 + ], + [ + 34.0596161, + -1.2116105 + ], + [ + 34.0597105, + -1.2117601 + ], + [ + 34.0604435, + -1.2129209 + ], + [ + 34.0611863, + -1.2141462 + ], + [ + 34.0613106, + -1.2143513 + ], + [ + 34.0615289, + -1.2147071 + ], + [ + 34.0615677, + -1.2147703 + ], + [ + 34.0621635, + -1.2157584 + ], + [ + 34.0622472, + -1.2159003 + ], + [ + 34.0628971, + -1.217002 + ], + [ + 34.0631525, + -1.217435 + ], + [ + 34.0636901, + -1.2181659 + ], + [ + 34.0647436, + -1.2193911 + ], + [ + 34.0650212, + -1.2196992 + ], + [ + 34.0653696, + -1.2200858 + ], + [ + 34.0657219, + -1.2204767 + ], + [ + 34.0663782, + -1.2211902 + ], + [ + 34.0668292, + -1.2216805 + ], + [ + 34.0673509, + -1.2222489 + ], + [ + 34.067869, + -1.2228139 + ], + [ + 34.068358, + -1.2234278 + ], + [ + 34.0685801, + -1.2237326 + ], + [ + 34.0688394, + -1.2240327 + ], + [ + 34.0690308, + -1.2242707 + ], + [ + 34.0691746, + -1.2244924 + ], + [ + 34.0693337, + -1.2247807 + ], + [ + 34.0695913, + -1.2252062 + ], + [ + 34.0697425, + -1.225453 + ], + [ + 34.0698044, + -1.2255407 + ], + [ + 34.0698756, + -1.2256415 + ], + [ + 34.0701295, + -1.2260011 + ], + [ + 34.0704087, + -1.226402 + ], + [ + 34.0705303, + -1.2265767 + ], + [ + 34.0707208, + -1.2268502 + ], + [ + 34.0708361, + -1.2271309 + ], + [ + 34.0711508, + -1.2276455 + ], + [ + 34.0712993, + -1.2279471 + ], + [ + 34.0714753, + -1.2283022 + ], + [ + 34.0718496, + -1.2290643 + ], + [ + 34.0720257, + -1.2293964 + ], + [ + 34.0722258, + -1.2297736 + ], + [ + 34.0724832, + -1.2301695 + ], + [ + 34.0729533, + -1.2308926 + ], + [ + 34.0735711, + -1.2318427 + ], + [ + 34.0736234, + -1.2319232 + ], + [ + 34.0737023, + -1.2320597 + ], + [ + 34.073856, + -1.2323255 + ], + [ + 34.0742176, + -1.2329508 + ], + [ + 34.0744189, + -1.2332989 + ], + [ + 34.0746832, + -1.2338598 + ], + [ + 34.0751177, + -1.2347821 + ], + [ + 34.0751833, + -1.2349547 + ], + [ + 34.0753407, + -1.2353801 + ], + [ + 34.0754712, + -1.2357122 + ], + [ + 34.0755262, + -1.2358569 + ], + [ + 34.0757508, + -1.2364436 + ], + [ + 34.075945, + -1.2369509 + ], + [ + 34.0761927, + -1.2375981 + ], + [ + 34.076469, + -1.2382755 + ], + [ + 34.0770957, + -1.2398121 + ], + [ + 34.0781385, + -1.2423271 + ], + [ + 34.0782227, + -1.2424869 + ], + [ + 34.0783105, + -1.2425958 + ], + [ + 34.0790738, + -1.2432944 + ], + [ + 34.0800558, + -1.2442097 + ], + [ + 34.0802015, + -1.2443455 + ], + [ + 34.0805036, + -1.2446271 + ], + [ + 34.0812072, + -1.245257 + ], + [ + 34.0813333, + -1.2454098 + ], + [ + 34.0814432, + -1.2455734 + ], + [ + 34.0816568, + -1.2458994 + ], + [ + 34.0818663, + -1.2462259 + ] + ] + }, + "id": "way/37423960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37424277", + "highway": "secondary", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.6806456, + -2.60415 + ], + [ + 33.6827275, + -2.6037938 + ], + [ + 33.6848532, + -2.6033946 + ], + [ + 33.685049, + -2.6033544 + ], + [ + 33.6852702, + -2.6033035 + ], + [ + 33.6854741, + -2.6032633 + ], + [ + 33.6856873, + -2.6032164 + ], + [ + 33.6860753, + -2.6031288 + ], + [ + 33.6861215, + -2.6031202 + ], + [ + 33.6864682, + -2.6030368 + ], + [ + 33.6867589, + -2.6029632 + ], + [ + 33.6869472, + -2.6029324 + ], + [ + 33.6872752, + -2.6029163 + ], + [ + 33.687783, + -2.6029497 + ], + [ + 33.6880839, + -2.6029852 + ], + [ + 33.6890843, + -2.6030971 + ], + [ + 33.6895984, + -2.6031623 + ], + [ + 33.6941089, + -2.6036228 + ], + [ + 33.6948641, + -2.6036999 + ], + [ + 33.6949199, + -2.603706 + ], + [ + 33.6955899, + -2.6037791 + ], + [ + 33.6967556, + -2.6039062 + ], + [ + 33.6969413, + -2.6039265 + ], + [ + 33.6973042, + -2.6039661 + ], + [ + 33.697321, + -2.6039679 + ], + [ + 33.6981592, + -2.6040961 + ], + [ + 33.698812, + -2.6042229 + ], + [ + 33.6988763, + -2.6042354 + ], + [ + 33.700009, + -2.6044824 + ], + [ + 33.7004806, + -2.6046217 + ], + [ + 33.7010868, + -2.6048896 + ], + [ + 33.7015712, + -2.605209 + ], + [ + 33.7016886, + -2.6053225 + ], + [ + 33.7018373, + -2.6054663 + ], + [ + 33.7020755, + -2.6057985 + ], + [ + 33.7022487, + -2.6060439 + ], + [ + 33.7024994, + -2.6063992 + ], + [ + 33.703131, + -2.6072557 + ], + [ + 33.7033058, + -2.6074831 + ], + [ + 33.703434, + -2.6076494 + ], + [ + 33.7041405, + -2.6085656 + ], + [ + 33.7043199, + -2.6087917 + ], + [ + 33.7048535, + -2.6094642 + ], + [ + 33.7050377, + -2.6096964 + ], + [ + 33.7052373, + -2.609948 + ], + [ + 33.7053537, + -2.6100947 + ], + [ + 33.7055787, + -2.6103783 + ], + [ + 33.7060681, + -2.610995 + ], + [ + 33.706367, + -2.6113717 + ], + [ + 33.7075728, + -2.6129869 + ], + [ + 33.7089741, + -2.6149942 + ], + [ + 33.7099488, + -2.6165397 + ], + [ + 33.711034, + -2.6182095 + ], + [ + 33.7113774, + -2.6189276 + ], + [ + 33.7119124, + -2.6203128 + ], + [ + 33.7121482, + -2.6209232 + ], + [ + 33.7124932, + -2.6216285 + ], + [ + 33.7131679, + -2.6229222 + ], + [ + 33.7138648, + -2.6241492 + ], + [ + 33.71408, + -2.6244769 + ], + [ + 33.7144764, + -2.6249638 + ], + [ + 33.7147595, + -2.625311 + ], + [ + 33.7153463, + -2.6260304 + ], + [ + 33.7168179, + -2.6278347 + ], + [ + 33.7169134, + -2.6279518 + ], + [ + 33.7183919, + -2.6295845 + ], + [ + 33.7200677, + -2.631435 + ], + [ + 33.720814, + -2.6323523 + ], + [ + 33.7226107, + -2.6346719 + ], + [ + 33.7236438, + -2.6359748 + ], + [ + 33.7246018, + -2.6373107 + ], + [ + 33.7263909, + -2.6398817 + ], + [ + 33.7265697, + -2.6401441 + ], + [ + 33.7268533, + -2.6405603 + ], + [ + 33.7273345, + -2.6412603 + ], + [ + 33.7277695, + -2.6418619 + ], + [ + 33.7283277, + -2.6427924 + ], + [ + 33.7288641, + -2.6437978 + ], + [ + 33.7294989, + -2.6449952 + ], + [ + 33.7296156, + -2.6452296 + ], + [ + 33.7299604, + -2.6458781 + ], + [ + 33.7300635, + -2.6460924 + ], + [ + 33.7303331, + -2.6465787 + ], + [ + 33.7304184, + -2.6467193 + ], + [ + 33.7304975, + -2.6468351 + ], + [ + 33.7306541, + -2.6470398 + ], + [ + 33.7313738, + -2.6478327 + ] + ] + }, + "id": "way/37424277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37424493", + "highway": "primary", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0192348, + -1.9036733 + ], + [ + 34.01933, + -1.9036573 + ], + [ + 34.0194762, + -1.9036278 + ], + [ + 34.0196264, + -1.9035951 + ], + [ + 34.0208136, + -1.9035168 + ], + [ + 34.0214389, + -1.9035104 + ], + [ + 34.0216966, + -1.9035106 + ], + [ + 34.0238938, + -1.9035943 + ], + [ + 34.0241204, + -1.903593 + ], + [ + 34.0243752, + -1.9035849 + ], + [ + 34.0249868, + -1.9035407 + ], + [ + 34.0254052, + -1.9035233 + ], + [ + 34.0257405, + -1.9035152 + ], + [ + 34.0264834, + -1.9035032 + ], + [ + 34.0268925, + -1.9034361 + ], + [ + 34.0270514, + -1.903406 + ], + [ + 34.0270977, + -1.9033979 + ], + [ + 34.0272331, + -1.9033933 + ], + [ + 34.0273927, + -1.9033892 + ], + [ + 34.027504, + -1.9033892 + ], + [ + 34.0277347, + -1.9034603 + ], + [ + 34.0280043, + -1.9035849 + ], + [ + 34.0281504, + -1.9036493 + ], + [ + 34.0286386, + -1.9039374 + ], + [ + 34.0288196, + -1.9040031 + ], + [ + 34.0290838, + -1.9040822 + ], + [ + 34.0294862, + -1.9041867 + ], + [ + 34.0299368, + -1.9042967 + ], + [ + 34.0301943, + -1.904357 + ], + [ + 34.0310982, + -1.9045125 + ], + [ + 34.0319712, + -1.9046478 + ], + [ + 34.0322998, + -1.9047068 + ], + [ + 34.0332225, + -1.9048677 + ], + [ + 34.0333405, + -1.9048904 + ], + [ + 34.03348, + -1.9049132 + ], + [ + 34.0338005, + -1.9049387 + ], + [ + 34.0340888, + -1.9049414 + ], + [ + 34.0348707, + -1.90494 + ], + [ + 34.0352181, + -1.90494 + ], + [ + 34.035497, + -1.9049521 + ], + [ + 34.0359543, + -1.9049668 + ], + [ + 34.0363392, + -1.9049561 + ], + [ + 34.0364344, + -1.9049561 + ], + [ + 34.036531, + -1.9049588 + ], + [ + 34.0369213, + -1.9049615 + ], + [ + 34.0372902, + -1.9049748 + ], + [ + 34.0376366, + -1.9049951 + ], + [ + 34.0394694, + -1.9050124 + ], + [ + 34.040443, + -1.9050392 + ], + [ + 34.0416688, + -1.9050553 + ], + [ + 34.0421677, + -1.9050714 + ], + [ + 34.0423581, + -1.9050955 + ], + [ + 34.0426102, + -1.9051706 + ], + [ + 34.0448338, + -1.9060177 + ], + [ + 34.0454346, + -1.9062697 + ], + [ + 34.0463251, + -1.906645 + ], + [ + 34.0466255, + -1.9067668 + ], + [ + 34.046711, + -1.9068005 + ], + [ + 34.0468097, + -1.9068478 + ], + [ + 34.0478482, + -1.9073351 + ], + [ + 34.0486819, + -1.9077494 + ], + [ + 34.0488419, + -1.9078304 + ], + [ + 34.0500119, + -1.9083404 + ], + [ + 34.0503953, + -1.9084905 + ], + [ + 34.0510593, + -1.9088177 + ], + [ + 34.0511787, + -1.9088801 + ], + [ + 34.05126, + -1.9089476 + ], + [ + 34.0513475, + -1.9090602 + ], + [ + 34.0517378, + -1.9097814 + ], + [ + 34.0520194, + -1.9102908 + ], + [ + 34.0523601, + -1.9109261 + ], + [ + 34.0525626, + -1.9113577 + ], + [ + 34.0526578, + -1.9115601 + ], + [ + 34.0527034, + -1.9116459 + ], + [ + 34.0528576, + -1.9119474 + ], + [ + 34.0529864, + -1.9122437 + ], + [ + 34.0531151, + -1.9126471 + ], + [ + 34.0531687, + -1.9128415 + ], + [ + 34.0532063, + -1.9130117 + ], + [ + 34.0533015, + -1.9133776 + ], + [ + 34.0534088, + -1.9136497 + ], + [ + 34.0535603, + -1.9139593 + ], + [ + 34.0536404, + -1.9140856 + ], + [ + 34.0538939, + -1.9144485 + ], + [ + 34.0539284, + -1.9144988 + ], + [ + 34.0543462, + -1.9151026 + ], + [ + 34.0544146, + -1.9151978 + ], + [ + 34.0545796, + -1.9154444 + ], + [ + 34.054829, + -1.9156803 + ], + [ + 34.0550221, + -1.9157916 + ], + [ + 34.0552662, + -1.9158733 + ], + [ + 34.0556632, + -1.9159497 + ], + [ + 34.0558107, + -1.9159712 + ], + [ + 34.056381, + -1.9160281 + ], + [ + 34.0578302, + -1.9162097 + ], + [ + 34.0579203, + -1.9162151 + ], + [ + 34.0583433, + -1.9162509 + ], + [ + 34.0587048, + -1.9162956 + ], + [ + 34.0591675, + -1.9163492 + ], + [ + 34.0594357, + -1.916388 + ], + [ + 34.0601358, + -1.9164765 + ], + [ + 34.0604483, + -1.9165207 + ], + [ + 34.0606159, + -1.9165408 + ], + [ + 34.0607406, + -1.9165583 + ], + [ + 34.0623204, + -1.9168558 + ], + [ + 34.0624076, + -1.9168679 + ], + [ + 34.0629964, + -1.9169429 + ], + [ + 34.0633598, + -1.917014 + ], + [ + 34.0636186, + -1.9170582 + ], + [ + 34.0640317, + -1.9171319 + ], + [ + 34.0641806, + -1.9171654 + ], + [ + 34.064605, + -1.9173052 + ], + [ + 34.0649061, + -1.9174094 + ], + [ + 34.065114, + -1.9174925 + ], + [ + 34.0655659, + -1.9176949 + ], + [ + 34.0657148, + -1.9177699 + ], + [ + 34.0658784, + -1.9178544 + ], + [ + 34.0663987, + -1.9181627 + ], + [ + 34.0666844, + -1.9182967 + ], + [ + 34.0670505, + -1.9185219 + ], + [ + 34.0672879, + -1.9186975 + ], + [ + 34.0678122, + -1.9190449 + ], + [ + 34.0680416, + -1.919239 + ], + [ + 34.0681891, + -1.9193328 + ], + [ + 34.0683608, + -1.9194226 + ], + [ + 34.0685894, + -1.9195226 + ], + [ + 34.0687135, + -1.9195392 + ], + [ + 34.0688971, + -1.919543 + ], + [ + 34.0690098, + -1.9195512 + ], + [ + 34.069502, + -1.9195552 + ], + [ + 34.0705534, + -1.9193783 + ], + [ + 34.0715336, + -1.9191424 + ], + [ + 34.0717327, + -1.9190945 + ], + [ + 34.0720396, + -1.9190206 + ], + [ + 34.0727235, + -1.9188377 + ], + [ + 34.0734311, + -1.9186485 + ], + [ + 34.0742093, + -1.9184187 + ], + [ + 34.0745701, + -1.9183584 + ], + [ + 34.0748987, + -1.9183212 + ], + [ + 34.0749845, + -1.9183329 + ], + [ + 34.0751522, + -1.9183329 + ], + [ + 34.0754458, + -1.9183504 + ], + [ + 34.0758857, + -1.9183986 + ], + [ + 34.076221, + -1.9184281 + ], + [ + 34.0764007, + -1.9183999 + ], + [ + 34.0765764, + -1.9183409 + ], + [ + 34.0768607, + -1.9182458 + ], + [ + 34.0772443, + -1.918105 + ], + [ + 34.0773797, + -1.9180487 + ], + [ + 34.0776694, + -1.9179938 + ], + [ + 34.0784901, + -1.917912 + ], + [ + 34.078618, + -1.9179144 + ], + [ + 34.0789593, + -1.9179104 + ], + [ + 34.0791056, + -1.9178959 + ], + [ + 34.0791784, + -1.9178819 + ], + [ + 34.0795027, + -1.9177967 + ], + [ + 34.0799747, + -1.9176587 + ], + [ + 34.0801504, + -1.9176319 + ], + [ + 34.0803529, + -1.9176453 + ], + [ + 34.0806735, + -1.9177525 + ], + [ + 34.0817302, + -1.918042 + ], + [ + 34.0819328, + -1.9181064 + ], + [ + 34.082154, + -1.9181613 + ], + [ + 34.0828608, + -1.9183811 + ], + [ + 34.0834817, + -1.9185313 + ], + [ + 34.0849274, + -1.9188436 + ], + [ + 34.0857764, + -1.9190714 + ], + [ + 34.0863329, + -1.9192135 + ], + [ + 34.0865676, + -1.9192979 + ], + [ + 34.0867728, + -1.9193985 + ], + [ + 34.0874675, + -1.9198207 + ], + [ + 34.0877974, + -1.920007 + ], + [ + 34.0881059, + -1.9201625 + ], + [ + 34.089345, + -1.9207321 + ], + [ + 34.0899606, + -1.9209868 + ], + [ + 34.0901564, + -1.9210297 + ], + [ + 34.0903173, + -1.9210444 + ], + [ + 34.0905628, + -1.9210136 + ], + [ + 34.0913124, + -1.9208058 + ], + [ + 34.0915685, + -1.9206986 + ], + [ + 34.0917871, + -1.9205525 + ], + [ + 34.0919923, + -1.9203487 + ], + [ + 34.0927367, + -1.9194145 + ], + [ + 34.0928654, + -1.9192108 + ], + [ + 34.0930223, + -1.9188073 + ], + [ + 34.0931175, + -1.9184347 + ], + [ + 34.0932409, + -1.9181559 + ], + [ + 34.0935668, + -1.9176252 + ], + [ + 34.0936795, + -1.917459 + ], + [ + 34.0941247, + -1.9170167 + ], + [ + 34.0943487, + -1.916829 + ], + [ + 34.094452, + -1.9167687 + ], + [ + 34.0945566, + -1.9167526 + ], + [ + 34.0947296, + -1.9167888 + ], + [ + 34.095038, + -1.9167754 + ], + [ + 34.0951654, + -1.9167178 + ], + [ + 34.09527, + -1.9166172 + ], + [ + 34.0956769, + -1.915953 + ], + [ + 34.0961639, + -1.9152066 + ], + [ + 34.0964461, + -1.9147742 + ], + [ + 34.0967124, + -1.9143911 + ], + [ + 34.0969008, + -1.9141389 + ], + [ + 34.0969853, + -1.9140451 + ], + [ + 34.0970913, + -1.9139861 + ], + [ + 34.0973836, + -1.9138843 + ], + [ + 34.0980273, + -1.9137462 + ], + [ + 34.0981521, + -1.9136912 + ], + [ + 34.0983613, + -1.9135545 + ], + [ + 34.0990184, + -1.9131846 + ], + [ + 34.0991673, + -1.9131363 + ], + [ + 34.0993215, + -1.9131082 + ], + [ + 34.0994824, + -1.9130412 + ], + [ + 34.0995857, + -1.9129594 + ], + [ + 34.0999116, + -1.9125868 + ], + [ + 34.1001154, + -1.9123535 + ], + [ + 34.1002133, + -1.9122611 + ], + [ + 34.100456, + -1.9121082 + ], + [ + 34.1006331, + -1.9120505 + ], + [ + 34.1008262, + -1.9120332 + ], + [ + 34.1013371, + -1.9120211 + ], + [ + 34.1025768, + -1.9120935 + ], + [ + 34.1029025, + -1.9121265 + ], + [ + 34.1032789, + -1.9121734 + ], + [ + 34.1048066, + -1.9123978 + ], + [ + 34.1051526, + -1.9124541 + ], + [ + 34.1053779, + -1.9124822 + ], + [ + 34.1055121, + -1.912509 + ], + [ + 34.1071978, + -1.9128468 + ], + [ + 34.1075411, + -1.9129018 + ], + [ + 34.1079596, + -1.9129822 + ], + [ + 34.1095357, + -1.9132559 + ], + [ + 34.1099414, + -1.913343 + ], + [ + 34.1102876, + -1.91342 + ], + [ + 34.1108241, + -1.9135227 + ], + [ + 34.1110662, + -1.9135681 + ], + [ + 34.1116266, + -1.9136597 + ], + [ + 34.112235, + -1.9137595 + ], + [ + 34.1127325, + -1.913848 + ], + [ + 34.1130271, + -1.9138908 + ], + [ + 34.113222, + -1.9139161 + ], + [ + 34.1138859, + -1.9140035 + ], + [ + 34.1144304, + -1.9140598 + ], + [ + 34.1148341, + -1.9140853 + ], + [ + 34.1153209, + -1.9141 + ], + [ + 34.1155596, + -1.9141094 + ], + [ + 34.1166392, + -1.9142636 + ], + [ + 34.1171569, + -1.914336 + ], + [ + 34.1178169, + -1.9144799 + ], + [ + 34.1192343, + -1.9147896 + ], + [ + 34.1193344, + -1.9148101 + ], + [ + 34.1218116, + -1.9153185 + ], + [ + 34.1227333, + -1.9154745 + ], + [ + 34.1230658, + -1.9155476 + ], + [ + 34.1236129, + -1.9156468 + ], + [ + 34.1241226, + -1.9157192 + ], + [ + 34.124673, + -1.9158474 + ], + [ + 34.1257706, + -1.9161608 + ], + [ + 34.1273841, + -1.9165288 + ], + [ + 34.1287574, + -1.916829 + ], + [ + 34.1293448, + -1.9170113 + ], + [ + 34.1296962, + -1.9171427 + ], + [ + 34.1298571, + -1.9172311 + ], + [ + 34.1300127, + -1.9173517 + ], + [ + 34.1303238, + -1.9176627 + ], + [ + 34.1306913, + -1.9180514 + ], + [ + 34.1311781, + -1.9184857 + ], + [ + 34.1314718, + -1.9186894 + ], + [ + 34.1323462, + -1.9192872 + ], + [ + 34.1330919, + -1.9197429 + ], + [ + 34.1335988, + -1.9200432 + ], + [ + 34.1343337, + -1.9204158 + ], + [ + 34.1356802, + -1.9209171 + ], + [ + 34.1367316, + -1.9213111 + ], + [ + 34.1372305, + -1.9215149 + ], + [ + 34.1378555, + -1.9218419 + ], + [ + 34.1381049, + -1.9219894 + ], + [ + 34.1384321, + -1.9221583 + ], + [ + 34.1387325, + -1.9222869 + ], + [ + 34.1392341, + -1.9224531 + ], + [ + 34.1395989, + -1.9225094 + ], + [ + 34.1399798, + -1.9225201 + ], + [ + 34.1402668, + -1.9225496 + ], + [ + 34.1406155, + -1.9225738 + ], + [ + 34.1410875, + -1.9226783 + ], + [ + 34.1420183, + -1.9228403 + ], + [ + 34.1423978, + -1.9229155 + ], + [ + 34.1428054, + -1.9230013 + ], + [ + 34.1433848, + -1.9230844 + ], + [ + 34.1439776, + -1.9231112 + ], + [ + 34.1445435, + -1.9230334 + ], + [ + 34.1451712, + -1.922878 + ], + [ + 34.1455856, + -1.9227909 + ], + [ + 34.1461194, + -1.9227829 + ], + [ + 34.1467698, + -1.9227681 + ], + [ + 34.1480414, + -1.9227867 + ], + [ + 34.148094, + -1.9227875 + ], + [ + 34.1498605, + -1.9227472 + ], + [ + 34.1511345, + -1.9227367 + ], + [ + 34.1522771, + -1.9227632 + ] + ] + }, + "id": "way/37424493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37425023", + "highway": "secondary", + "ref": "R194", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3523758, + -1.3495893 + ], + [ + 34.3524021, + -1.3503384 + ], + [ + 34.3524456, + -1.3509152 + ], + [ + 34.3524623, + -1.3511365 + ], + [ + 34.3524669, + -1.3511981 + ], + [ + 34.3526247, + -1.3518671 + ], + [ + 34.3529453, + -1.3528486 + ], + [ + 34.3533515, + -1.3536226 + ], + [ + 34.353733, + -1.3541614 + ], + [ + 34.3538094, + -1.3542693 + ], + [ + 34.3542168, + -1.3546473 + ], + [ + 34.3542589, + -1.3546663 + ], + [ + 34.3547462, + -1.3548867 + ], + [ + 34.3549328, + -1.3549542 + ], + [ + 34.3551006, + -1.3550149 + ], + [ + 34.3555105, + -1.3551632 + ], + [ + 34.3555504, + -1.3551776 + ], + [ + 34.3562207, + -1.3554201 + ], + [ + 34.3568256, + -1.3556973 + ], + [ + 34.3572373, + -1.3557687 + ], + [ + 34.3573633, + -1.355753 + ], + [ + 34.3579431, + -1.3557099 + ], + [ + 34.3580543, + -1.3556829 + ], + [ + 34.3583595, + -1.3555936 + ], + [ + 34.358737, + -1.3554831 + ], + [ + 34.359197, + -1.3552613 + ], + [ + 34.3595646, + -1.3550841 + ], + [ + 34.3606526, + -1.3543701 + ], + [ + 34.3610955, + -1.3541647 + ], + [ + 34.361385, + -1.3540684 + ], + [ + 34.3618987, + -1.3538628 + ], + [ + 34.3621999, + -1.3536919 + ], + [ + 34.3627069, + -1.3534042 + ], + [ + 34.3628817, + -1.3532967 + ], + [ + 34.3647303, + -1.35216 + ], + [ + 34.3648241, + -1.3521023 + ], + [ + 34.3660088, + -1.3515269 + ], + [ + 34.3667041, + -1.3513151 + ], + [ + 34.3672397, + -1.3511489 + ], + [ + 34.3673801, + -1.3510697 + ], + [ + 34.3675421, + -1.3509474 + ], + [ + 34.3681723, + -1.3503426 + ], + [ + 34.3684285, + -1.3501233 + ], + [ + 34.3684862, + -1.3500856 + ], + [ + 34.3690461, + -1.349679 + ], + [ + 34.3693779, + -1.3495152 + ], + [ + 34.3696038, + -1.3494224 + ], + [ + 34.3698671, + -1.3493155 + ], + [ + 34.3702979, + -1.3491373 + ], + [ + 34.3709155, + -1.3487803 + ], + [ + 34.3710709, + -1.3486673 + ], + [ + 34.3718893, + -1.3480783 + ], + [ + 34.3719993, + -1.3479991 + ], + [ + 34.3726634, + -1.3475764 + ], + [ + 34.3729245, + -1.3474101 + ], + [ + 34.3736671, + -1.3470229 + ], + [ + 34.3739261, + -1.3468878 + ], + [ + 34.3745862, + -1.3465436 + ], + [ + 34.37515, + -1.3461722 + ], + [ + 34.3754356, + -1.3459287 + ], + [ + 34.3759986, + -1.3452272 + ], + [ + 34.376356, + -1.3447314 + ], + [ + 34.3765128, + -1.3445917 + ], + [ + 34.3766424, + -1.3444901 + ], + [ + 34.376795, + -1.3443918 + ], + [ + 34.3770093, + -1.3442428 + ], + [ + 34.3774108, + -1.3440207 + ], + [ + 34.3777106, + -1.3438259 + ], + [ + 34.3779346, + -1.343705 + ], + [ + 34.3784126, + -1.3434548 + ], + [ + 34.3784593, + -1.3434249 + ], + [ + 34.3790057, + -1.343075 + ], + [ + 34.3791005, + -1.3430149 + ], + [ + 34.379579, + -1.3427019 + ], + [ + 34.3800077, + -1.3424216 + ], + [ + 34.3801146, + -1.3423608 + ], + [ + 34.3802603, + -1.3422763 + ], + [ + 34.380818, + -1.3419528 + ], + [ + 34.3814558, + -1.3415575 + ], + [ + 34.382181, + -1.3411657 + ], + [ + 34.3823522, + -1.3410732 + ], + [ + 34.3833125, + -1.3405799 + ], + [ + 34.3842054, + -1.3401347 + ], + [ + 34.3846485, + -1.3398778 + ], + [ + 34.3849151, + -1.3397083 + ], + [ + 34.3852002, + -1.3395101 + ], + [ + 34.3855011, + -1.3392713 + ], + [ + 34.3856808, + -1.3391014 + ], + [ + 34.3858142, + -1.3389818 + ], + [ + 34.3858438, + -1.3389482 + ], + [ + 34.3862406, + -1.3384974 + ], + [ + 34.3865047, + -1.3381535 + ], + [ + 34.3866735, + -1.3379573 + ], + [ + 34.3868798, + -1.3377133 + ], + [ + 34.3871312, + -1.3373744 + ], + [ + 34.3872667, + -1.3371053 + ], + [ + 34.3872795, + -1.3370693 + ], + [ + 34.3874148, + -1.3366876 + ], + [ + 34.3874625, + -1.3364696 + ], + [ + 34.387482, + -1.3363444 + ], + [ + 34.3875074, + -1.3361313 + ], + [ + 34.3875351, + -1.3357818 + ], + [ + 34.3875511, + -1.3354364 + ], + [ + 34.3875531, + -1.3353933 + ], + [ + 34.3875585, + -1.3351319 + ], + [ + 34.3875605, + -1.3350963 + ], + [ + 34.3876111, + -1.3331784 + ] + ] + }, + "id": "way/37425023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37425322", + "highway": "secondary", + "ref": "R189", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0131629, + -1.9141625 + ], + [ + 34.0128575, + -1.9146019 + ], + [ + 34.0122688, + -1.9154593 + ], + [ + 34.0121194, + -1.9156695 + ], + [ + 34.0116683, + -1.9163277 + ], + [ + 34.0112114, + -1.9170437 + ], + [ + 34.0110811, + -1.9172707 + ], + [ + 34.0109751, + -1.9174554 + ], + [ + 34.0107506, + -1.9178467 + ], + [ + 34.0105211, + -1.9182467 + ], + [ + 34.009813, + -1.9193244 + ], + [ + 34.0094434, + -1.9200124 + ], + [ + 34.0093763, + -1.9201008 + ], + [ + 34.0091376, + -1.9203675 + ], + [ + 34.0090571, + -1.9204775 + ], + [ + 34.0089981, + -1.9205994 + ], + [ + 34.0087723, + -1.9211285 + ], + [ + 34.0082645, + -1.9221355 + ], + [ + 34.0081573, + -1.9222802 + ], + [ + 34.0079132, + -1.9225858 + ], + [ + 34.0078045, + -1.9227333 + ], + [ + 34.0076986, + -1.922945 + ], + [ + 34.0074156, + -1.9234832 + ], + [ + 34.0071675, + -1.9238685 + ], + [ + 34.0066523, + -1.9246432 + ], + [ + 34.006513, + -1.9248664 + ], + [ + 34.0060816, + -1.925558 + ], + [ + 34.0059404, + -1.9258241 + ], + [ + 34.0058385, + -1.926064 + ], + [ + 34.0057835, + -1.9262557 + ], + [ + 34.0057687, + -1.9264474 + ], + [ + 34.0057835, + -1.9266377 + ], + [ + 34.0058519, + -1.9270525 + ], + [ + 34.0059257, + -1.9274607 + ], + [ + 34.006102, + -1.928421 + ], + [ + 34.0062608, + -1.9293882 + ], + [ + 34.0064072, + -1.9301525 + ], + [ + 34.0065287, + -1.9307866 + ], + [ + 34.0066413, + -1.9312639 + ], + [ + 34.0067377, + -1.9316478 + ], + [ + 34.0069739, + -1.9322865 + ], + [ + 34.0070728, + -1.9325501 + ], + [ + 34.007202, + -1.9328945 + ], + [ + 34.0072541, + -1.9330988 + ], + [ + 34.0072904, + -1.9333519 + ], + [ + 34.0073258, + -1.934271 + ], + [ + 34.0072989, + -1.9351006 + ], + [ + 34.0072279, + -1.9358633 + ], + [ + 34.0071997, + -1.9361206 + ], + [ + 34.0071622, + -1.936327 + ], + [ + 34.0067853, + -1.9374958 + ], + [ + 34.0066163, + -1.9379944 + ], + [ + 34.0065144, + -1.9382571 + ], + [ + 34.0064152, + -1.9384515 + ], + [ + 34.0059029, + -1.9391632 + ], + [ + 34.0056185, + -1.9395304 + ], + [ + 34.0053114, + -1.9398213 + ], + [ + 34.0037718, + -1.9411978 + ], + [ + 34.0035278, + -1.9414458 + ], + [ + 34.0034287, + -1.9415321 + ], + [ + 34.0033467, + -1.9415704 + ], + [ + 34.0032478, + -1.9415923 + ], + [ + 34.0021132, + -1.9417593 + ], + [ + 34.0019515, + -1.9417831 + ], + [ + 33.99966, + -1.9422352 + ], + [ + 33.9988563, + -1.9423355 + ], + [ + 33.9985455, + -1.9423633 + ], + [ + 33.9979689, + -1.9424108 + ], + [ + 33.9974692, + -1.942446 + ], + [ + 33.996766, + -1.942446 + ], + [ + 33.9961008, + -1.9424354 + ], + [ + 33.9954998, + -1.9424259 + ], + [ + 33.9952129, + -1.9424403 + ], + [ + 33.9943742, + -1.9425364 + ], + [ + 33.9926662, + -1.9427137 + ], + [ + 33.9919835, + -1.9427714 + ], + [ + 33.9918445, + -1.9428276 + ], + [ + 33.9917301, + -1.9429134 + ], + [ + 33.9916523, + -1.9430113 + ], + [ + 33.9909831, + -1.943979 + ], + [ + 33.9877255, + -1.9489731 + ], + [ + 33.9874801, + -1.9493216 + ], + [ + 33.9857568, + -1.9519955 + ], + [ + 33.9851908, + -1.9528453 + ], + [ + 33.9851412, + -1.9529244 + ], + [ + 33.9847523, + -1.9535436 + ], + [ + 33.9841166, + -1.9545488 + ], + [ + 33.9836526, + -1.9552807 + ], + [ + 33.982974, + -1.9562832 + ], + [ + 33.9824805, + -1.9570579 + ], + [ + 33.9808682, + -1.9597507 + ], + [ + 33.9804735, + -1.9604227 + ], + [ + 33.9791301, + -1.9627102 + ], + [ + 33.9781541, + -1.9644029 + ], + [ + 33.9768666, + -1.9664267 + ], + [ + 33.9765125, + -1.9669495 + ], + [ + 33.9743105, + -1.9698392 + ], + [ + 33.9726499, + -1.9720816 + ], + [ + 33.9712411, + -1.9739695 + ], + [ + 33.9699814, + -1.9754899 + ], + [ + 33.9697453, + -1.9758679 + ], + [ + 33.9692411, + -1.9768812 + ], + [ + 33.9683651, + -1.9787141 + ], + [ + 33.9680983, + -1.9793656 + ], + [ + 33.9671468, + -1.9816888 + ], + [ + 33.9661445, + -1.9840451 + ], + [ + 33.9659353, + -1.9845263 + ], + [ + 33.964216, + -1.9884667 + ], + [ + 33.9641516, + -1.9886316 + ], + [ + 33.9638713, + -1.9892656 + ], + [ + 33.9626506, + -1.9921946 + ], + [ + 33.9621985, + -1.9930606 + ], + [ + 33.960599, + -1.9958115 + ], + [ + 33.95951, + -1.9977536 + ], + [ + 33.959164, + -1.9984064 + ], + [ + 33.9589199, + -1.9989009 + ], + [ + 33.9587536, + -1.9991301 + ], + [ + 33.9584438, + -1.9993325 + ], + [ + 33.958016, + -1.9994625 + ], + [ + 33.9576191, + -1.9995295 + ], + [ + 33.9572811, + -1.9995724 + ], + [ + 33.9569364, + -1.9995831 + ], + [ + 33.9561559, + -1.9996501 + ], + [ + 33.9555632, + -1.9997279 + ], + [ + 33.9553888, + -1.9997346 + ], + [ + 33.9549167, + -1.999744 + ], + [ + 33.9545466, + -1.9997681 + ], + [ + 33.9541993, + -1.9999892 + ], + [ + 33.9540195, + -2.0001863 + ], + [ + 33.9538962, + -2.0004101 + ], + [ + 33.952826, + -2.0028454 + ], + [ + 33.9518872, + -2.0046333 + ], + [ + 33.9509779, + -2.0065151 + ], + [ + 33.950611, + -2.0073016 + ], + [ + 33.9503235, + -2.0080189 + ], + [ + 33.9501142, + -2.0084424 + ], + [ + 33.9498568, + -2.0089008 + ], + [ + 33.9493015, + -2.0096755 + ], + [ + 33.9481447, + -2.0113231 + ], + [ + 33.9471638, + -2.0129055 + ], + [ + 33.9464664, + -2.0137258 + ], + [ + 33.9460815, + -2.0141627 + ], + [ + 33.9459434, + -2.0142847 + ], + [ + 33.9457892, + -2.0143155 + ], + [ + 33.9456256, + -2.0143182 + ], + [ + 33.9453077, + -2.014278 + ], + [ + 33.9446754, + -2.0141304 + ], + [ + 33.9429389, + -2.0138288 + ], + [ + 33.9386103, + -2.0130717 + ], + [ + 33.9382052, + -2.013002 + ], + [ + 33.9373979, + -2.0128707 + ], + [ + 33.9363331, + -2.0126536 + ], + [ + 33.9351207, + -2.0124579 + ], + [ + 33.9346996, + -2.0123855 + ], + [ + 33.9343569, + -2.0122944 + ], + [ + 33.9318931, + -2.0112729 + ], + [ + 33.9312503, + -2.0110586 + ], + [ + 33.9310049, + -2.0109916 + ], + [ + 33.9291716, + -2.0105761 + ], + [ + 33.9262292, + -2.0098309 + ], + [ + 33.925914, + -2.0097693 + ], + [ + 33.9256793, + -2.0097304 + ], + [ + 33.9236919, + -2.0095659 + ], + [ + 33.9219525, + -2.0094608 + ], + [ + 33.920218, + -2.0093901 + ], + [ + 33.9190235, + -2.0093375 + ], + [ + 33.917849, + -2.0093202 + ], + [ + 33.9170356, + -2.0092647 + ], + [ + 33.916924, + -2.0092618 + ], + [ + 33.9160685, + -2.0092396 + ], + [ + 33.9148377, + -2.0091392 + ], + [ + 33.9129664, + -2.0088881 + ], + [ + 33.9108065, + -2.0086059 + ], + [ + 33.9104632, + -2.0085791 + ], + [ + 33.9100581, + -2.0085979 + ], + [ + 33.9096746, + -2.0086381 + ], + [ + 33.9064249, + -2.0091649 + ], + [ + 33.9057599, + -2.0092627 + ], + [ + 33.905379, + -2.0093042 + ], + [ + 33.9045006, + -2.0093404 + ], + [ + 33.9043128, + -2.0093618 + ], + [ + 33.9041603, + -2.0094046 + ], + [ + 33.9034411, + -2.0096956 + ], + [ + 33.9027894, + -2.009965 + ], + [ + 33.9024299, + -2.0101057 + ], + [ + 33.9013984, + -2.0104785 + ], + [ + 33.9011076, + -2.0105842 + ], + [ + 33.9007235, + -2.0106648 + ], + [ + 33.9002294, + -2.0107542 + ], + [ + 33.8999301, + -2.010808 + ], + [ + 33.8996236, + -2.0108519 + ], + [ + 33.8984549, + -2.010997 + ], + [ + 33.8979151, + -2.0110811 + ], + [ + 33.8963816, + -2.0113816 + ], + [ + 33.8948701, + -2.0117502 + ], + [ + 33.8943659, + -2.0118347 + ], + [ + 33.8940722, + -2.0118601 + ], + [ + 33.893804, + -2.0118722 + ], + [ + 33.8929805, + -2.0119164 + ], + [ + 33.8926882, + -2.0119003 + ], + [ + 33.8923395, + -2.011836 + ], + [ + 33.8920847, + -2.0117502 + ], + [ + 33.8916072, + -2.0116108 + ], + [ + 33.8911378, + -2.0114527 + ], + [ + 33.8906148, + -2.0112731 + ], + [ + 33.8902742, + -2.0111685 + ], + [ + 33.8900623, + -2.0111632 + ], + [ + 33.8898638, + -2.0112221 + ], + [ + 33.8897726, + -2.0112731 + ], + [ + 33.8887855, + -2.0118494 + ], + [ + 33.8882303, + -2.0121871 + ], + [ + 33.8878146, + -2.0123882 + ], + [ + 33.8871977, + -2.0126294 + ], + [ + 33.886452, + -2.0128975 + ], + [ + 33.8861033, + -2.013053 + ], + [ + 33.8854435, + -2.0133961 + ], + [ + 33.8847394, + -2.0139093 + ], + [ + 33.8842143, + -2.0142913 + ], + [ + 33.8840018, + -2.0144675 + ], + [ + 33.883989, + -2.0144782 + ], + [ + 33.8838409, + -2.0146111 + ], + [ + 33.8832522, + -2.0151396 + ], + [ + 33.8825641, + -2.0157937 + ], + [ + 33.8821712, + -2.0161168 + ], + [ + 33.880649, + -2.0176004 + ], + [ + 33.8793173, + -2.0188912 + ], + [ + 33.8791779, + -2.0190172 + ], + [ + 33.8788989, + -2.0193013 + ], + [ + 33.8786763, + -2.0195533 + ], + [ + 33.878333, + -2.0199929 + ], + [ + 33.8779293, + -2.0205463 + ], + [ + 33.8774358, + -2.0211012 + ], + [ + 33.8768189, + -2.0217499 + ], + [ + 33.8759793, + -2.0225246 + ], + [ + 33.874767, + -2.0237201 + ], + [ + 33.8740683, + -2.0244667 + ], + [ + 33.8739315, + -2.0245391 + ], + [ + 33.8737991, + -2.0245646 + ], + [ + 33.8736585, + -2.0245648 + ] + ] + }, + "id": "way/37425322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37425422", + "highway": "secondary", + "ref": "R184", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5896692, + -1.6098671 + ], + [ + 34.5894292, + -1.6097438 + ], + [ + 34.588657, + -1.6094919 + ], + [ + 34.5878579, + -1.6091599 + ], + [ + 34.5872235, + -1.6088382 + ], + [ + 34.586924, + -1.6086407 + ], + [ + 34.5865998, + -1.608524 + ], + [ + 34.586357, + -1.6084507 + ], + [ + 34.5860687, + -1.6083858 + ], + [ + 34.585095, + -1.6083698 + ], + [ + 34.5845774, + -1.6083443 + ], + [ + 34.5841858, + -1.6082961 + ], + [ + 34.5837914, + -1.6081875 + ], + [ + 34.5835822, + -1.6081392 + ], + [ + 34.5832631, + -1.6081031 + ], + [ + 34.5830029, + -1.6080897 + ], + [ + 34.581517, + -1.6081325 + ], + [ + 34.5799586, + -1.6081808 + ], + [ + 34.5785794, + -1.6082168 + ], + [ + 34.5774913, + -1.6082594 + ], + [ + 34.574733, + -1.6083219 + ], + [ + 34.5735294, + -1.6082505 + ], + [ + 34.5731109, + -1.6082049 + ], + [ + 34.5725172, + -1.6081287 + ], + [ + 34.5720575, + -1.6080527 + ], + [ + 34.5712257, + -1.6079651 + ], + [ + 34.5711779, + -1.6079588 + ], + [ + 34.570135, + -1.607842 + ], + [ + 34.5697099, + -1.6077411 + ], + [ + 34.5688724, + -1.6072771 + ], + [ + 34.5685394, + -1.6071893 + ], + [ + 34.5674849, + -1.6067254 + ], + [ + 34.5671969, + -1.6066028 + ], + [ + 34.5670171, + -1.6065263 + ], + [ + 34.5669406, + -1.606452 + ], + [ + 34.5666457, + -1.6063556 + ], + [ + 34.5662283, + -1.6061546 + ], + [ + 34.5660651, + -1.6060922 + ], + [ + 34.565522, + -1.6058846 + ], + [ + 34.5653271, + -1.6057785 + ], + [ + 34.5652667, + -1.6057386 + ], + [ + 34.5650477, + -1.6056405 + ], + [ + 34.5642861, + -1.6052993 + ], + [ + 34.5623566, + -1.6044573 + ], + [ + 34.5620167, + -1.604304 + ], + [ + 34.5619147, + -1.604265 + ], + [ + 34.5608196, + -1.6038056 + ], + [ + 34.5605327, + -1.6036601 + ], + [ + 34.5600171, + -1.6033272 + ], + [ + 34.5580587, + -1.6023756 + ], + [ + 34.5569389, + -1.6018043 + ], + [ + 34.5566587, + -1.6016136 + ], + [ + 34.5562204, + -1.6014397 + ], + [ + 34.5561406, + -1.6013787 + ], + [ + 34.5558258, + -1.601169 + ], + [ + 34.5557543, + -1.6011214 + ], + [ + 34.5549711, + -1.6004684 + ], + [ + 34.5545956, + -1.6002607 + ], + [ + 34.5543677, + -1.6000757 + ], + [ + 34.5543585, + -1.6000663 + ], + [ + 34.5542545, + -1.599961 + ], + [ + 34.5540538, + -1.5996748 + ], + [ + 34.5538285, + -1.5995073 + ], + [ + 34.5536515, + -1.5993491 + ], + [ + 34.5533672, + -1.5991533 + ], + [ + 34.5516393, + -1.5982309 + ], + [ + 34.5510658, + -1.5978221 + ], + [ + 34.5506118, + -1.5975516 + ], + [ + 34.5504086, + -1.5974022 + ], + [ + 34.5498086, + -1.596961 + ], + [ + 34.5490783, + -1.596424 + ], + [ + 34.5488073, + -1.5962345 + ], + [ + 34.5485258, + -1.5960378 + ], + [ + 34.5477793, + -1.595558 + ], + [ + 34.547579, + -1.5954292 + ], + [ + 34.5463209, + -1.5945403 + ], + [ + 34.5458668, + -1.5942546 + ], + [ + 34.5451865, + -1.5938178 + ], + [ + 34.5440534, + -1.5930148 + ], + [ + 34.5438401, + -1.5928636 + ], + [ + 34.5433822, + -1.5925698 + ], + [ + 34.5431695, + -1.5924168 + ], + [ + 34.5429541, + -1.5922827 + ], + [ + 34.5426042, + -1.5920929 + ], + [ + 34.5420805, + -1.5918552 + ], + [ + 34.5414796, + -1.59163 + ], + [ + 34.5410022, + -1.591445 + ], + [ + 34.5404855, + -1.5912521 + ], + [ + 34.5396075, + -1.5909034 + ], + [ + 34.5388774, + -1.5906225 + ], + [ + 34.5387807, + -1.5905853 + ] + ] + }, + "id": "way/37425422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37425863", + "highway": "secondary", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8351816, + -2.7040222 + ], + [ + 33.8361606, + -2.7045849 + ], + [ + 33.8364369, + -2.7047376 + ], + [ + 33.8367426, + -2.7048689 + ], + [ + 33.8373015, + -2.7050611 + ], + [ + 33.8395594, + -2.7056139 + ], + [ + 33.8411364, + -2.7060486 + ], + [ + 33.841681, + -2.7061987 + ], + [ + 33.8420468, + -2.706312 + ], + [ + 33.8436351, + -2.7068038 + ], + [ + 33.8454841, + -2.7073764 + ], + [ + 33.846031, + -2.7075457 + ], + [ + 33.8469287, + -2.7078435 + ], + [ + 33.8481271, + -2.708241 + ], + [ + 33.8488294, + -2.708474 + ], + [ + 33.8496555, + -2.708748 + ], + [ + 33.8499852, + -2.7088543 + ], + [ + 33.8509302, + -2.7091591 + ], + [ + 33.8511004, + -2.7092154 + ], + [ + 33.8517763, + -2.7094391 + ], + [ + 33.8521554, + -2.7095646 + ], + [ + 33.8527739, + -2.7097693 + ], + [ + 33.8533481, + -2.7099593 + ], + [ + 33.8536225, + -2.7100443 + ], + [ + 33.8558228, + -2.7107259 + ], + [ + 33.8560721, + -2.7108031 + ], + [ + 33.8564125, + -2.7109111 + ], + [ + 33.8569596, + -2.7110883 + ], + [ + 33.8573092, + -2.7112015 + ], + [ + 33.8578992, + -2.7113925 + ], + [ + 33.8588006, + -2.7116739 + ], + [ + 33.8619501, + -2.7126569 + ], + [ + 33.8644633, + -2.7134423 + ], + [ + 33.8648388, + -2.7136058 + ], + [ + 33.8650829, + -2.7137692 + ], + [ + 33.8652806, + -2.7139339 + ], + [ + 33.8659921, + -2.7146399 + ], + [ + 33.8663354, + -2.7149909 + ], + [ + 33.8697727, + -2.718179 + ], + [ + 33.8702544, + -2.7186343 + ], + [ + 33.8705777, + -2.7189398 + ], + [ + 33.8718575, + -2.7201492 + ], + [ + 33.872039, + -2.7203225 + ], + [ + 33.8768174, + -2.7248839 + ], + [ + 33.8797653, + -2.7277278 + ], + [ + 33.8809159, + -2.7288423 + ], + [ + 33.8821337, + -2.7300533 + ], + [ + 33.8825521, + -2.730494 + ], + [ + 33.882992, + -2.7308972 + ] + ] + }, + "id": "way/37425863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/37426067", + "AUTO_ID": "32168;867", + "highway": "secondary", + "lanes": "1", + "maxspeed": "30", + "ref": "C12", + "source": "Africover;survey", + "surface": "gravel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2151108, + -1.6534279 + ], + [ + 35.2149099, + -1.653526 + ], + [ + 35.2148362, + -1.6535642 + ], + [ + 35.2148087, + -1.6535811 + ], + [ + 35.2147476, + -1.6536272 + ], + [ + 35.2146603, + -1.653687 + ], + [ + 35.2145928, + -1.6537391 + ], + [ + 35.2145196, + -1.6537974 + ], + [ + 35.214426, + -1.6538686 + ], + [ + 35.2143712, + -1.653919 + ], + [ + 35.2143429, + -1.6539831 + ], + [ + 35.2143468, + -1.6540087 + ], + [ + 35.2143534, + -1.6540513 + ], + [ + 35.2143768, + -1.6541242 + ], + [ + 35.2144101, + -1.6541973 + ], + [ + 35.214457, + -1.6542876 + ], + [ + 35.2146256, + -1.6545079 + ], + [ + 35.214922, + -1.6548806 + ], + [ + 35.2154705, + -1.6556004 + ], + [ + 35.2158983, + -1.656205 + ], + [ + 35.2164938, + -1.6570576 + ], + [ + 35.2167968, + -1.6575134 + ], + [ + 35.2170622, + -1.6579275 + ], + [ + 35.2172313, + -1.6582078 + ], + [ + 35.217403, + -1.658555 + ], + [ + 35.2176109, + -1.6590135 + ], + [ + 35.2177812, + -1.6593995 + ], + [ + 35.2178939, + -1.6598339 + ], + [ + 35.2179784, + -1.6602307 + ], + [ + 35.2180897, + -1.6606784 + ], + [ + 35.2181259, + -1.6609144 + ], + [ + 35.2181406, + -1.6610752 + ], + [ + 35.21815, + -1.6612736 + ], + [ + 35.2181406, + -1.6614854 + ], + [ + 35.2181165, + -1.6618326 + ], + [ + 35.2180789, + -1.6620981 + ], + [ + 35.2179971, + -1.6625391 + ], + [ + 35.2179247, + -1.6629211 + ], + [ + 35.2178617, + -1.6632409 + ], + [ + 35.2178107, + -1.6635566 + ], + [ + 35.2177598, + -1.6637798 + ], + [ + 35.2177461, + -1.6638569 + ] + ] + }, + "id": "way/37426067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/44573303", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9751136, + -1.5295438 + ], + [ + 33.9750915, + -1.5303709 + ], + [ + 33.9751309, + -1.5306764 + ], + [ + 33.9752467, + -1.5310271 + ], + [ + 33.975404, + -1.531354 + ], + [ + 33.9758929, + -1.5323599 + ], + [ + 33.9759734, + -1.5325736 + ], + [ + 33.9760313, + -1.5328242 + ], + [ + 33.9760554, + -1.5331218 + ], + [ + 33.9760445, + -1.5333136 + ], + [ + 33.9760018, + -1.5335387 + ], + [ + 33.9757816, + -1.5343258 + ], + [ + 33.9755726, + -1.5348861 + ], + [ + 33.9753512, + -1.535342 + ], + [ + 33.9751191, + -1.5357053 + ], + [ + 33.9748836, + -1.5360181 + ], + [ + 33.9745612, + -1.5363595 + ], + [ + 33.9741455, + -1.5367175 + ], + [ + 33.9737634, + -1.5369775 + ], + [ + 33.9709775, + -1.5384569 + ], + [ + 33.9693944, + -1.5392883 + ], + [ + 33.9670479, + -1.5404753 + ], + [ + 33.9664569, + -1.5407983 + ], + [ + 33.9656443, + -1.5412501 + ], + [ + 33.9650143, + -1.5416521 + ], + [ + 33.9645391, + -1.5420075 + ], + [ + 33.9641717, + -1.5423374 + ], + [ + 33.9638023, + -1.542721 + ], + [ + 33.96342, + -1.5431306 + ], + [ + 33.9628525, + -1.5437757 + ], + [ + 33.9601419, + -1.5469229 + ], + [ + 33.9554269, + -1.5523503 + ], + [ + 33.9554012, + -1.5523731 + ], + [ + 33.9542401, + -1.5537041 + ], + [ + 33.9538318, + -1.5541388 + ], + [ + 33.9532337, + -1.5546857 + ], + [ + 33.9529053, + -1.5549398 + ], + [ + 33.9526137, + -1.5551655 + ], + [ + 33.95214, + -1.5554822 + ], + [ + 33.9475757, + -1.5579954 + ], + [ + 33.9465603, + -1.5585708 + ], + [ + 33.946039, + -1.5589278 + ], + [ + 33.9454204, + -1.5594905 + ], + [ + 33.94501, + -1.5599329 + ], + [ + 33.9447004, + -1.5603275 + ], + [ + 33.944369, + -1.5607936 + ], + [ + 33.9440712, + -1.561311 + ], + [ + 33.9439367, + -1.5616099 + ], + [ + 33.9437807, + -1.5619565 + ], + [ + 33.9435026, + -1.5627643 + ], + [ + 33.943336, + -1.5636093 + ], + [ + 33.9426084, + -1.5681273 + ], + [ + 33.9425851, + -1.5682905 + ], + [ + 33.9422232, + -1.570588 + ], + [ + 33.9420822, + -1.5713357 + ], + [ + 33.9418423, + -1.5721887 + ], + [ + 33.9415122, + -1.5731005 + ], + [ + 33.9410235, + -1.5740777 + ], + [ + 33.9408888, + -1.5743202 + ] + ] + }, + "id": "way/44573303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/44573304", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9751948, + -1.5275403 + ], + [ + 33.9751136, + -1.5295438 + ] + ] + }, + "id": "way/44573304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/44603451", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6108242, + -1.7325662 + ], + [ + 34.6105828, + -1.7328695 + ], + [ + 34.609853, + -1.7341072 + ], + [ + 34.6090897, + -1.7354019 + ], + [ + 34.6088404, + -1.7358712 + ], + [ + 34.6078643, + -1.7375797 + ], + [ + 34.607521, + -1.7381508 + ], + [ + 34.6073152, + -1.7385239 + ], + [ + 34.6072125, + -1.7387138 + ], + [ + 34.6071187, + -1.7389631 + ], + [ + 34.6070543, + -1.7393599 + ], + [ + 34.6070757, + -1.7396146 + ], + [ + 34.6071562, + -1.7400382 + ], + [ + 34.6072769, + -1.7402795 + ], + [ + 34.6073815, + -1.7404055 + ], + [ + 34.6075371, + -1.7405637 + ], + [ + 34.6098384, + -1.7424537 + ], + [ + 34.6102059, + -1.7427674 + ], + [ + 34.6110079, + -1.7434618 + ], + [ + 34.6133816, + -1.7454403 + ], + [ + 34.6136847, + -1.7456923 + ], + [ + 34.6139073, + -1.7458907 + ], + [ + 34.6145645, + -1.746443 + ], + [ + 34.6149883, + -1.7467835 + ], + [ + 34.6152002, + -1.7469819 + ], + [ + 34.61597, + -1.7475824 + ], + [ + 34.6165136, + -1.7479993 + ], + [ + 34.6165398, + -1.7480294 + ], + [ + 34.6174002, + -1.7487599 + ], + [ + 34.6176731, + -1.7489916 + ], + [ + 34.6180487, + -1.7493224 + ], + [ + 34.6188784, + -1.750015 + ], + [ + 34.6192235, + -1.7503371 + ], + [ + 34.6194059, + -1.7505529 + ], + [ + 34.6195064, + -1.7507178 + ], + [ + 34.6196499, + -1.7509591 + ], + [ + 34.6199048, + -1.7514162 + ], + [ + 34.6206866, + -1.7529359 + ], + [ + 34.6222503, + -1.7559802 + ], + [ + 34.6228632, + -1.7571426 + ], + [ + 34.6237285, + -1.7587835 + ], + [ + 34.6237818, + -1.7588845 + ], + [ + 34.6241834, + -1.7596462 + ], + [ + 34.6256081, + -1.7623479 + ], + [ + 34.6258253, + -1.7627599 + ], + [ + 34.6258597, + -1.7628251 + ], + [ + 34.6264151, + -1.7638785 + ], + [ + 34.6281551, + -1.767178 + ], + [ + 34.6287306, + -1.7682933 + ], + [ + 34.630866, + -1.7725107 + ], + [ + 34.6317465, + -1.7741991 + ], + [ + 34.6320729, + -1.77483 + ], + [ + 34.6328314, + -1.7763042 + ], + [ + 34.6335579, + -1.7777444 + ], + [ + 34.6336348, + -1.7778935 + ], + [ + 34.6346895, + -1.7799383 + ], + [ + 34.6347809, + -1.7801287 + ], + [ + 34.6351824, + -1.7808976 + ], + [ + 34.6352391, + -1.7810124 + ], + [ + 34.6356934, + -1.7819319 + ], + [ + 34.6361138, + -1.7827264 + ], + [ + 34.6362876, + -1.7830547 + ], + [ + 34.6367089, + -1.7839367 + ], + [ + 34.6377256, + -1.7858653 + ], + [ + 34.6387326, + -1.787842 + ], + [ + 34.6391352, + -1.7885749 + ], + [ + 34.6394976, + -1.7893078 + ], + [ + 34.6397409, + -1.7898402 + ], + [ + 34.6397842, + -1.789935 + ], + [ + 34.6400698, + -1.7904961 + ], + [ + 34.6404687, + -1.7913189 + ], + [ + 34.6408061, + -1.7919535 + ], + [ + 34.6409635, + -1.7922472 + ], + [ + 34.6411999, + -1.7926983 + ], + [ + 34.6413911, + -1.7931018 + ], + [ + 34.6415474, + -1.7933962 + ], + [ + 34.6415879, + -1.7934752 + ], + [ + 34.6418164, + -1.7939199 + ], + [ + 34.6421791, + -1.7946261 + ], + [ + 34.6423111, + -1.7948832 + ], + [ + 34.6424721, + -1.7951968 + ], + [ + 34.6425948, + -1.7954356 + ], + [ + 34.6434469, + -1.7970947 + ], + [ + 34.6436682, + -1.7975341 + ], + [ + 34.6437226, + -1.7976441 + ], + [ + 34.6437372, + -1.7976737 + ], + [ + 34.6438542, + -1.7979436 + ], + [ + 34.643932, + -1.7981527 + ], + [ + 34.6439427, + -1.7983806 + ], + [ + 34.6439086, + -1.7986405 + ], + [ + 34.6438193, + -1.7991232 + ], + [ + 34.6437449, + -1.7995951 + ], + [ + 34.6436477, + -1.8002116 + ], + [ + 34.643578, + -1.8008524 + ], + [ + 34.6436303, + -1.801225 + ], + [ + 34.6437433, + -1.8015942 + ], + [ + 34.6437657, + -1.8016674 + ] + ] + }, + "id": "way/44603451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/48057146", + "highway": "trunk", + "ref": "B1", + "source": "survey;Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3391931, + -1.1197161 + ], + [ + 35.339186, + -1.1197188 + ], + [ + 35.3390486, + -1.1197724 + ], + [ + 35.3388414, + -1.1198542 + ], + [ + 35.3386442, + -1.1199253 + ], + [ + 35.3384069, + -1.1199923 + ], + [ + 35.3380555, + -1.1200795 + ], + [ + 35.3376853, + -1.120168 + ], + [ + 35.3372642, + -1.1202605 + ], + [ + 35.3369195, + -1.120338 + ], + [ + 35.3366379, + -1.1204013 + ], + [ + 35.3358775, + -1.1205649 + ], + [ + 35.3351855, + -1.1207124 + ], + [ + 35.3344613, + -1.1208639 + ], + [ + 35.3338149, + -1.1210006 + ], + [ + 35.3333066, + -1.1210999 + ], + [ + 35.3327434, + -1.1211897 + ], + [ + 35.3320366, + -1.1212822 + ], + [ + 35.3314117, + -1.1213546 + ], + [ + 35.3308497, + -1.121423 + ], + [ + 35.3298935, + -1.1215531 + ], + [ + 35.3294523, + -1.1216094 + ], + [ + 35.3283258, + -1.1216992 + ], + [ + 35.3267527, + -1.1218038 + ], + [ + 35.3251339, + -1.1218494 + ], + [ + 35.3234589, + -1.1218923 + ], + [ + 35.3226878, + -1.1219218 + ], + [ + 35.3207566, + -1.1219687 + ], + [ + 35.3193954, + -1.1219554 + ], + [ + 35.3180488, + -1.1219928 + ], + [ + 35.3169639, + -1.1220465 + ], + [ + 35.3162236, + -1.122139 + ], + [ + 35.3156255, + -1.1222503 + ], + [ + 35.3150381, + -1.1223991 + ], + [ + 35.3136259, + -1.1227665 + ], + [ + 35.3120233, + -1.1231554 + ], + [ + 35.3112914, + -1.1233185 + ], + [ + 35.3105548, + -1.1234826 + ], + [ + 35.3096583, + -1.1237004 + ], + [ + 35.3091185, + -1.123805 + ], + [ + 35.3088117, + -1.1238607 + ], + [ + 35.3085529, + -1.1239022 + ], + [ + 35.3083292, + -1.123923 + ], + [ + 35.3079859, + -1.1239317 + ], + [ + 35.3073784, + -1.1239428 + ], + [ + 35.3069392, + -1.123927 + ], + [ + 35.3064832, + -1.1238942 + ], + [ + 35.3060688, + -1.1238754 + ], + [ + 35.3054412, + -1.1237467 + ], + [ + 35.3046539, + -1.1235617 + ], + [ + 35.3039914, + -1.1233659 + ], + [ + 35.3034188, + -1.1232144 + ], + [ + 35.3026892, + -1.1230106 + ], + [ + 35.302189, + -1.1229006 + ], + [ + 35.301735, + -1.1228544 + ], + [ + 35.3013287, + -1.122849 + ], + [ + 35.3010155, + -1.1228772 + ], + [ + 35.300644, + -1.1229341 + ], + [ + 35.300176, + -1.123034 + ], + [ + 35.2996905, + -1.1231809 + ], + [ + 35.2992399, + -1.1233619 + ], + [ + 35.2988282, + -1.123563 + ], + [ + 35.2981724, + -1.1239894 + ], + [ + 35.2977405, + -1.1242669 + ], + [ + 35.2967562, + -1.1249628 + ], + [ + 35.2963525, + -1.1252484 + ], + [ + 35.2959488, + -1.1255113 + ], + [ + 35.2952555, + -1.1260637 + ], + [ + 35.2948008, + -1.126425 + ], + [ + 35.2940766, + -1.1269607 + ], + [ + 35.2934946, + -1.1273428 + ], + [ + 35.2929689, + -1.1276781 + ], + [ + 35.2922541, + -1.1281125 + ], + [ + 35.29201, + -1.1282526 + ], + [ + 35.2916157, + -1.1284651 + ], + [ + 35.2913173, + -1.1286475 + ], + [ + 35.2911034, + -1.1288238 + ], + [ + 35.2909277, + -1.1290122 + ], + [ + 35.2907373, + -1.1292308 + ], + [ + 35.2905656, + -1.1294661 + ], + [ + 35.2902203, + -1.129924 + ], + [ + 35.2899675, + -1.1302123 + ], + [ + 35.2897221, + -1.1304476 + ], + [ + 35.2893613, + -1.1307446 + ], + [ + 35.2891823, + -1.1308894 + ], + [ + 35.2889644, + -1.1310288 + ], + [ + 35.2887471, + -1.131124 + ], + [ + 35.2884145, + -1.1312541 + ], + [ + 35.2880028, + -1.1314163 + ], + [ + 35.2872169, + -1.1316872 + ], + [ + 35.2865799, + -1.1319124 + ], + [ + 35.2862037, + -1.1320392 + ], + [ + 35.2856465, + -1.1322503 + ], + [ + 35.2852066, + -1.1324072 + ], + [ + 35.2846621, + -1.1326204 + ], + [ + 35.2842276, + -1.1327773 + ], + [ + 35.283789, + -1.1329368 + ], + [ + 35.283384, + -1.133075 + ], + [ + 35.28292, + -1.1332224 + ], + [ + 35.2825297, + -1.1333552 + ], + [ + 35.2822662, + -1.1334477 + ], + [ + 35.2820161, + -1.1335443 + ], + [ + 35.2818377, + -1.1336167 + ], + [ + 35.2816788, + -1.1336877 + ], + [ + 35.2815487, + -1.1337554 + ], + [ + 35.2814341, + -1.1338225 + ], + [ + 35.2813254, + -1.1338909 + ], + [ + 35.281186, + -1.1339827 + ], + [ + 35.2810351, + -1.1340846 + ], + [ + 35.280903, + -1.1341858 + ], + [ + 35.2807588, + -1.1342911 + ], + [ + 35.2806327, + -1.134393 + ], + [ + 35.2805302, + -1.1344802 + ], + [ + 35.2803793, + -1.1346243 + ], + [ + 35.2802774, + -1.1347336 + ], + [ + 35.2801754, + -1.1348462 + ], + [ + 35.2800668, + -1.1349736 + ], + [ + 35.2799515, + -1.135111 + ], + [ + 35.2798737, + -1.1352237 + ], + [ + 35.2798006, + -1.1353316 + ], + [ + 35.279692, + -1.1355032 + ], + [ + 35.2795807, + -1.1356829 + ], + [ + 35.2794445, + -1.1359082 + ], + [ + 35.2793594, + -1.1360684 + ], + [ + 35.2792749, + -1.1362266 + ], + [ + 35.2791931, + -1.1363909 + ], + [ + 35.279126, + -1.1365296 + ], + [ + 35.2790248, + -1.1367542 + ], + [ + 35.278957, + -1.1369259 + ], + [ + 35.2789175, + -1.1370311 + ], + [ + 35.2788846, + -1.1371424 + ], + [ + 35.2788544, + -1.1372698 + ], + [ + 35.2788169, + -1.1374528 + ], + [ + 35.2787679, + -1.1376881 + ], + [ + 35.2787076, + -1.1380066 + ], + [ + 35.278666, + -1.1383083 + ], + [ + 35.2786392, + -1.1385201 + ], + [ + 35.2786338, + -1.1387668 + ], + [ + 35.2786399, + -1.1389405 + ], + [ + 35.2786546, + -1.1390866 + ], + [ + 35.2786734, + -1.1392381 + ], + [ + 35.2787143, + -1.1394694 + ], + [ + 35.2787827, + -1.1397403 + ], + [ + 35.278945, + -1.1402592 + ], + [ + 35.2790643, + -1.1406212 + ], + [ + 35.279189, + -1.1409752 + ], + [ + 35.279346, + -1.1413929 + ], + [ + 35.2793676, + -1.1414531 + ], + [ + 35.279419, + -1.1415967 + ], + [ + 35.279472, + -1.1417495 + ], + [ + 35.2795317, + -1.1418917 + ], + [ + 35.2796397, + -1.1421518 + ], + [ + 35.2796973, + -1.1422939 + ], + [ + 35.2797604, + -1.1424427 + ], + [ + 35.2798107, + -1.1425661 + ], + [ + 35.2798529, + -1.1426814 + ], + [ + 35.2798965, + -1.1428182 + ], + [ + 35.2800071, + -1.1431272 + ], + [ + 35.2801158, + -1.1435121 + ], + [ + 35.2801721, + -1.1438392 + ], + [ + 35.2802257, + -1.1442026 + ], + [ + 35.2802834, + -1.1446906 + ], + [ + 35.2804685, + -1.1460261 + ], + [ + 35.2805798, + -1.146777 + ], + [ + 35.2805999, + -1.1469513 + ], + [ + 35.2806066, + -1.1470961 + ], + [ + 35.2805905, + -1.1472878 + ], + [ + 35.280565, + -1.1474193 + ], + [ + 35.2805141, + -1.1475842 + ], + [ + 35.2802673, + -1.1481795 + ], + [ + 35.2799387, + -1.1490323 + ], + [ + 35.2798502, + -1.1493621 + ], + [ + 35.2798167, + -1.1497536 + ], + [ + 35.2797858, + -1.1500795 + ], + [ + 35.279763, + -1.1501934 + ], + [ + 35.2797309, + -1.1503436 + ], + [ + 35.2796665, + -1.1504965 + ], + [ + 35.2795914, + -1.1506386 + ], + [ + 35.2794398, + -1.1508089 + ], + [ + 35.2792923, + -1.1509698 + ], + [ + 35.2786741, + -1.1515986 + ], + [ + 35.2781658, + -1.1520961 + ], + [ + 35.2779499, + -1.1523817 + ], + [ + 35.2778127, + -1.1526405 + ], + [ + 35.2777407, + -1.1528483 + ], + [ + 35.2776133, + -1.1531392 + ], + [ + 35.2775328, + -1.1532707 + ], + [ + 35.2773839, + -1.1534838 + ], + [ + 35.2768207, + -1.1540765 + ], + [ + 35.2763741, + -1.1545149 + ], + [ + 35.2762265, + -1.1546289 + ], + [ + 35.2760482, + -1.1547281 + ], + [ + 35.2757773, + -1.154826 + ], + [ + 35.2753991, + -1.1549574 + ], + [ + 35.2751711, + -1.1550566 + ], + [ + 35.2750249, + -1.1551357 + ], + [ + 35.2749377, + -1.1552082 + ], + [ + 35.2747983, + -1.1553449 + ], + [ + 35.2742229, + -1.1558705 + ], + [ + 35.2740379, + -1.1560582 + ], + [ + 35.2739212, + -1.1562044 + ], + [ + 35.2737737, + -1.1564323 + ], + [ + 35.2735282, + -1.1568051 + ], + [ + 35.2733338, + -1.1570263 + ], + [ + 35.2731286, + -1.157214 + ], + [ + 35.2729663, + -1.1573025 + ], + [ + 35.2727571, + -1.1573709 + ], + [ + 35.2725586, + -1.1573951 + ], + [ + 35.2721187, + -1.1574581 + ], + [ + 35.2710097, + -1.1575841 + ], + [ + 35.2706221, + -1.157619 + ], + [ + 35.2703512, + -1.1577021 + ], + [ + 35.2701969, + -1.1577584 + ], + [ + 35.2699864, + -1.1578469 + ], + [ + 35.2696498, + -1.1579971 + ], + [ + 35.2688813, + -1.1583698 + ], + [ + 35.2663386, + -1.1596248 + ], + [ + 35.2653569, + -1.1600861 + ], + [ + 35.2647883, + -1.1603462 + ], + [ + 35.26428, + -1.1605862 + ], + [ + 35.2631535, + -1.1611024 + ], + [ + 35.2624856, + -1.1614189 + ], + [ + 35.2621651, + -1.161561 + ], + [ + 35.2619109, + -1.1616938 + ], + [ + 35.2617225, + -1.1617755 + ], + [ + 35.2611954, + -1.1619579 + ], + [ + 35.2608495, + -1.1620567 + ], + [ + 35.2584792, + -1.1625308 + ], + [ + 35.2579443, + -1.162608 + ], + [ + 35.2570548, + -1.1627727 + ], + [ + 35.2566666, + -1.1628673 + ], + [ + 35.2564232, + -1.1629551 + ], + [ + 35.2561824, + -1.163056 + ], + [ + 35.2559348, + -1.1631683 + ], + [ + 35.2556875, + -1.1632947 + ], + [ + 35.2555249, + -1.1633849 + ], + [ + 35.2552369, + -1.1636111 + ], + [ + 35.2549674, + -1.1638549 + ], + [ + 35.254678, + -1.1641716 + ], + [ + 35.254422, + -1.1644518 + ], + [ + 35.2533647, + -1.1658061 + ], + [ + 35.2531414, + -1.1660549 + ], + [ + 35.2529356, + -1.1662217 + ], + [ + 35.2515158, + -1.1672361 + ], + [ + 35.2508341, + -1.1676095 + ], + [ + 35.2506557, + -1.1677033 + ], + [ + 35.2505189, + -1.1677529 + ], + [ + 35.2503721, + -1.167768 + ], + [ + 35.2501604, + -1.1677445 + ], + [ + 35.2496502, + -1.1676348 + ], + [ + 35.2493334, + -1.1675666 + ], + [ + 35.2484716, + -1.167391 + ], + [ + 35.2480634, + -1.167293 + ], + [ + 35.247087, + -1.1670718 + ], + [ + 35.2462341, + -1.1668774 + ], + [ + 35.2460709, + -1.1668436 + ], + [ + 35.245876, + -1.1668117 + ], + [ + 35.2456668, + -1.1667983 + ], + [ + 35.244783, + -1.1668036 + ], + [ + 35.2439743, + -1.1668184 + ], + [ + 35.2436095, + -1.1668211 + ], + [ + 35.2434137, + -1.1668278 + ], + [ + 35.2432153, + -1.1668573 + ], + [ + 35.2430449, + -1.1668895 + ], + [ + 35.2428934, + -1.166931 + ], + [ + 35.242715, + -1.166982 + ], + [ + 35.2424897, + -1.1670718 + ], + [ + 35.2422671, + -1.1671737 + ], + [ + 35.2420834, + -1.1672877 + ], + [ + 35.2413369, + -1.167718 + ], + [ + 35.2404955, + -1.1682388 + ], + [ + 35.2378428, + -1.1696918 + ], + [ + 35.2371025, + -1.1701101 + ], + [ + 35.2343076, + -1.1716579 + ], + [ + 35.229878, + -1.1741943 + ], + [ + 35.2288306, + -1.1747842 + ], + [ + 35.2283008, + -1.1750671 + ], + [ + 35.2280762, + -1.1751582 + ], + [ + 35.2278824, + -1.1751878 + ], + [ + 35.2276786, + -1.175216 + ], + [ + 35.2274144, + -1.1752441 + ], + [ + 35.2261671, + -1.1753769 + ], + [ + 35.2256951, + -1.1754292 + ], + [ + 35.2252968, + -1.1754734 + ], + [ + 35.2249293, + -1.1755351 + ], + [ + 35.2246396, + -1.1755954 + ], + [ + 35.2244183, + -1.1756477 + ], + [ + 35.2241729, + -1.1757201 + ], + [ + 35.2239624, + -1.1757925 + ], + [ + 35.2235694, + -1.1759105 + ], + [ + 35.222961, + -1.1761214 + ], + [ + 35.2216181, + -1.1766319 + ], + [ + 35.2207088, + -1.1769792 + ], + [ + 35.2193624, + -1.1774772 + ], + [ + 35.2163221, + -1.1785721 + ], + [ + 35.2147892, + -1.1791057 + ], + [ + 35.2138, + -1.1794436 + ], + [ + 35.2088433, + -1.181051 + ], + [ + 35.2073018, + -1.1815634 + ], + [ + 35.2057126, + -1.1820796 + ], + [ + 35.2049938, + -1.1823237 + ], + [ + 35.2041717, + -1.1825898 + ], + [ + 35.2035085, + -1.1828037 + ], + [ + 35.2030653, + -1.1829384 + ], + [ + 35.2023806, + -1.1831476 + ], + [ + 35.2018003, + -1.1833088 + ], + [ + 35.2012427, + -1.1834614 + ], + [ + 35.2005064, + -1.183645 + ], + [ + 35.2001507, + -1.1837231 + ], + [ + 35.1993725, + -1.1839132 + ], + [ + 35.1990286, + -1.1840051 + ], + [ + 35.1983298, + -1.1841727 + ], + [ + 35.1974393, + -1.1843724 + ], + [ + 35.1966682, + -1.1845508 + ], + [ + 35.1955149, + -1.1848592 + ], + [ + 35.1949516, + -1.1849798 + ], + [ + 35.1945289, + -1.1850557 + ], + [ + 35.1943396, + -1.185088 + ], + [ + 35.1935789, + -1.1852711 + ], + [ + 35.1929842, + -1.1854024 + ], + [ + 35.1928374, + -1.1854105 + ], + [ + 35.192665, + -1.1854006 + ], + [ + 35.1922189, + -1.1853077 + ], + [ + 35.1910003, + -1.1850037 + ], + [ + 35.1895114, + -1.1846267 + ], + [ + 35.1875899, + -1.1841121 + ], + [ + 35.1862631, + -1.1837737 + ], + [ + 35.1856791, + -1.1835796 + ], + [ + 35.1852002, + -1.1834152 + ], + [ + 35.1842232, + -1.1829805 + ], + [ + 35.1836489, + -1.182741 + ], + [ + 35.1835121, + -1.1827023 + ], + [ + 35.1833905, + -1.1826792 + ], + [ + 35.183274, + -1.1826812 + ], + [ + 35.1831307, + -1.1827142 + ], + [ + 35.1816828, + -1.1831315 + ], + [ + 35.1807288, + -1.1834163 + ], + [ + 35.1805739, + -1.1834409 + ], + [ + 35.1804068, + -1.1834659 + ], + [ + 35.1802678, + -1.1835639 + ], + [ + 35.1800667, + -1.1835371 + ], + [ + 35.1796295, + -1.183462 + ], + [ + 35.1787277, + -1.1832082 + ], + [ + 35.1775214, + -1.1830308 + ], + [ + 35.1761469, + -1.1827914 + ], + [ + 35.1744381, + -1.1825004 + ], + [ + 35.1731328, + -1.182207 + ], + [ + 35.1726544, + -1.1820832 + ], + [ + 35.1719149, + -1.1818623 + ], + [ + 35.1707099, + -1.1815399 + ], + [ + 35.1678117, + -1.1807601 + ], + [ + 35.1661764, + -1.1804166 + ], + [ + 35.1645619, + -1.1799817 + ], + [ + 35.1634544, + -1.1796916 + ], + [ + 35.1627034, + -1.1794637 + ], + [ + 35.1618183, + -1.1791714 + ], + [ + 35.1604172, + -1.1786104 + ], + [ + 35.1598497, + -1.1783908 + ], + [ + 35.1597455, + -1.1783651 + ], + [ + 35.1596326, + -1.1783463 + ], + [ + 35.1595212, + -1.1783357 + ], + [ + 35.1593466, + -1.1783468 + ], + [ + 35.1592098, + -1.1783803 + ], + [ + 35.1590718, + -1.1784183 + ], + [ + 35.1587087, + -1.1785822 + ], + [ + 35.1579022, + -1.1789663 + ], + [ + 35.1569353, + -1.1794401 + ], + [ + 35.1563492, + -1.1797359 + ], + [ + 35.1554309, + -1.1801664 + ], + [ + 35.1541748, + -1.1807699 + ], + [ + 35.1528882, + -1.1813827 + ], + [ + 35.1526208, + -1.1815367 + ], + [ + 35.1494694, + -1.1830665 + ], + [ + 35.1489504, + -1.1833293 + ], + [ + 35.1479419, + -1.1838267 + ], + [ + 35.1473813, + -1.1841217 + ], + [ + 35.146247, + -1.1846946 + ], + [ + 35.1459671, + -1.1848297 + ], + [ + 35.1458833, + -1.1848642 + ], + [ + 35.1458065, + -1.1848856 + ], + [ + 35.1457176, + -1.1849047 + ], + [ + 35.1456392, + -1.1849208 + ], + [ + 35.1454105, + -1.1849409 + ], + [ + 35.1451832, + -1.1849557 + ], + [ + 35.1447286, + -1.1849892 + ], + [ + 35.1443195, + -1.1850254 + ], + [ + 35.143024, + -1.1851783 + ], + [ + 35.1410794, + -1.1853928 + ], + [ + 35.1390785, + -1.1856341 + ], + [ + 35.1377615, + -1.1857763 + ], + [ + 35.1368268, + -1.1858742 + ], + [ + 35.1362025, + -1.1859539 + ], + [ + 35.136055, + -1.1859787 + ], + [ + 35.1359524, + -1.1860116 + ], + [ + 35.1358451, + -1.1860545 + ], + [ + 35.1357606, + -1.186094 + ], + [ + 35.1356594, + -1.186147 + ], + [ + 35.1352791, + -1.1863636 + ], + [ + 35.1347883, + -1.1866384 + ], + [ + 35.134274, + -1.1869012 + ], + [ + 35.1340514, + -1.1870219 + ], + [ + 35.1337221, + -1.1872029 + ], + [ + 35.1334123, + -1.1873678 + ], + [ + 35.1330717, + -1.1875462 + ], + [ + 35.1327432, + -1.1877312 + ], + [ + 35.1323797, + -1.1879249 + ], + [ + 35.1319887, + -1.1880979 + ], + [ + 35.1317869, + -1.188183 + ], + [ + 35.1313417, + -1.1884257 + ], + [ + 35.130938, + -1.1886362 + ], + [ + 35.1305464, + -1.1888199 + ], + [ + 35.1302446, + -1.1889794 + ], + [ + 35.1299838, + -1.1891236 + ], + [ + 35.1297042, + -1.1892731 + ], + [ + 35.1294829, + -1.1893817 + ], + [ + 35.129338, + -1.1894682 + ], + [ + 35.1291999, + -1.189548 + ], + [ + 35.1290209, + -1.1896807 + ], + [ + 35.12887, + -1.1897933 + ], + [ + 35.1286038, + -1.1899838 + ], + [ + 35.1282431, + -1.1902748 + ], + [ + 35.1279112, + -1.1905234 + ], + [ + 35.1275631, + -1.1907708 + ], + [ + 35.12726, + -1.1909927 + ], + [ + 35.1268805, + -1.1912636 + ], + [ + 35.1264413, + -1.1916155 + ], + [ + 35.1262461, + -1.1917644 + ], + [ + 35.1259826, + -1.1919621 + ], + [ + 35.1257714, + -1.1921123 + ], + [ + 35.1255896, + -1.1922463 + ], + [ + 35.1254327, + -1.1923617 + ], + [ + 35.1251706, + -1.1925649 + ], + [ + 35.1248588, + -1.1927948 + ], + [ + 35.124554, + -1.193024 + ], + [ + 35.1241698, + -1.1932946 + ], + [ + 35.12369, + -1.1936254 + ], + [ + 35.1227492, + -1.1943253 + ], + [ + 35.1223026, + -1.194682 + ], + [ + 35.1218829, + -1.1950038 + ], + [ + 35.121561, + -1.1952438 + ], + [ + 35.1211882, + -1.1955093 + ], + [ + 35.1210098, + -1.1956541 + ], + [ + 35.1207094, + -1.1958713 + ], + [ + 35.1204975, + -1.1960489 + ], + [ + 35.1203647, + -1.1961327 + ], + [ + 35.1202708, + -1.1961837 + ], + [ + 35.1201649, + -1.1962387 + ], + [ + 35.1200026, + -1.1963218 + ], + [ + 35.1198082, + -1.1963955 + ], + [ + 35.1196003, + -1.1964733 + ], + [ + 35.1193106, + -1.1965725 + ], + [ + 35.1185113, + -1.1968943 + ], + [ + 35.1181975, + -1.1970203 + ], + [ + 35.1178569, + -1.1971625 + ], + [ + 35.1172158, + -1.1974092 + ], + [ + 35.1167116, + -1.1976076 + ], + [ + 35.1163655, + -1.1977363 + ], + [ + 35.1156816, + -1.1980045 + ], + [ + 35.1151291, + -1.1982324 + ], + [ + 35.1145846, + -1.1984443 + ], + [ + 35.1139261, + -1.1987191 + ], + [ + 35.1134413, + -1.1989142 + ], + [ + 35.1130142, + -1.1990939 + ], + [ + 35.1126065, + -1.1992568 + ], + [ + 35.1120647, + -1.1994633 + ], + [ + 35.1116047, + -1.1996389 + ], + [ + 35.1084852, + -1.2008712 + ], + [ + 35.1075518, + -1.2012305 + ], + [ + 35.1062268, + -1.2017588 + ], + [ + 35.1045477, + -1.2024104 + ], + [ + 35.1042487, + -1.2025566 + ], + [ + 35.1040556, + -1.2026745 + ], + [ + 35.1038799, + -1.2028113 + ], + [ + 35.1037471, + -1.2029373 + ], + [ + 35.1033032, + -1.2033503 + ], + [ + 35.1019996, + -1.2045275 + ], + [ + 35.1008946, + -1.2054688 + ], + [ + 35.0993429, + -1.2068471 + ], + [ + 35.0979012, + -1.2081048 + ], + [ + 35.0966524, + -1.20919 + ], + [ + 35.0961524, + -1.2096495 + ], + [ + 35.0958855, + -1.2098921 + ], + [ + 35.0956897, + -1.2100369 + ], + [ + 35.0955476, + -1.2101227 + ], + [ + 35.0954068, + -1.2101844 + ], + [ + 35.095215, + -1.2102407 + ], + [ + 35.0949776, + -1.2103104 + ], + [ + 35.0946061, + -1.2104097 + ], + [ + 35.0931819, + -1.2107556 + ], + [ + 35.0919119, + -1.2110613 + ], + [ + 35.0914304, + -1.2111605 + ], + [ + 35.0889534, + -1.2117639 + ], + [ + 35.0873494, + -1.2120857 + ], + [ + 35.0842166, + -1.2128687 + ], + [ + 35.0802281, + -1.2138931 + ], + [ + 35.0796327, + -1.2140325 + ], + [ + 35.0792386, + -1.2141351 + ], + [ + 35.07825, + -1.2144066 + ], + [ + 35.0758991, + -1.2150006 + ], + [ + 35.0747725, + -1.2152567 + ], + [ + 35.0743555, + -1.2153036 + ], + [ + 35.0738566, + -1.2153398 + ], + [ + 35.0726482, + -1.2153747 + ], + [ + 35.0707626, + -1.2154216 + ], + [ + 35.0696777, + -1.2154578 + ], + [ + 35.0683808, + -1.2155315 + ], + [ + 35.0666025, + -1.2157327 + ], + [ + 35.0656597, + -1.2157756 + ], + [ + 35.0650737, + -1.215793 + ], + [ + 35.0647934, + -1.2157863 + ], + [ + 35.064611, + -1.2157796 + ], + [ + 35.0634724, + -1.2157943 + ], + [ + 35.0626892, + -1.21573 + ], + [ + 35.0621608, + -1.2156254 + ], + [ + 35.0617772, + -1.2155677 + ], + [ + 35.061458, + -1.2155651 + ], + [ + 35.0612006, + -1.2155718 + ], + [ + 35.0597173, + -1.2157005 + ], + [ + 35.059386, + -1.2157219 + ], + [ + 35.0585613, + -1.2157139 + ], + [ + 35.057483, + -1.2156844 + ], + [ + 35.0567803, + -1.215612 + ], + [ + 35.0562492, + -1.2154886 + ], + [ + 35.0557342, + -1.2153331 + ], + [ + 35.0551897, + -1.2150891 + ], + [ + 35.0543502, + -1.2147029 + ], + [ + 35.0538674, + -1.214475 + ], + [ + 35.0536099, + -1.2144106 + ], + [ + 35.0533551, + -1.2143811 + ], + [ + 35.053052, + -1.2143811 + ], + [ + 35.0521025, + -1.214542 + ], + [ + 35.0515178, + -1.2146386 + ], + [ + 35.0507534, + -1.214719 + ], + [ + 35.0499943, + -1.2147995 + ], + [ + 35.0496807, + -1.2148061 + ], + [ + 35.0493586, + -1.2148129 + ], + [ + 35.0488946, + -1.214845 + ], + [ + 35.0483367, + -1.2149067 + ], + [ + 35.0469419, + -1.2151212 + ], + [ + 35.0464967, + -1.2152366 + ], + [ + 35.0461426, + -1.2153438 + ], + [ + 35.0457564, + -1.2154538 + ], + [ + 35.0451368, + -1.2155744 + ], + [ + 35.0445253, + -1.2155878 + ], + [ + 35.0440317, + -1.2156254 + ], + [ + 35.0434926, + -1.2156549 + ], + [ + 35.0428864, + -1.21573 + ], + [ + 35.0425887, + -1.215848 + ], + [ + 35.0423446, + -1.2159981 + ], + [ + 35.0421086, + -1.2161778 + ], + [ + 35.0418591, + -1.2164862 + ], + [ + 35.0414863, + -1.2171244 + ], + [ + 35.041117, + -1.2177941 + ], + [ + 35.0410374, + -1.2180901 + ], + [ + 35.0410253, + -1.2182972 + ], + [ + 35.0410206, + -1.2185983 + ], + [ + 35.0410505, + -1.2188822 + ], + [ + 35.0410826, + -1.2191825 + ], + [ + 35.0410853, + -1.2194708 + ], + [ + 35.0410652, + -1.2197376 + ], + [ + 35.0410089, + -1.220105 + ], + [ + 35.0409056, + -1.2204308 + ], + [ + 35.0407568, + -1.2207218 + ], + [ + 35.0405489, + -1.2210409 + ], + [ + 35.0403464, + -1.2212058 + ], + [ + 35.0400889, + -1.2213292 + ], + [ + 35.0395511, + -1.221533 + ], + [ + 35.0386834, + -1.2218802 + ], + [ + 35.0382704, + -1.2220666 + ], + [ + 35.0377943, + -1.22232 + ], + [ + 35.0370432, + -1.222729 + ], + [ + 35.036604, + -1.2229931 + ], + [ + 35.0365242, + -1.2230253 + ], + [ + 35.0364491, + -1.2230454 + ], + [ + 35.0363908, + -1.22304 + ], + [ + 35.0363405, + -1.2230209 + ] + ] + }, + "id": "way/48057146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/48057150", + "AUTO_ID": "32168;867", + "bridge": "yes", + "flood_prone": "yes", + "highway": "trunk", + "lanes": "1", + "layer": "1", + "maxspeed": "50", + "name": "Mara Rianta Bridge", + "ref": "B1", + "source": "Africover", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.0359944, + -1.2227919 + ], + [ + 35.0363405, + -1.2230209 + ] + ] + }, + "id": "way/48057150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/127678306", + "highway": "trunk", + "name": "Kilgoris-Lolgorien Rd.", + "ref": "B3", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8827749, + -1.0078971 + ], + [ + 34.8829034, + -1.0080375 + ], + [ + 34.8830348, + -1.0081716 + ], + [ + 34.8831891, + -1.0083022 + ], + [ + 34.8833406, + -1.0084076 + ], + [ + 34.883531, + -1.0085148 + ], + [ + 34.8838207, + -1.0086382 + ], + [ + 34.8840541, + -1.0086865 + ], + [ + 34.8843974, + -1.008716 + ], + [ + 34.8845409, + -1.0087147 + ], + [ + 34.8850425, + -1.0086664 + ], + [ + 34.8851945, + -1.0086945 + ], + [ + 34.8853103, + -1.0087228 + ], + [ + 34.8854235, + -1.0087871 + ], + [ + 34.8855392, + -1.00889 + ], + [ + 34.8856943, + -1.0090793 + ], + [ + 34.8858394, + -1.0092922 + ], + [ + 34.8864088, + -1.010297 + ], + [ + 34.8867524, + -1.0107783 + ], + [ + 34.8869187, + -1.0110679 + ], + [ + 34.8870353, + -1.0113361 + ], + [ + 34.8871627, + -1.0117115 + ], + [ + 34.8872297, + -1.0119298 + ], + [ + 34.8874363, + -1.0126341 + ], + [ + 34.887667, + -1.0132428 + ], + [ + 34.8877931, + -1.0135593 + ], + [ + 34.8880023, + -1.014101 + ], + [ + 34.8882249, + -1.0146722 + ], + [ + 34.8883349, + -1.0149806 + ], + [ + 34.8884019, + -1.0152381 + ], + [ + 34.8884314, + -1.015509 + ], + [ + 34.8884931, + -1.0159488 + ], + [ + 34.8885387, + -1.0162625 + ], + [ + 34.8886353, + -1.0166836 + ], + [ + 34.8888391, + -1.0175632 + ], + [ + 34.8889652, + -1.0182176 + ], + [ + 34.8890752, + -1.0187244 + ], + [ + 34.8891409, + -1.0194324 + ], + [ + 34.8891422, + -1.0199098 + ], + [ + 34.8891368, + -1.0206231 + ], + [ + 34.8891476, + -1.0210281 + ], + [ + 34.8891905, + -1.0214169 + ], + [ + 34.8892039, + -1.0217763 + ], + [ + 34.8891771, + -1.0220337 + ], + [ + 34.88911, + -1.0224038 + ], + [ + 34.8890322, + -1.0227659 + ], + [ + 34.888984, + -1.022967 + ], + [ + 34.8889598, + -1.0231574 + ], + [ + 34.8889491, + -1.0233827 + ], + [ + 34.8889598, + -1.0237554 + ], + [ + 34.8889786, + -1.0239458 + ], + [ + 34.8890161, + -1.0246404 + ], + [ + 34.8890483, + -1.0252626 + ], + [ + 34.8891073, + -1.0259384 + ], + [ + 34.8891288, + -1.0262227 + ], + [ + 34.8891395, + -1.0264238 + ], + [ + 34.8891288, + -1.0266598 + ], + [ + 34.8890859, + -1.0269521 + ], + [ + 34.8889518, + -1.0277781 + ], + [ + 34.8888633, + -1.0284941 + ], + [ + 34.8887801, + -1.0294542 + ], + [ + 34.8887265, + -1.0303338 + ], + [ + 34.8886916, + -1.0307093 + ], + [ + 34.8886943, + -1.0310981 + ], + [ + 34.8887372, + -1.0316559 + ], + [ + 34.8888418, + -1.0325382 + ], + [ + 34.8888445, + -1.0328413 + ], + [ + 34.8888364, + -1.0331416 + ], + [ + 34.8887613, + -1.0337772 + ], + [ + 34.8886621, + -1.0346005 + ], + [ + 34.8885307, + -1.0353246 + ], + [ + 34.8883831, + -1.0359521 + ], + [ + 34.8881444, + -1.0368747 + ], + [ + 34.8878977, + -1.0377945 + ], + [ + 34.8875302, + -1.0390764 + ], + [ + 34.8872244, + -1.0402001 + ], + [ + 34.8869213, + -1.0410877 + ], + [ + 34.8865753, + -1.0420853 + ], + [ + 34.8858994, + -1.043614 + ], + [ + 34.8855199, + -1.0443421 + ], + [ + 34.8851377, + -1.0451157 + ], + [ + 34.8849579, + -1.0454483 + ], + [ + 34.8848178, + -1.0457546 + ], + [ + 34.8845368, + -1.0464352 + ], + [ + 34.8842392, + -1.0472424 + ], + [ + 34.8836719, + -1.0485699 + ], + [ + 34.8835397, + -1.0488674 + ], + [ + 34.8834854, + -1.0490988 + ], + [ + 34.8834507, + -1.0493962 + ], + [ + 34.8834129, + -1.049921 + ], + [ + 34.8834307, + -1.0501586 + ], + [ + 34.8834709, + -1.0504005 + ], + [ + 34.8835837, + -1.0509252 + ], + [ + 34.8836983, + -1.0512333 + ], + [ + 34.8839897, + -1.0518899 + ], + [ + 34.8840889, + -1.052158 + ], + [ + 34.8842096, + -1.0525979 + ], + [ + 34.8843411, + -1.0531154 + ], + [ + 34.8845047, + -1.0538288 + ], + [ + 34.8846549, + -1.0545381 + ], + [ + 34.8846991, + -1.0547781 + ], + [ + 34.8847783, + -1.0552729 + ], + [ + 34.8848024, + -1.0554566 + ], + [ + 34.8848292, + -1.0561807 + ], + [ + 34.8848566, + -1.0579004 + ], + [ + 34.8848464, + -1.0581936 + ], + [ + 34.8847972, + -1.0584943 + ], + [ + 34.8845626, + -1.0596397 + ], + [ + 34.8844983, + -1.0598622 + ], + [ + 34.8842043, + -1.0604902 + ], + [ + 34.8839615, + -1.0610925 + ], + [ + 34.8838341, + -1.0613786 + ], + [ + 34.8837402, + -1.0616622 + ], + [ + 34.8836517, + -1.0619169 + ], + [ + 34.8836195, + -1.0620671 + ], + [ + 34.8835954, + -1.0623648 + ], + [ + 34.8835552, + -1.0632471 + ], + [ + 34.8835149, + -1.0639872 + ], + [ + 34.8833741, + -1.0651619 + ], + [ + 34.8833728, + -1.0654193 + ], + [ + 34.883409, + -1.06567 + ], + [ + 34.8834908, + -1.0659771 + ], + [ + 34.8835963, + -1.0662684 + ], + [ + 34.8837724, + -1.0667468 + ], + [ + 34.8839883, + -1.06733 + ], + [ + 34.8840635, + -1.0675245 + ], + [ + 34.8841386, + -1.0676746 + ], + [ + 34.8842418, + -1.0677859 + ], + [ + 34.8844001, + -1.0678986 + ], + [ + 34.8847099, + -1.0681024 + ], + [ + 34.884787, + -1.0681621 + ], + [ + 34.8848574, + -1.0682593 + ], + [ + 34.8848929, + -1.0683739 + ], + [ + 34.8849185, + -1.0685519 + ], + [ + 34.8849539, + -1.0689659 + ], + [ + 34.8850022, + -1.0697262 + ], + [ + 34.8850076, + -1.0700051 + ], + [ + 34.8850036, + -1.0702692 + ], + [ + 34.8849674, + -1.0706407 + ], + [ + 34.8847568, + -1.0721263 + ], + [ + 34.8846576, + -1.0724079 + ], + [ + 34.8845315, + -1.072711 + ], + [ + 34.8842686, + -1.0732178 + ], + [ + 34.8839334, + -1.0738856 + ], + [ + 34.8837295, + -1.0744568 + ], + [ + 34.8835471, + -1.0749556 + ], + [ + 34.8834237, + -1.075323 + ], + [ + 34.8832065, + -1.0758969 + ], + [ + 34.8829812, + -1.0763662 + ], + [ + 34.8825815, + -1.0772109 + ], + [ + 34.8821497, + -1.0780369 + ], + [ + 34.8818909, + -1.0785826 + ], + [ + 34.8818104, + -1.0787891 + ], + [ + 34.8817742, + -1.0789715 + ], + [ + 34.8817594, + -1.0791485 + ], + [ + 34.8817071, + -1.0802708 + ], + [ + 34.881632, + -1.0808339 + ], + [ + 34.8815542, + -1.0811504 + ], + [ + 34.8814175, + -1.0815929 + ], + [ + 34.8810607, + -1.0829874 + ], + [ + 34.8809132, + -1.0835988 + ], + [ + 34.8807051, + -1.0844623 + ], + [ + 34.8803083, + -1.0857803 + ], + [ + 34.8803026, + -1.0860452 + ], + [ + 34.8803506, + -1.0862743 + ], + [ + 34.8804088, + -1.0864995 + ], + [ + 34.8805185, + -1.0867676 + ], + [ + 34.8806555, + -1.0870262 + ], + [ + 34.8808193, + -1.0872725 + ], + [ + 34.8810524, + -1.0875314 + ], + [ + 34.8816961, + -1.0880318 + ], + [ + 34.8818862, + -1.0882375 + ], + [ + 34.8820578, + -1.0884822 + ], + [ + 34.882187, + -1.0887472 + ], + [ + 34.8822677, + -1.0890561 + ], + [ + 34.882324, + -1.0893484 + ], + [ + 34.8823321, + -1.0895549 + ], + [ + 34.882312, + -1.0897078 + ], + [ + 34.8822459, + -1.0899028 + ], + [ + 34.8822248, + -1.0899652 + ], + [ + 34.8817286, + -1.0912873 + ], + [ + 34.8814389, + -1.0920999 + ], + [ + 34.8812699, + -1.0924619 + ], + [ + 34.8809373, + -1.0930653 + ], + [ + 34.8806289, + -1.0936714 + ], + [ + 34.8804599, + -1.0940522 + ], + [ + 34.8803848, + -1.0942211 + ], + [ + 34.8803258, + -1.0944517 + ], + [ + 34.8802654, + -1.0947159 + ], + [ + 34.8801514, + -1.0953984 + ], + [ + 34.8800307, + -1.0962042 + ], + [ + 34.8799905, + -1.0964094 + ], + [ + 34.8799422, + -1.096581 + ], + [ + 34.8798148, + -1.0969498 + ], + [ + 34.8796673, + -1.0973225 + ], + [ + 34.8795399, + -1.0976537 + ], + [ + 34.8794648, + -1.0979407 + ], + [ + 34.8793294, + -1.0985507 + ], + [ + 34.8791563, + -1.099374 + ], + [ + 34.8789632, + -1.0999841 + ], + [ + 34.8783369, + -1.1016723 + ], + [ + 34.8783099, + -1.1017381 + ], + [ + 34.8780446, + -1.1023843 + ], + [ + 34.8779748, + -1.1026323 + ], + [ + 34.8779494, + -1.1028227 + ], + [ + 34.8779024, + -1.1039169 + ], + [ + 34.8778836, + -1.1040885 + ], + [ + 34.877834, + -1.104248 + ], + [ + 34.8777884, + -1.1043821 + ], + [ + 34.8776919, + -1.1046154 + ], + [ + 34.877311, + -1.1053046 + ], + [ + 34.8771997, + -1.1054843 + ], + [ + 34.8770039, + -1.1057578 + ], + [ + 34.8761898, + -1.1066629 + ], + [ + 34.8759252, + -1.106936 + ], + [ + 34.8757687, + -1.1070974 + ], + [ + 34.8756574, + -1.1072516 + ], + [ + 34.875357, + -1.1077584 + ], + [ + 34.8749882, + -1.1084798 + ], + [ + 34.8749091, + -1.1086863 + ], + [ + 34.8748796, + -1.1089209 + ], + [ + 34.8748916, + -1.109232 + ], + [ + 34.8749332, + -1.1104736 + ], + [ + 34.8749372, + -1.1112258 + ], + [ + 34.8748957, + -1.1121939 + ], + [ + 34.8748621, + -1.1127209 + ], + [ + 34.87481, + -1.1132245 + ], + [ + 34.8748045, + -1.1132774 + ], + [ + 34.8747723, + -1.1134396 + ], + [ + 34.8747227, + -1.1136139 + ], + [ + 34.8745228, + -1.1142548 + ], + [ + 34.8743217, + -1.1148783 + ], + [ + 34.8742305, + -1.1151291 + ], + [ + 34.8740695, + -1.1154308 + ], + [ + 34.8737986, + -1.1159738 + ], + [ + 34.8732609, + -1.1170961 + ], + [ + 34.8731723, + -1.1173696 + ], + [ + 34.8730825, + -1.1176955 + ], + [ + 34.8728733, + -1.1187467 + ], + [ + 34.8726976, + -1.1194989 + ], + [ + 34.8726077, + -1.1197872 + ], + [ + 34.8725241, + -1.1200137 + ], + [ + 34.872428, + -1.1201344 + ], + [ + 34.8723019, + -1.1202363 + ], + [ + 34.8715818, + -1.120715 + ], + [ + 34.8714557, + -1.120778 + ], + [ + 34.8713347, + -1.1208231 + ], + [ + 34.8712036, + -1.1208652 + ], + [ + 34.870938, + -1.1209054 + ], + [ + 34.8697418, + -1.1209336 + ], + [ + 34.8695339, + -1.1209376 + ], + [ + 34.869322, + -1.1209738 + ], + [ + 34.8675249, + -1.1214821 + ], + [ + 34.8672996, + -1.1215652 + ], + [ + 34.8669939, + -1.1216778 + ], + [ + 34.8667283, + -1.1218106 + ], + [ + 34.8655375, + -1.1224086 + ], + [ + 34.8652719, + -1.1225091 + ], + [ + 34.8650345, + -1.1225735 + ], + [ + 34.8647422, + -1.1226258 + ], + [ + 34.8641199, + -1.1227183 + ], + [ + 34.8630296, + -1.122788 + ], + [ + 34.8627077, + -1.1228443 + ], + [ + 34.8621364, + -1.1229985 + ], + [ + 34.8612151, + -1.1232761 + ], + [ + 34.8605914, + -1.1234826 + ], + [ + 34.8603246, + -1.1235938 + ], + [ + 34.8600698, + -1.1237333 + ], + [ + 34.8597948, + -1.1239425 + ], + [ + 34.8592678, + -1.1244439 + ], + [ + 34.8588453, + -1.1248435 + ], + [ + 34.858266, + -1.1254228 + ], + [ + 34.8580648, + -1.1256735 + ], + [ + 34.8579414, + -1.1258733 + ], + [ + 34.8578502, + -1.1261146 + ], + [ + 34.8577818, + -1.1263962 + ], + [ + 34.8576155, + -1.1271042 + ], + [ + 34.8574398, + -1.1278376 + ], + [ + 34.8571596, + -1.1288111 + ], + [ + 34.8569007, + -1.1296183 + ], + [ + 34.8565195, + -1.1306903 + ], + [ + 34.8563281, + -1.1312286 + ], + [ + 34.8558868, + -1.1325131 + ], + [ + 34.8556884, + -1.1330817 + ], + [ + 34.8556092, + -1.1333418 + ], + [ + 34.8555543, + -1.1336488 + ], + [ + 34.8555207, + -1.1338875 + ], + [ + 34.8554885, + -1.1340672 + ], + [ + 34.8553853, + -1.1347711 + ], + [ + 34.8553424, + -1.1351854 + ], + [ + 34.8552999, + -1.1358059 + ], + [ + 34.8552793, + -1.1361213 + ], + [ + 34.8552887, + -1.1366181 + ], + [ + 34.8553343, + -1.1372825 + ], + [ + 34.85538, + -1.137668 + ], + [ + 34.8553913, + -1.1378309 + ], + [ + 34.8553811, + -1.1379111 + ], + [ + 34.8553531, + -1.137973 + ], + [ + 34.8553182, + -1.1380307 + ], + [ + 34.8549456, + -1.1385434 + ], + [ + 34.8548314, + -1.1387253 + ], + [ + 34.8546933, + -1.1390404 + ], + [ + 34.8544948, + -1.1395097 + ], + [ + 34.8542333, + -1.1400594 + ], + [ + 34.8538671, + -1.1407446 + ], + [ + 34.8534313, + -1.1414096 + ], + [ + 34.8530909, + -1.1419365 + ], + [ + 34.8528613, + -1.1422919 + ], + [ + 34.8526856, + -1.1425708 + ], + [ + 34.8522095, + -1.1433257 + ], + [ + 34.8519769, + -1.1437112 + ], + [ + 34.8518267, + -1.1439378 + ], + [ + 34.8516074, + -1.1442535 + ], + [ + 34.8514525, + -1.1444962 + ], + [ + 34.8513479, + -1.1446772 + ], + [ + 34.8512942, + -1.1447614 + ], + [ + 34.8512215, + -1.1448797 + ], + [ + 34.8511541, + -1.1449943 + ], + [ + 34.8510475, + -1.1451948 + ], + [ + 34.850959, + -1.1453785 + ], + [ + 34.8507658, + -1.14577 + ], + [ + 34.8506284, + -1.1460308 + ], + [ + 34.8505439, + -1.1461729 + ], + [ + 34.8504218, + -1.1463727 + ], + [ + 34.8503307, + -1.1465068 + ], + [ + 34.8501925, + -1.1467006 + ], + [ + 34.8500899, + -1.1468199 + ], + [ + 34.849821, + -1.1471263 + ], + [ + 34.8496152, + -1.1473629 + ], + [ + 34.8492584, + -1.1477685 + ], + [ + 34.8489641, + -1.1481064 + ], + [ + 34.8488554, + -1.1482217 + ], + [ + 34.8486972, + -1.1483934 + ], + [ + 34.8485658, + -1.1485275 + ], + [ + 34.8484652, + -1.1486159 + ], + [ + 34.8483612, + -1.1486964 + ], + [ + 34.8482358, + -1.1487829 + ], + [ + 34.8480991, + -1.1488573 + ], + [ + 34.8479502, + -1.1489317 + ], + [ + 34.847686, + -1.149045 + ], + [ + 34.8473306, + -1.1491938 + ], + [ + 34.8471086, + -1.1492783 + ], + [ + 34.8467801, + -1.1493943 + ], + [ + 34.8463858, + -1.1494982 + ], + [ + 34.846137, + -1.149572 + ], + [ + 34.8458983, + -1.149637 + ], + [ + 34.8457287, + -1.1496926 + ], + [ + 34.8455389, + -1.1497563 + ], + [ + 34.8452847, + -1.1498535 + ], + [ + 34.8450863, + -1.149932 + ], + [ + 34.8448496, + -1.1500379 + ], + [ + 34.8445438, + -1.150178 + ], + [ + 34.8441844, + -1.150347 + ], + [ + 34.8437324, + -1.1505615 + ], + [ + 34.8435306, + -1.150654 + ], + [ + 34.8431852, + -1.1508156 + ], + [ + 34.8427373, + -1.1510227 + ], + [ + 34.8423189, + -1.1512125 + ], + [ + 34.8419729, + -1.151372 + ], + [ + 34.8415893, + -1.1515631 + ], + [ + 34.8413774, + -1.151673 + ], + [ + 34.8411501, + -1.1517817 + ], + [ + 34.840896, + -1.1519037 + ], + [ + 34.8405661, + -1.1520619 + ], + [ + 34.8404078, + -1.1521256 + ], + [ + 34.8402134, + -1.152196 + ], + [ + 34.8399096, + -1.1523026 + ], + [ + 34.8396266, + -1.1523991 + ], + [ + 34.8394758, + -1.1524641 + ], + [ + 34.8393799, + -1.1525178 + ], + [ + 34.8392685, + -1.1525888 + ], + [ + 34.8391666, + -1.1526626 + ], + [ + 34.8390607, + -1.1527605 + ], + [ + 34.8389699, + -1.1528624 + ], + [ + 34.8388776, + -1.1529797 + ], + [ + 34.8387965, + -1.1530789 + ], + [ + 34.8386879, + -1.1532157 + ], + [ + 34.8385242, + -1.1534356 + ], + [ + 34.8383667, + -1.1536695 + ], + [ + 34.8381393, + -1.1539887 + ], + [ + 34.8379415, + -1.1542588 + ], + [ + 34.8378061, + -1.1544533 + ], + [ + 34.8376928, + -1.1546108 + ], + [ + 34.8376197, + -1.1547382 + ], + [ + 34.8375727, + -1.1548434 + ], + [ + 34.837513, + -1.1549869 + ], + [ + 34.8374607, + -1.1551217 + ], + [ + 34.8373347, + -1.1554408 + ], + [ + 34.8371378, + -1.155971 + ], + [ + 34.8369672, + -1.1564015 + ], + [ + 34.8369344, + -1.1565121 + ], + [ + 34.8369156, + -1.1565946 + ], + [ + 34.8369069, + -1.1566744 + ], + [ + 34.8369082, + -1.1567696 + ], + [ + 34.8369209, + -1.1568795 + ], + [ + 34.8369424, + -1.1570384 + ], + [ + 34.8369786, + -1.1572134 + ], + [ + 34.8370504, + -1.1574916 + ], + [ + 34.8371221, + -1.1578214 + ], + [ + 34.8372173, + -1.1582438 + ], + [ + 34.8372629, + -1.1583819 + ], + [ + 34.8373266, + -1.1585475 + ], + [ + 34.8373883, + -1.158701 + ], + [ + 34.837503, + -1.1589538 + ], + [ + 34.8375754, + -1.1590992 + ], + [ + 34.8376418, + -1.1592065 + ], + [ + 34.8377531, + -1.1593433 + ], + [ + 34.837902, + -1.1595364 + ], + [ + 34.8379308, + -1.1595752 + ], + [ + 34.8379553, + -1.1596192 + ], + [ + 34.8379875, + -1.1596909 + ], + [ + 34.8380119, + -1.159764 + ], + [ + 34.8380408, + -1.1598364 + ], + [ + 34.8380897, + -1.1599493 + ], + [ + 34.8381239, + -1.1600331 + ], + [ + 34.8381621, + -1.1601076 + ], + [ + 34.8381987, + -1.1601652 + ], + [ + 34.8382319, + -1.1602128 + ], + [ + 34.838309, + -1.1603214 + ], + [ + 34.8384169, + -1.1604518 + ], + [ + 34.8385759, + -1.1606432 + ], + [ + 34.8388179, + -1.1609094 + ], + [ + 34.8389433, + -1.1610609 + ], + [ + 34.8390013, + -1.1611353 + ], + [ + 34.8390681, + -1.1612325 + ], + [ + 34.8391294, + -1.1613257 + ], + [ + 34.839173, + -1.1614075 + ], + [ + 34.8392119, + -1.1614879 + ], + [ + 34.8392675, + -1.1616277 + ], + [ + 34.8393098, + -1.1617474 + ], + [ + 34.8393778, + -1.1619539 + ], + [ + 34.8394141, + -1.1620853 + ], + [ + 34.8394509, + -1.1622227 + ], + [ + 34.8394865, + -1.1623789 + ], + [ + 34.8395093, + -1.1625438 + ], + [ + 34.8395287, + -1.1627678 + ], + [ + 34.8395321, + -1.1630239 + ], + [ + 34.8395173, + -1.1633001 + ], + [ + 34.8394838, + -1.1640764 + ], + [ + 34.8394664, + -1.1644384 + ], + [ + 34.839461, + -1.1647213 + ], + [ + 34.8394704, + -1.1650445 + ], + [ + 34.8394925, + -1.1655017 + ], + [ + 34.8395039, + -1.1657786 + ], + [ + 34.8395059, + -1.1659314 + ], + [ + 34.8395066, + -1.166095 + ], + [ + 34.8394985, + -1.1663471 + ], + [ + 34.8394892, + -1.1665107 + ], + [ + 34.8394704, + -1.1667178 + ], + [ + 34.8394462, + -1.1669096 + ], + [ + 34.8394174, + -1.1671563 + ], + [ + 34.839408, + -1.1673185 + ], + [ + 34.839408, + -1.1674754 + ], + [ + 34.8394114, + -1.167586 + ], + [ + 34.8394261, + -1.1676805 + ], + [ + 34.8394503, + -1.1677871 + ], + [ + 34.8394778, + -1.1678877 + ], + [ + 34.8395227, + -1.1680258 + ], + [ + 34.8396018, + -1.1682336 + ], + [ + 34.8396736, + -1.1684039 + ], + [ + 34.8397446, + -1.1685896 + ], + [ + 34.8397788, + -1.1686848 + ], + [ + 34.839803, + -1.1687693 + ], + [ + 34.8398171, + -1.1688518 + ], + [ + 34.8398218, + -1.1689449 + ], + [ + 34.839811, + -1.1690422 + ], + [ + 34.8397943, + -1.1691132 + ], + [ + 34.8397762, + -1.1691863 + ], + [ + 34.8397413, + -1.1692949 + ], + [ + 34.8397078, + -1.1693619 + ], + [ + 34.8396488, + -1.1694746 + ], + [ + 34.8395804, + -1.1695792 + ], + [ + 34.8394972, + -1.1697146 + ], + [ + 34.8393698, + -1.1699023 + ], + [ + 34.8391901, + -1.1701335 + ], + [ + 34.8390547, + -1.1702998 + ], + [ + 34.8389567, + -1.1704426 + ], + [ + 34.8388051, + -1.1706592 + ], + [ + 34.8386597, + -1.1708784 + ], + [ + 34.8385779, + -1.1710078 + ], + [ + 34.8384847, + -1.1711332 + ], + [ + 34.8383439, + -1.1712545 + ], + [ + 34.8381977, + -1.1713738 + ], + [ + 34.838087, + -1.1714603 + ], + [ + 34.8379509, + -1.1715622 + ], + [ + 34.8378201, + -1.1716473 + ], + [ + 34.8376833, + -1.1717251 + ], + [ + 34.8375412, + -1.1717948 + ], + [ + 34.8374238, + -1.1718418 + ], + [ + 34.8373286, + -1.171874 + ], + [ + 34.837226, + -1.1719088 + ], + [ + 34.8371395, + -1.171941 + ], + [ + 34.8370336, + -1.1719926 + ], + [ + 34.8369444, + -1.1720483 + ], + [ + 34.8367546, + -1.1721811 + ] + ] + }, + "id": "way/127678306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/133870257", + "access": "permissive", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "old_ref": "B144", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "smoothness": "good", + "source": "survey", + "surface": "concrete", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2278847, + -2.9437055 + ], + [ + 35.2279373, + -2.9440867 + ] + ] + }, + "id": "way/133870257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/133870258", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "old_ref": "B144", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "source": "survey", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2279373, + -2.9440867 + ], + [ + 35.2279823, + -2.9446849 + ], + [ + 35.2280011, + -2.9448536 + ], + [ + 35.2279877, + -2.9450251 + ], + [ + 35.2279206, + -2.9452448 + ], + [ + 35.2272661, + -2.9470127 + ], + [ + 35.2272152, + -2.9472056 + ], + [ + 35.2271857, + -2.9474547 + ], + [ + 35.2271374, + -2.9495065 + ], + [ + 35.2271562, + -2.9497744 + ], + [ + 35.2272098, + -2.9499779 + ], + [ + 35.2272902, + -2.9501708 + ], + [ + 35.2278697, + -2.951036 + ], + [ + 35.2284811, + -2.951845 + ], + [ + 35.2287601, + -2.9521476 + ], + [ + 35.2290193, + -2.9523611 + ], + [ + 35.2294066, + -2.952603 + ], + [ + 35.2359673, + -2.9565621 + ], + [ + 35.2364876, + -2.9568567 + ], + [ + 35.2370106, + -2.9570978 + ], + [ + 35.2405833, + -2.9587639 + ], + [ + 35.2408569, + -2.9588684 + ], + [ + 35.2411225, + -2.9589327 + ], + [ + 35.2414711, + -2.9589916 + ], + [ + 35.2418225, + -2.9590639 + ], + [ + 35.2421272, + -2.9591649 + ], + [ + 35.2424287, + -2.9592997 + ], + [ + 35.243142, + -2.9597005 + ], + [ + 35.2457394, + -2.9611313 + ], + [ + 35.2462242, + -2.9614508 + ], + [ + 35.2491018, + -2.963347 + ], + [ + 35.2500856, + -2.9640019 + ], + [ + 35.2520263, + -2.9652937 + ], + [ + 35.2561565, + -2.9680679 + ], + [ + 35.2562984, + -2.9681632 + ], + [ + 35.2575029, + -2.9690641 + ], + [ + 35.2624017, + -2.9729151 + ], + [ + 35.2678318, + -2.9771838 + ], + [ + 35.2704363, + -2.9792312 + ], + [ + 35.2778792, + -2.9850469 + ], + [ + 35.2836033, + -2.9895195 + ], + [ + 35.285226, + -2.9907811 + ], + [ + 35.285564, + -2.9910785 + ], + [ + 35.2857509, + -2.991309 + ], + [ + 35.2859744, + -2.9915847 + ], + [ + 35.286551, + -2.9923642 + ], + [ + 35.2886914, + -2.9952891 + ], + [ + 35.2888819, + -2.9955356 + ], + [ + 35.2890455, + -2.9956937 + ], + [ + 35.2898341, + -2.9961945 + ], + [ + 35.2900111, + -2.9963632 + ], + [ + 35.2901157, + -2.9965561 + ], + [ + 35.2901586, + -2.9967865 + ], + [ + 35.2901693, + -2.9970007 + ], + [ + 35.2901291, + -2.9971775 + ], + [ + 35.2898622, + -2.9977039 + ], + [ + 35.2898031, + -2.9979128 + ], + [ + 35.2897925, + -2.9981204 + ], + [ + 35.2898286, + -2.9983106 + ], + [ + 35.2900637, + -2.9988106 + ], + [ + 35.2909244, + -3.0011136 + ], + [ + 35.2911563, + -3.0018302 + ], + [ + 35.2912784, + -3.0022493 + ], + [ + 35.2914018, + -3.00316 + ], + [ + 35.2915013, + -3.0035904 + ], + [ + 35.2915212, + -3.0036639 + ], + [ + 35.2915895, + -3.0039167 + ], + [ + 35.2916901, + -3.0041926 + ], + [ + 35.2917867, + -3.0044068 + ], + [ + 35.2919021, + -3.0045516 + ], + [ + 35.2920093, + -3.0046506 + ], + [ + 35.2920942, + -3.0046834 + ], + [ + 35.2922453, + -3.0047417 + ], + [ + 35.2927027, + -3.0048635 + ], + [ + 35.2928918, + -3.0049573 + ], + [ + 35.2930245, + -3.0050739 + ], + [ + 35.2932217, + -3.0053256 + ], + [ + 35.2936817, + -3.0059524 + ], + [ + 35.294422, + -3.0068658 + ], + [ + 35.2953232, + -3.0078166 + ], + [ + 35.2959535, + -3.0084273 + ], + [ + 35.2961442, + -3.0086314 + ], + [ + 35.296333, + -3.008896 + ], + [ + 35.297017, + -3.0101577 + ], + [ + 35.2974609, + -3.0108782 + ], + [ + 35.2975926, + -3.0111599 + ], + [ + 35.2977063, + -3.0115197 + ], + [ + 35.2979075, + -3.012113 + ], + [ + 35.2980671, + -3.012429 + ], + [ + 35.2983366, + -3.0127799 + ], + [ + 35.2986987, + -3.0132044 + ], + [ + 35.2990327, + -3.0135192 + ], + [ + 35.2993331, + -3.0137442 + ], + [ + 35.2995651, + -3.0138821 + ], + [ + 35.2997783, + -3.0139678 + ], + [ + 35.2998176, + -3.0139789 + ], + [ + 35.2999258, + -3.0140094 + ], + [ + 35.3000358, + -3.0140415 + ], + [ + 35.3003419, + -3.0140902 + ], + [ + 35.3024565, + -3.0142249 + ], + [ + 35.3029004, + -3.0142664 + ], + [ + 35.303225, + -3.0143468 + ], + [ + 35.3038687, + -3.0145035 + ], + [ + 35.3046425, + -3.0146615 + ], + [ + 35.3048651, + -3.0146789 + ], + [ + 35.3050569, + -3.0146695 + ], + [ + 35.3053694, + -3.0145906 + ], + [ + 35.3054914, + -3.0145879 + ], + [ + 35.3056175, + -3.0146201 + ], + [ + 35.3057194, + -3.0146843 + ], + [ + 35.3058897, + -3.0148451 + ], + [ + 35.306178, + -3.0151611 + ], + [ + 35.3064597, + -3.0153941 + ], + [ + 35.3066287, + -3.015512 + ], + [ + 35.3095875, + -3.0174464 + ], + [ + 35.3120681, + -3.0191608 + ], + [ + 35.3126237, + -3.0194981 + ], + [ + 35.3132997, + -3.0198409 + ], + [ + 35.3146327, + -3.0203284 + ], + [ + 35.3149328, + -3.0204813 + ], + [ + 35.3157694, + -3.0212709 + ], + [ + 35.3161129, + -3.0215171 + ], + [ + 35.3161932, + -3.0215747 + ], + [ + 35.3242815, + -3.0261243 + ], + [ + 35.3396298, + -3.0348009 + ], + [ + 35.3410252, + -3.0357362 + ], + [ + 35.3422907, + -3.0368553 + ], + [ + 35.3432903, + -3.0372656 + ], + [ + 35.3475229, + -3.03984 + ], + [ + 35.3529097, + -3.0423798 + ], + [ + 35.354357, + -3.0431028 + ], + [ + 35.3552513, + -3.0435495 + ], + [ + 35.3552796, + -3.0435636 + ], + [ + 35.3579769, + -3.0448937 + ], + [ + 35.3587331, + -3.0452258 + ], + [ + 35.3592715, + -3.045365 + ], + [ + 35.361053, + -3.0455877 + ], + [ + 35.3631498, + -3.0457896 + ], + [ + 35.3667676, + -3.0463901 + ], + [ + 35.3696571, + -3.046977 + ], + [ + 35.369765, + -3.0470035 + ], + [ + 35.370009, + -3.0470633 + ], + [ + 35.3703745, + -3.0471973 + ], + [ + 35.3706921, + -3.0474229 + ], + [ + 35.3726742, + -3.0491014 + ], + [ + 35.3729889, + -3.0494438 + ], + [ + 35.3732551, + -3.0498555 + ], + [ + 35.3737154, + -3.0510112 + ], + [ + 35.3738821, + -3.0512707 + ], + [ + 35.3741298, + -3.0515023 + ], + [ + 35.3743604, + -3.0515904 + ], + [ + 35.3746506, + -3.0516659 + ], + [ + 35.3752319, + -3.0517147 + ], + [ + 35.3758523, + -3.0517374 + ], + [ + 35.3764298, + -3.0517527 + ], + [ + 35.3766247, + -3.0517822 + ], + [ + 35.3768082, + -3.0518905 + ], + [ + 35.3769945, + -3.0520741 + ], + [ + 35.3771131, + -3.052277 + ], + [ + 35.3771896, + -3.0525416 + ], + [ + 35.377205, + -3.0527665 + ], + [ + 35.3771715, + -3.0530108 + ], + [ + 35.3771619, + -3.0531139 + ], + [ + 35.3771773, + -3.053231 + ], + [ + 35.3772308, + -3.0533706 + ], + [ + 35.3773361, + -3.0536231 + ], + [ + 35.3776025, + -3.0542551 + ], + [ + 35.3777806, + -3.0548401 + ], + [ + 35.3782745, + -3.0581942 + ], + [ + 35.3783385, + -3.0585167 + ], + [ + 35.3784526, + -3.0588724 + ], + [ + 35.3787948, + -3.0597327 + ], + [ + 35.3795143, + -3.0615775 + ], + [ + 35.379747, + -3.0623244 + ], + [ + 35.3798524, + -3.0626469 + ], + [ + 35.3799376, + -3.0630493 + ], + [ + 35.3800323, + -3.0634804 + ], + [ + 35.3801201, + -3.0644349 + ], + [ + 35.3802216, + -3.0654959 + ], + [ + 35.3802895, + -3.0658986 + ], + [ + 35.3803516, + -3.0661914 + ], + [ + 35.3809056, + -3.0681177 + ], + [ + 35.3809903, + -3.068335 + ], + [ + 35.3811495, + -3.0685682 + ], + [ + 35.3815458, + -3.069 + ], + [ + 35.381899, + -3.06934 + ], + [ + 35.3822303, + -3.0695766 + ], + [ + 35.3832627, + -3.0702131 + ], + [ + 35.3844177, + -3.0709994 + ], + [ + 35.3848163, + -3.071187 + ], + [ + 35.3851871, + -3.0713193 + ], + [ + 35.3855096, + -3.0714478 + ], + [ + 35.3858705, + -3.0716435 + ], + [ + 35.3904628, + -3.0744491 + ], + [ + 35.3909747, + -3.0748224 + ], + [ + 35.3911113, + -3.0749783 + ], + [ + 35.3911985, + -3.0751481 + ], + [ + 35.3913945, + -3.0753638 + ], + [ + 35.3917118, + -3.0756346 + ], + [ + 35.3928969, + -3.076522 + ], + [ + 35.3972511, + -3.079607 + ] + ] + }, + "id": "way/133870258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169818469", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8696229, + -2.1710888 + ], + [ + 33.8696241, + -2.1711599 + ], + [ + 33.8696203, + -2.1712365 + ] + ] + }, + "id": "way/169818469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169818471", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8696203, + -2.1712365 + ], + [ + 33.8693728, + -2.176044 + ], + [ + 33.8693097, + -2.1809949 + ], + [ + 33.8693697, + -2.181755 + ], + [ + 33.8694754, + -2.1828561 + ], + [ + 33.8696539, + -2.1840889 + ], + [ + 33.8699719, + -2.1860542 + ], + [ + 33.8704619, + -2.1891155 + ], + [ + 33.8705375, + -2.189588 + ], + [ + 33.8706034, + -2.1901361 + ], + [ + 33.8706257, + -2.1905248 + ], + [ + 33.8706206, + -2.1910007 + ], + [ + 33.8705395, + -2.1918157 + ], + [ + 33.870386, + -2.1924429 + ], + [ + 33.8703176, + -2.1926902 + ], + [ + 33.8701733, + -2.1931504 + ], + [ + 33.8699558, + -2.1936178 + ], + [ + 33.8696768, + -2.1941543 + ], + [ + 33.8693456, + -2.1946406 + ], + [ + 33.8690401, + -2.1950379 + ], + [ + 33.8683189, + -2.1958298 + ] + ] + }, + "id": "way/169818471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169818814", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.85216, + -2.2434162 + ], + [ + 33.8512158, + -2.244432 + ], + [ + 33.8509905, + -2.2446598 + ], + [ + 33.8507035, + -2.2449091 + ], + [ + 33.8501399, + -2.2454412 + ], + [ + 33.849857, + -2.245706 + ], + [ + 33.8493136, + -2.2462147 + ], + [ + 33.8492869, + -2.2462433 + ], + [ + 33.8488484, + -2.2467134 + ], + [ + 33.8485733, + -2.2470308 + ], + [ + 33.8483238, + -2.2473186 + ], + [ + 33.8469057, + -2.2489287 + ], + [ + 33.8464411, + -2.249504 + ], + [ + 33.8453913, + -2.2506501 + ], + [ + 33.844778, + -2.251272 + ], + [ + 33.8444476, + -2.2516505 + ], + [ + 33.8442627, + -2.2518392 + ], + [ + 33.8432174, + -2.2527321 + ], + [ + 33.8426784, + -2.2531237 + ], + [ + 33.8421076, + -2.2535133 + ], + [ + 33.8414441, + -2.253922 + ], + [ + 33.841255, + -2.2540349 + ], + [ + 33.840505, + -2.2544662 + ], + [ + 33.8397248, + -2.2548863 + ], + [ + 33.8389608, + -2.2552957 + ], + [ + 33.8382472, + -2.2557036 + ], + [ + 33.8376564, + -2.25603 + ], + [ + 33.8370821, + -2.2563414 + ], + [ + 33.8355214, + -2.2571933 + ], + [ + 33.8341233, + -2.2578999 + ], + [ + 33.8322075, + -2.2590566 + ], + [ + 33.8310022, + -2.2598393 + ], + [ + 33.8299218, + -2.2606683 + ], + [ + 33.8285426, + -2.2616295 + ], + [ + 33.8277385, + -2.2621611 + ], + [ + 33.8269472, + -2.2626141 + ], + [ + 33.8261052, + -2.2630526 + ], + [ + 33.8255448, + -2.2632884 + ], + [ + 33.8247251, + -2.263649 + ], + [ + 33.823972, + -2.2639449 + ], + [ + 33.8234043, + -2.2641722 + ], + [ + 33.8219733, + -2.2646055 + ], + [ + 33.8201599, + -2.2650468 + ], + [ + 33.8200414, + -2.2650756 + ], + [ + 33.8177403, + -2.2656355 + ], + [ + 33.8173478, + -2.2657413 + ], + [ + 33.8145543, + -2.266494 + ], + [ + 33.8142435, + -2.2665869 + ], + [ + 33.8138772, + -2.2666964 + ], + [ + 33.8134044, + -2.2668378 + ], + [ + 33.8117452, + -2.267376 + ], + [ + 33.8092311, + -2.2684811 + ], + [ + 33.8090111, + -2.2685795 + ], + [ + 33.8080149, + -2.2690252 + ], + [ + 33.807753, + -2.2691424 + ], + [ + 33.805228, + -2.2702719 + ], + [ + 33.8041116, + -2.2707714 + ], + [ + 33.8039819, + -2.2708294 + ], + [ + 33.7995615, + -2.2728186 + ], + [ + 33.7987804, + -2.2731906 + ], + [ + 33.797379, + -2.2738132 + ], + [ + 33.7959003, + -2.2744754 + ] + ] + }, + "id": "way/169818814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169820891", + "highway": "secondary", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7990364, + -2.4408438 + ], + [ + 33.7975482, + -2.4396572 + ], + [ + 33.7953402, + -2.4379764 + ], + [ + 33.7938275, + -2.4366741 + ], + [ + 33.7937104, + -2.436559 + ], + [ + 33.7921913, + -2.4350662 + ], + [ + 33.7906067, + -2.4335258 + ], + [ + 33.789611, + -2.4326383 + ], + [ + 33.7881498, + -2.4316982 + ], + [ + 33.7869396, + -2.4308375 + ], + [ + 33.7859589, + -2.4301744 + ], + [ + 33.7846329, + -2.4292778 + ], + [ + 33.7837118, + -2.4285124 + ], + [ + 33.7833433, + -2.4280698 + ], + [ + 33.7822081, + -2.4264694 + ], + [ + 33.7808831, + -2.4243684 + ], + [ + 33.780487, + -2.4237125 + ], + [ + 33.7803199, + -2.4234359 + ], + [ + 33.7796515, + -2.4224138 + ], + [ + 33.7790861, + -2.4215493 + ], + [ + 33.778743, + -2.4209989 + ], + [ + 33.7782748, + -2.4202478 + ], + [ + 33.7778286, + -2.4195319 + ], + [ + 33.7773153, + -2.4187337 + ], + [ + 33.7769931, + -2.4182443 + ], + [ + 33.7766278, + -2.4176813 + ], + [ + 33.7765905, + -2.4176238 + ], + [ + 33.7765036, + -2.4174899 + ], + [ + 33.7764618, + -2.4174263 + ], + [ + 33.7756797, + -2.4162808 + ], + [ + 33.7748721, + -2.414992 + ], + [ + 33.7744939, + -2.4144748 + ], + [ + 33.7740594, + -2.4138772 + ], + [ + 33.7736946, + -2.4135315 + ], + [ + 33.7733373, + -2.4132724 + ], + [ + 33.7731777, + -2.4131753 + ], + [ + 33.7730011, + -2.413118 + ], + [ + 33.7725547, + -2.4130357 + ], + [ + 33.771986, + -2.4129541 + ], + [ + 33.7702208, + -2.4127405 + ], + [ + 33.7699625, + -2.4127081 + ], + [ + 33.7685822, + -2.4124479 + ], + [ + 33.7681332, + -2.4123345 + ], + [ + 33.7668443, + -2.412138 + ], + [ + 33.7664875, + -2.4120978 + ], + [ + 33.7659779, + -2.4120871 + ], + [ + 33.7651893, + -2.4120603 + ], + [ + 33.7644008, + -2.4119638 + ], + [ + 33.7636578, + -2.4117869 + ], + [ + 33.7630221, + -2.4115833 + ], + [ + 33.7623301, + -2.4113153 + ], + [ + 33.7614986, + -2.410916 + ], + [ + 33.7605786, + -2.4104577 + ], + [ + 33.7599698, + -2.4101978 + ], + [ + 33.7594038, + -2.4099754 + ], + [ + 33.7588298, + -2.4097717 + ], + [ + 33.7580064, + -2.4094555 + ], + [ + 33.7573814, + -2.4092036 + ], + [ + 33.7569174, + -2.4089302 + ], + [ + 33.7563515, + -2.4085363 + ], + [ + 33.7558767, + -2.4081584 + ], + [ + 33.7550613, + -2.4075153 + ], + [ + 33.7547609, + -2.4072098 + ], + [ + 33.7543988, + -2.4068534 + ], + [ + 33.7540233, + -2.4064165 + ], + [ + 33.753503, + -2.40576 + ], + [ + 33.7527344, + -2.4048799 + ], + [ + 33.7525497, + -2.4047003 + ], + [ + 33.7524406, + -2.4045846 + ], + [ + 33.7521778, + -2.4043272 + ], + [ + 33.7519467, + -2.4041122 + ], + [ + 33.7516809, + -2.4038702 + ] + ] + }, + "id": "way/169820891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169820893", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7991603, + -2.4409435 + ], + [ + 33.7990364, + -2.4408438 + ] + ] + }, + "id": "way/169820893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169822589", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9715099, + -2.5214982 + ], + [ + 33.9715558, + -2.5218753 + ], + [ + 33.9716899, + -2.5224246 + ], + [ + 33.9718884, + -2.5230142 + ], + [ + 33.9722062, + -2.5238616 + ], + [ + 33.9723923, + -2.5243199 + ], + [ + 33.9725951, + -2.5248534 + ], + [ + 33.9728727, + -2.5255879 + ], + [ + 33.9729304, + -2.5257408 + ], + [ + 33.9737443, + -2.5279939 + ], + [ + 33.974639, + -2.5302987 + ], + [ + 33.9752452, + -2.5319037 + ], + [ + 33.9755121, + -2.5325723 + ], + [ + 33.9757009, + -2.5329745 + ], + [ + 33.9762528, + -2.5344389 + ], + [ + 33.9771568, + -2.5368376 + ], + [ + 33.977263, + -2.5371195 + ], + [ + 33.977538, + -2.5378492 + ], + [ + 33.9775759, + -2.5379545 + ], + [ + 33.9781255, + -2.5394824 + ], + [ + 33.9787361, + -2.5414497 + ], + [ + 33.979577, + -2.544442 + ], + [ + 33.9798229, + -2.545317 + ], + [ + 33.9801103, + -2.5463291 + ], + [ + 33.9802336, + -2.5469018 + ], + [ + 33.980288, + -2.5471002 + ], + [ + 33.9805379, + -2.5479808 + ], + [ + 33.9806592, + -2.5483952 + ], + [ + 33.9807451, + -2.5487274 + ], + [ + 33.9808291, + -2.5490281 + ], + [ + 33.9813268, + -2.5508476 + ], + [ + 33.9814749, + -2.551349 + ], + [ + 33.98155, + -2.551617 + ], + [ + 33.9816782, + -2.5520932 + ], + [ + 33.9817233, + -2.5525075 + ], + [ + 33.9817429, + -2.5526878 + ], + [ + 33.9817473, + -2.553352 + ] + ] + }, + "id": "way/169822589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169825205", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8485698, + -2.4924756 + ], + [ + 33.8487804, + -2.4925558 + ] + ] + }, + "id": "way/169825205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169825216", + "highway": "secondary", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9299242, + -2.5057431 + ], + [ + 33.9289263, + -2.505601 + ], + [ + 33.9277563, + -2.5054155 + ], + [ + 33.9248409, + -2.5050303 + ], + [ + 33.921403, + -2.5045984 + ], + [ + 33.9208691, + -2.5045213 + ], + [ + 33.9203799, + -2.5044507 + ], + [ + 33.9173513, + -2.5040377 + ], + [ + 33.915021, + -2.5036775 + ], + [ + 33.9108072, + -2.5030056 + ], + [ + 33.9068514, + -2.5024367 + ], + [ + 33.9062441, + -2.5023257 + ], + [ + 33.9054973, + -2.5021875 + ], + [ + 33.9048976, + -2.5020755 + ], + [ + 33.9039649, + -2.5018426 + ], + [ + 33.8965584, + -2.499813 + ], + [ + 33.8941123, + -2.4991045 + ], + [ + 33.8930198, + -2.4987889 + ], + [ + 33.8918046, + -2.4984909 + ], + [ + 33.890875, + -2.4982723 + ], + [ + 33.8900391, + -2.4981212 + ], + [ + 33.8888586, + -2.4979751 + ], + [ + 33.8884853, + -2.4979385 + ], + [ + 33.8880018, + -2.497891 + ], + [ + 33.8867073, + -2.4977841 + ], + [ + 33.8851823, + -2.4976615 + ], + [ + 33.8836136, + -2.4976343 + ], + [ + 33.8825605, + -2.4976134 + ], + [ + 33.8801268, + -2.4975743 + ], + [ + 33.8786548, + -2.4975603 + ], + [ + 33.8758224, + -2.4974933 + ], + [ + 33.8733709, + -2.4974183 + ], + [ + 33.8716409, + -2.4973727 + ], + [ + 33.8678232, + -2.4972195 + ], + [ + 33.8666312, + -2.4971745 + ], + [ + 33.8663027, + -2.4971621 + ], + [ + 33.8642534, + -2.4970848 + ], + [ + 33.8621405, + -2.497005 + ], + [ + 33.8605499, + -2.4969011 + ], + [ + 33.8599643, + -2.4968596 + ], + [ + 33.8582566, + -2.4967028 + ], + [ + 33.8575244, + -2.4965581 + ], + [ + 33.8570899, + -2.4964456 + ], + [ + 33.8567197, + -2.4963196 + ], + [ + 33.8541904, + -2.4949342 + ], + [ + 33.8537331, + -2.4946904 + ], + [ + 33.8523155, + -2.4938892 + ], + [ + 33.8520366, + -2.4937592 + ], + [ + 33.8517228, + -2.4935984 + ], + [ + 33.8515323, + -2.4935113 + ], + [ + 33.8513084, + -2.4934283 + ], + [ + 33.8511139, + -2.4933693 + ], + [ + 33.8506571, + -2.4932321 + ], + [ + 33.8497405, + -2.4929495 + ], + [ + 33.848855, + -2.4925778 + ], + [ + 33.8487804, + -2.4925558 + ] + ] + }, + "id": "way/169825216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169825220", + "highway": "secondary", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8144976, + -2.4531662 + ], + [ + 33.8171517, + -2.4550007 + ], + [ + 33.8178563, + -2.4555369 + ], + [ + 33.8198259, + -2.4569521 + ], + [ + 33.8205021, + -2.4574789 + ], + [ + 33.8215695, + -2.4583607 + ], + [ + 33.8217377, + -2.4584943 + ], + [ + 33.8228244, + -2.4593571 + ], + [ + 33.8235877, + -2.4599145 + ], + [ + 33.8237929, + -2.4600633 + ], + [ + 33.8239673, + -2.4602241 + ], + [ + 33.8241094, + -2.46035 + ], + [ + 33.8246968, + -2.4610307 + ], + [ + 33.8254398, + -2.4619954 + ], + [ + 33.8260514, + -2.4627484 + ], + [ + 33.8263839, + -2.4631905 + ], + [ + 33.8268533, + -2.4637693 + ], + [ + 33.8273066, + -2.4643562 + ], + [ + 33.8276365, + -2.4648171 + ], + [ + 33.8309589, + -2.4691419 + ], + [ + 33.8322526, + -2.4707259 + ], + [ + 33.8325745, + -2.47116 + ], + [ + 33.8327435, + -2.4713851 + ], + [ + 33.8352326, + -2.4746436 + ], + [ + 33.8377002, + -2.4777065 + ], + [ + 33.8383868, + -2.4785265 + ], + [ + 33.8394943, + -2.479849 + ], + [ + 33.8403873, + -2.4808019 + ], + [ + 33.841795, + -2.4822178 + ], + [ + 33.843162, + -2.4836689 + ], + [ + 33.8432546, + -2.4837682 + ], + [ + 33.8439557, + -2.4845107 + ], + [ + 33.8440568, + -2.4846187 + ], + [ + 33.8451833, + -2.4857509 + ], + [ + 33.8453159, + -2.4858868 + ], + [ + 33.8459014, + -2.4865355 + ], + [ + 33.8463262, + -2.4870305 + ], + [ + 33.8464079, + -2.487135 + ], + [ + 33.8464938, + -2.4872972 + ], + [ + 33.8467982, + -2.4879095 + ], + [ + 33.8469055, + -2.4881734 + ], + [ + 33.8469994, + -2.4884709 + ], + [ + 33.8470799, + -2.4888259 + ], + [ + 33.8472274, + -2.4899755 + ], + [ + 33.8473521, + -2.490896 + ], + [ + 33.84745, + -2.4912899 + ], + [ + 33.8475037, + -2.4914145 + ], + [ + 33.8475654, + -2.4915391 + ], + [ + 33.84767, + -2.4917025 + ], + [ + 33.8478617, + -2.4919906 + ], + [ + 33.8479784, + -2.4921085 + ], + [ + 33.8481313, + -2.4922063 + ], + [ + 33.8485698, + -2.4924756 + ] + ] + }, + "id": "way/169825220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169827378", + "highway": "secondary", + "name": "Ngulyati road", + "ref": "R365", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9424364, + -2.7836595 + ], + [ + 33.942944, + -2.7838636 + ], + [ + 33.9431177, + -2.7839528 + ], + [ + 33.94363, + -2.7842836 + ], + [ + 33.9439117, + -2.7844859 + ], + [ + 33.9441557, + -2.784644 + ], + [ + 33.9459367, + -2.7855977 + ], + [ + 33.9480449, + -2.7866586 + ], + [ + 33.9502792, + -2.7877892 + ], + [ + 33.9506252, + -2.7879527 + ], + [ + 33.9516793, + -2.7885072 + ], + [ + 33.9524706, + -2.7889305 + ], + [ + 33.9531729, + -2.7892647 + ], + [ + 33.9532672, + -2.7893095 + ], + [ + 33.953589, + -2.7894797 + ], + [ + 33.953889, + -2.7896166 + ], + [ + 33.954493, + -2.7898922 + ], + [ + 33.9547222, + -2.7899991 + ], + [ + 33.9547746, + -2.7900235 + ], + [ + 33.9548373, + -2.7900461 + ], + [ + 33.9551313, + -2.7901521 + ], + [ + 33.9558835, + -2.7904206 + ], + [ + 33.956265, + -2.7905568 + ], + [ + 33.9563133, + -2.7905715 + ], + [ + 33.9564108, + -2.7906012 + ], + [ + 33.9568902, + -2.7907817 + ], + [ + 33.9572334, + -2.7909109 + ], + [ + 33.9579849, + -2.7911945 + ], + [ + 33.9587686, + -2.7915608 + ], + [ + 33.9588529, + -2.7916001 + ], + [ + 33.9591486, + -2.79173 + ], + [ + 33.9598692, + -2.7920465 + ], + [ + 33.9602547, + -2.7922019 + ], + [ + 33.9604461, + -2.792289 + ], + [ + 33.9606634, + -2.7923851 + ], + [ + 33.9609171, + -2.7924987 + ], + [ + 33.9610397, + -2.7925509 + ], + [ + 33.961468, + -2.7927437 + ], + [ + 33.9620058, + -2.7929731 + ], + [ + 33.9626546, + -2.7932622 + ], + [ + 33.9631849, + -2.7934999 + ], + [ + 33.963226, + -2.7935188 + ], + [ + 33.963544, + -2.7936647 + ], + [ + 33.9637579, + -2.7937628 + ], + [ + 33.9645923, + -2.7941112 + ], + [ + 33.9648852, + -2.7942229 + ], + [ + 33.9653289, + -2.7944362 + ], + [ + 33.9654453, + -2.7944869 + ], + [ + 33.965853, + -2.7946708 + ], + [ + 33.9663648, + -2.7948833 + ], + [ + 33.9665758, + -2.7949733 + ], + [ + 33.9668889, + -2.7951067 + ], + [ + 33.9670182, + -2.7951647 + ], + [ + 33.9674455, + -2.7953623 + ], + [ + 33.9674867, + -2.7953817 + ], + [ + 33.9683042, + -2.7957632 + ], + [ + 33.9690547, + -2.7961504 + ], + [ + 33.9694329, + -2.7963514 + ], + [ + 33.9695015, + -2.7963794 + ], + [ + 33.9697666, + -2.7964877 + ], + [ + 33.9697869, + -2.796496 + ], + [ + 33.9701128, + -2.7966367 + ], + [ + 33.9705245, + -2.7968122 + ], + [ + 33.9718656, + -2.7973319 + ], + [ + 33.9718712, + -2.797334 + ], + [ + 33.9721076, + -2.7974213 + ], + [ + 33.9721848, + -2.7974498 + ], + [ + 33.9725094, + -2.797565 + ], + [ + 33.9727612, + -2.7976599 + ], + [ + 33.9731504, + -2.7978065 + ], + [ + 33.9741494, + -2.7981828 + ], + [ + 33.9742379, + -2.7982163 + ], + [ + 33.9753029, + -2.7986231 + ], + [ + 33.9756503, + -2.7987786 + ], + [ + 33.9760221, + -2.7989567 + ], + [ + 33.9773052, + -2.7994805 + ], + [ + 33.9777948, + -2.7996536 + ], + [ + 33.9778657, + -2.7996787 + ], + [ + 33.9784022, + -2.7998502 + ], + [ + 33.9791258, + -2.8000775 + ], + [ + 33.9798382, + -2.8003239 + ], + [ + 33.9800715, + -2.8003844 + ], + [ + 33.980391, + -2.8004864 + ], + [ + 33.9808698, + -2.8006458 + ], + [ + 33.9812775, + -2.8007824 + ], + [ + 33.981649, + -2.800915 + ], + [ + 33.9819226, + -2.8010222 + ], + [ + 33.9820607, + -2.8010939 + ], + [ + 33.9822377, + -2.8012004 + ], + [ + 33.9824416, + -2.801337 + ], + [ + 33.9828722, + -2.8016388 + ], + [ + 33.9834641, + -2.8019942 + ], + [ + 33.9839476, + -2.8023148 + ], + [ + 33.9844161, + -2.8026342 + ], + [ + 33.9844914, + -2.8026836 + ], + [ + 33.9849696, + -2.8029819 + ], + [ + 33.9852123, + -2.8031333 + ], + [ + 33.9854767, + -2.80332 + ], + [ + 33.9855705, + -2.8033813 + ], + [ + 33.9858819, + -2.8035917 + ] + ] + }, + "id": "way/169827378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169827379", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9087217, + -2.7466533 + ], + [ + 33.9088272, + -2.7467081 + ] + ] + }, + "id": "way/169827379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169836779", + "highway": "secondary", + "ref": "R365", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8830766, + -2.7309539 + ], + [ + 33.884266, + -2.7317358 + ], + [ + 33.8857168, + -2.7327113 + ], + [ + 33.8868543, + -2.7334853 + ], + [ + 33.8875812, + -2.7339488 + ], + [ + 33.888292, + -2.7344123 + ], + [ + 33.8890082, + -2.734857 + ], + [ + 33.8893649, + -2.7350847 + ], + [ + 33.8898477, + -2.7353366 + ], + [ + 33.8911566, + -2.7359528 + ], + [ + 33.8912706, + -2.7360024 + ], + [ + 33.8924632, + -2.7365038 + ], + [ + 33.89251, + -2.7365235 + ], + [ + 33.8940319, + -2.7372462 + ], + [ + 33.8943833, + -2.7374504 + ], + [ + 33.8946743, + -2.7376353 + ], + [ + 33.894956, + -2.7378322 + ], + [ + 33.8952202, + -2.7380573 + ], + [ + 33.8955326, + -2.7383694 + ], + [ + 33.895821, + -2.7387177 + ], + [ + 33.8960275, + -2.7389695 + ], + [ + 33.8960664, + -2.7390271 + ], + [ + 33.897518, + -2.7409107 + ], + [ + 33.8977213, + -2.7411664 + ], + [ + 33.897834, + -2.7413097 + ], + [ + 33.8979815, + -2.7414718 + ], + [ + 33.8981532, + -2.7416044 + ], + [ + 33.8983235, + -2.7417116 + ], + [ + 33.8987526, + -2.741942 + ], + [ + 33.8991147, + -2.7421255 + ], + [ + 33.900378, + -2.7427391 + ], + [ + 33.9009225, + -2.7429963 + ], + [ + 33.9011733, + -2.7431235 + ], + [ + 33.9012793, + -2.7431691 + ], + [ + 33.9020236, + -2.7435254 + ], + [ + 33.9024273, + -2.7437277 + ], + [ + 33.9039132, + -2.7444202 + ], + [ + 33.9044255, + -2.7446654 + ], + [ + 33.9065128, + -2.745592 + ], + [ + 33.9073983, + -2.7460113 + ], + [ + 33.9087217, + -2.7466533 + ] + ] + }, + "id": "way/169836779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169836781", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.882992, + -2.7308972 + ], + [ + 33.8830766, + -2.7309539 + ] + ] + }, + "id": "way/169836781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169923995", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8788884, + -3.0803324 + ], + [ + 33.8786319, + -3.0807761 + ] + ] + }, + "id": "way/169923995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169924488", + "highway": "secondary", + "ref": "R362", + "source": "bing, Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9583532, + -2.9141221 + ], + [ + 33.9579999, + -2.9140988 + ], + [ + 33.9578135, + -2.9140787 + ], + [ + 33.9576378, + -2.9140198 + ], + [ + 33.9574125, + -2.9139167 + ], + [ + 33.9572141, + -2.9138028 + ], + [ + 33.9569163, + -2.9136073 + ], + [ + 33.9561747, + -2.9130608 + ], + [ + 33.9557268, + -2.9126912 + ], + [ + 33.9554183, + -2.9124541 + ], + [ + 33.954957, + -2.9121112 + ], + [ + 33.9545922, + -2.9118795 + ], + [ + 33.9544836, + -2.9118313 + ], + [ + 33.9543548, + -2.9118179 + ], + [ + 33.9536467, + -2.9118688 + ], + [ + 33.9535193, + -2.9118634 + ], + [ + 33.9534496, + -2.911838 + ], + [ + 33.9533395, + -2.9117187 + ], + [ + 33.9532511, + -2.9116605 + ], + [ + 33.9531525, + -2.911617 + ], + [ + 33.9530734, + -2.9115955 + ], + [ + 33.9529815, + -2.9115888 + ], + [ + 33.9528488, + -2.9116022 + ], + [ + 33.9526704, + -2.9116451 + ], + [ + 33.9523458, + -2.9117362 + ], + [ + 33.9516807, + -2.9119478 + ], + [ + 33.9512703, + -2.912063 + ], + [ + 33.950408, + -2.9124126 + ], + [ + 33.9498997, + -2.9126403 + ], + [ + 33.9489515, + -2.9129885 + ], + [ + 33.9485291, + -2.9131639 + ], + [ + 33.9480503, + -2.913318 + ], + [ + 33.9476949, + -2.913405 + ], + [ + 33.9472805, + -2.9134841 + ], + [ + 33.9468272, + -2.9135376 + ], + [ + 33.9464664, + -2.9135979 + ], + [ + 33.9462425, + -2.9136716 + ], + [ + 33.9457235, + -2.913843 + ], + [ + 33.9454754, + -2.9138899 + ], + [ + 33.9452837, + -2.9138825 + ], + [ + 33.9450476, + -2.9137894 + ], + [ + 33.9449255, + -2.9137158 + ], + [ + 33.9435021, + -2.9125612 + ], + [ + 33.9423171, + -2.9117322 + ], + [ + 33.9417954, + -2.9113705 + ], + [ + 33.9406742, + -2.9105562 + ], + [ + 33.9402518, + -2.9102709 + ], + [ + 33.940064, + -2.9101343 + ], + [ + 33.9398441, + -2.909987 + ], + [ + 33.939651, + -2.909857 + ], + [ + 33.9393666, + -2.9096508 + ], + [ + 33.9384131, + -2.9089717 + ], + [ + 33.9383259, + -2.9089074 + ], + [ + 33.9382629, + -2.9088646 + ], + [ + 33.937697, + -2.9084601 + ], + [ + 33.9375508, + -2.9083248 + ], + [ + 33.9375052, + -2.9082203 + ], + [ + 33.937469, + -2.9081239 + ], + [ + 33.9374274, + -2.9079417 + ], + [ + 33.937296, + -2.9074113 + ], + [ + 33.9372477, + -2.9071836 + ], + [ + 33.937237, + -2.9069613 + ], + [ + 33.937186, + -2.9058014 + ], + [ + 33.9371458, + -2.90563 + ], + [ + 33.9370921, + -2.9054933 + ], + [ + 33.9369215, + -2.9051927 + ], + [ + 33.9364377, + -2.9046093 + ], + [ + 33.9362392, + -2.9044245 + ], + [ + 33.9360622, + -2.9043281 + ], + [ + 33.9358261, + -2.9042424 + ], + [ + 33.9349169, + -2.9041004 + ], + [ + 33.9342463, + -2.9040656 + ], + [ + 33.9330366, + -2.9039986 + ], + [ + 33.9319691, + -2.9039638 + ], + [ + 33.9307434, + -2.9038953 + ], + [ + 33.9282837, + -2.9038004 + ], + [ + 33.9268997, + -2.9037763 + ], + [ + 33.9265081, + -2.9037923 + ], + [ + 33.9261031, + -2.9038405 + ], + [ + 33.9238822, + -2.9041968 + ], + [ + 33.9230856, + -2.9044299 + ], + [ + 33.9214817, + -2.9049844 + ], + [ + 33.9211008, + -2.9051531 + ], + [ + 33.9207977, + -2.9053407 + ], + [ + 33.9192635, + -2.9064711 + ], + [ + 33.9185527, + -2.9071006 + ], + [ + 33.9173752, + -2.9082203 + ], + [ + 33.9168629, + -2.9087587 + ], + [ + 33.916136, + -2.9095517 + ], + [ + 33.9159483, + -2.9097338 + ], + [ + 33.9143483, + -2.9113812 + ], + [ + 33.9142929, + -2.9114367 + ], + [ + 33.9138763, + -2.911854 + ], + [ + 33.9134337, + -2.9122853 + ], + [ + 33.9123192, + -2.913405 + ], + [ + 33.9120296, + -2.9137573 + ], + [ + 33.9117882, + -2.9141095 + ], + [ + 33.9114153, + -2.9146078 + ], + [ + 33.9110881, + -2.9149627 + ], + [ + 33.9108212, + -2.9151676 + ], + [ + 33.9105999, + -2.9152627 + ], + [ + 33.91038, + -2.9153377 + ], + [ + 33.9095056, + -2.9154476 + ], + [ + 33.9071989, + -2.9156726 + ], + [ + 33.9066195, + -2.9157369 + ], + [ + 33.9062306, + -2.9158306 + ], + [ + 33.9058444, + -2.9159672 + ], + [ + 33.9053321, + -2.9161387 + ], + [ + 33.9044523, + -2.9164548 + ], + [ + 33.9028376, + -2.9170629 + ], + [ + 33.9024782, + -2.9172504 + ], + [ + 33.9022075, + -2.91745 + ], + [ + 33.9020035, + -2.9177031 + ], + [ + 33.9017057, + -2.9180647 + ], + [ + 33.9014778, + -2.9184156 + ], + [ + 33.9010424, + -2.9192124 + ], + [ + 33.9005182, + -2.9204439 + ], + [ + 33.8999912, + -2.9216822 + ], + [ + 33.8997745, + -2.922289 + ], + [ + 33.8995922, + -2.9230096 + ], + [ + 33.8994656, + -2.9236164 + ], + [ + 33.8992113, + -2.9247588 + ], + [ + 33.8989082, + -2.9258169 + ], + [ + 33.8986802, + -2.9263125 + ], + [ + 33.8984817, + -2.9266112 + ], + [ + 33.8982953, + -2.9267973 + ], + [ + 33.8980257, + -2.9269768 + ], + [ + 33.8977656, + -2.9271 + ], + [ + 33.8969046, + -2.9274563 + ], + [ + 33.895086, + -2.9281193 + ], + [ + 33.8945737, + -2.9283148 + ], + [ + 33.894158, + -2.9284849 + ], + [ + 33.8919532, + -2.9294251 + ], + [ + 33.8904297, + -2.9300439 + ], + [ + 33.8890162, + -2.9306573 + ], + [ + 33.8849446, + -2.9323583 + ], + [ + 33.8841921, + -2.9326703 + ], + [ + 33.8839173, + -2.9327842 + ], + [ + 33.8822785, + -2.9334325 + ], + [ + 33.881785, + -2.9336387 + ], + [ + 33.8814819, + -2.9337325 + ], + [ + 33.8812633, + -2.9337874 + ], + [ + 33.8808891, + -2.9338664 + ], + [ + 33.8805713, + -2.9339213 + ], + [ + 33.8804184, + -2.9339428 + ], + [ + 33.8797411, + -2.9340968 + ], + [ + 33.8791001, + -2.9342361 + ], + [ + 33.8786146, + -2.9343138 + ], + [ + 33.8772038, + -2.9345173 + ], + [ + 33.875404, + -2.9347397 + ], + [ + 33.8738292, + -2.9349193 + ], + [ + 33.8725876, + -2.9350991 + ], + [ + 33.8724209, + -2.9351233 + ], + [ + 33.8717132, + -2.9352258 + ], + [ + 33.8716593, + -2.9352336 + ], + [ + 33.870576, + -2.9353933 + ], + [ + 33.8700476, + -2.9355192 + ], + [ + 33.8696641, + -2.9356692 + ], + [ + 33.869251, + -2.9358513 + ], + [ + 33.8689184, + -2.9360067 + ], + [ + 33.8683015, + -2.936371 + ], + [ + 33.8665012, + -2.937293 + ], + [ + 33.8652357, + -2.938005 + ], + [ + 33.8642246, + -2.9385139 + ], + [ + 33.8627614, + -2.9392345 + ], + [ + 33.8625669, + -2.9393577 + ], + [ + 33.8621029, + -2.9396725 + ], + [ + 33.8619715, + -2.9397341 + ], + [ + 33.8618401, + -2.9397689 + ], + [ + 33.8614297, + -2.9398305 + ], + [ + 33.8612379, + -2.9398613 + ], + [ + 33.8610435, + -2.9399229 + ], + [ + 33.8602334, + -2.9401908 + ], + [ + 33.8600001, + -2.9403033 + ], + [ + 33.8598257, + -2.9404104 + ], + [ + 33.8590774, + -2.9408739 + ], + [ + 33.8584149, + -2.9412141 + ], + [ + 33.85827, + -2.9413212 + ], + [ + 33.8580152, + -2.9415462 + ], + [ + 33.8577899, + -2.9417016 + ], + [ + 33.8575512, + -2.9418168 + ], + [ + 33.8571596, + -2.9419828 + ], + [ + 33.8568163, + -2.9421409 + ], + [ + 33.8564019, + -2.9423043 + ], + [ + 33.8560505, + -2.9424315 + ], + [ + 33.8557367, + -2.9425387 + ], + [ + 33.8554229, + -2.9426753 + ], + [ + 33.8523807, + -2.9442024 + ], + [ + 33.8462819, + -2.9476187 + ], + [ + 33.845325, + -2.9481547 + ], + [ + 33.8450569, + -2.9483177 + ], + [ + 33.8374979, + -2.9522794 + ], + [ + 33.8356544, + -2.9532177 + ], + [ + 33.8333258, + -2.9544576 + ], + [ + 33.8317376, + -2.9552717 + ], + [ + 33.8289026, + -2.9568145 + ], + [ + 33.8288174, + -2.9568583 + ], + [ + 33.8284961, + -2.9570294 + ], + [ + 33.8268233, + -2.957897 + ], + [ + 33.8215921, + -2.96061 + ], + [ + 33.8210174, + -2.9609081 + ], + [ + 33.818411, + -2.9622598 + ], + [ + 33.8182958, + -2.9623196 + ], + [ + 33.8159399, + -2.9635414 + ], + [ + 33.8153478, + -2.9638485 + ], + [ + 33.8151987, + -2.9639254 + ], + [ + 33.8148565, + -2.9640671 + ], + [ + 33.813502, + -2.9645014 + ], + [ + 33.8109485, + -2.9651772 + ], + [ + 33.8102475, + -2.9653571 + ], + [ + 33.809631, + -2.9655058 + ], + [ + 33.8095543, + -2.9653034 + ], + [ + 33.8092261, + -2.9642852 + ], + [ + 33.8089216, + -2.9630464 + ], + [ + 33.8088356, + -2.9627139 + ], + [ + 33.8085285, + -2.9616642 + ], + [ + 33.8084292, + -2.9613897 + ], + [ + 33.8083649, + -2.9612557 + ], + [ + 33.8081396, + -2.9609139 + ], + [ + 33.8081079, + -2.9608691 + ], + [ + 33.807797, + -2.9605334 + ], + [ + 33.8066577, + -2.9590337 + ], + [ + 33.8061254, + -2.9584458 + ], + [ + 33.8057875, + -2.9581437 + ], + [ + 33.8046029, + -2.9573217 + ], + [ + 33.8034218, + -2.9566029 + ], + [ + 33.8020284, + -2.9555034 + ], + [ + 33.8016837, + -2.9552315 + ], + [ + 33.799067, + -2.9529707 + ], + [ + 33.7981483, + -2.9522394 + ], + [ + 33.7975153, + -2.9517787 + ], + [ + 33.797113, + -2.9515349 + ], + [ + 33.7959731, + -2.9508947 + ], + [ + 33.7955841, + -2.9506938 + ], + [ + 33.7952274, + -2.9504796 + ], + [ + 33.7948546, + -2.9501876 + ], + [ + 33.7943101, + -2.9496572 + ], + [ + 33.7940875, + -2.9494349 + ], + [ + 33.793889, + -2.9492072 + ], + [ + 33.7936529, + -2.9492902 + ], + [ + 33.7934089, + -2.9493545 + ], + [ + 33.7928083, + -2.949481 + ], + [ + 33.7911024, + -2.9496631 + ], + [ + 33.789131, + -2.9497349 + ], + [ + 33.7876555, + -2.9497376 + ], + [ + 33.7873256, + -2.949834 + ], + [ + 33.7870628, + -2.9499813 + ], + [ + 33.7868321, + -2.9502144 + ], + [ + 33.7864246, + -2.9507346 + ], + [ + 33.7860757, + -2.9510367 + ], + [ + 33.7856655, + -2.9512725 + ], + [ + 33.7849011, + -2.9516239 + ], + [ + 33.784056, + -2.9518778 + ], + [ + 33.7832153, + -2.9521028 + ], + [ + 33.7826103, + -2.9522622 + ], + [ + 33.782035, + -2.9523653 + ], + [ + 33.7812118, + -2.9524864 + ], + [ + 33.7810748, + -2.9525026 + ], + [ + 33.7806711, + -2.9525502 + ], + [ + 33.7802783, + -2.9526506 + ], + [ + 33.7799992, + -2.9528033 + ], + [ + 33.7797727, + -2.9530275 + ], + [ + 33.7793235, + -2.9534936 + ], + [ + 33.7791073, + -2.9536779 + ], + [ + 33.7788098, + -2.9538279 + ], + [ + 33.7781071, + -2.9540301 + ], + [ + 33.777903, + -2.9541067 + ], + [ + 33.7777716, + -2.954156 + ], + [ + 33.7772459, + -2.9543797 + ], + [ + 33.7770543, + -2.9544359 + ], + [ + 33.7768422, + -2.954448 + ], + [ + 33.7761357, + -2.9543882 + ], + [ + 33.7756245, + -2.9544212 + ], + [ + 33.7749662, + -2.9545324 + ], + [ + 33.7747501, + -2.9545725 + ], + [ + 33.7743705, + -2.9546931 + ], + [ + 33.7741468, + -2.9547198 + ], + [ + 33.7734213, + -2.9547418 + ], + [ + 33.7729946, + -2.9547681 + ], + [ + 33.77263, + -2.9547493 + ], + [ + 33.7716483, + -2.9546114 + ], + [ + 33.7706666, + -2.9545377 + ], + [ + 33.7701837, + -2.954506 + ], + [ + 33.7699992, + -2.9545115 + ], + [ + 33.7699263, + -2.9545136 + ], + [ + 33.7691619, + -2.9544311 + ], + [ + 33.7689177, + -2.9544106 + ], + [ + 33.7686039, + -2.9543842 + ], + [ + 33.7671234, + -2.9542597 + ], + [ + 33.7663791, + -2.9541739 + ], + [ + 33.7660774, + -2.9540453 + ], + [ + 33.7653559, + -2.9536886 + ], + [ + 33.7647276, + -2.9533572 + ], + [ + 33.764401, + -2.953185 + ], + [ + 33.7640409, + -2.9530716 + ], + [ + 33.7638041, + -2.9530369 + ], + [ + 33.7633202, + -2.9530501 + ], + [ + 33.7624669, + -2.9531689 + ], + [ + 33.7620474, + -2.9532016 + ], + [ + 33.7616951, + -2.9531636 + ], + [ + 33.7613746, + -2.9530795 + ], + [ + 33.7610665, + -2.952946 + ], + [ + 33.7606782, + -2.9526833 + ], + [ + 33.7601068, + -2.9523525 + ], + [ + 33.7588435, + -2.9517707 + ], + [ + 33.7578253, + -2.9514875 + ], + [ + 33.7576606, + -2.9514417 + ], + [ + 33.7568256, + -2.9512265 + ], + [ + 33.7561934, + -2.9510635 + ], + [ + 33.7560162, + -2.9509965 + ], + [ + 33.7556353, + -2.9507822 + ], + [ + 33.7551874, + -2.9504849 + ], + [ + 33.754895, + -2.9502278 + ], + [ + 33.7540743, + -2.9495876 + ], + [ + 33.753401, + -2.9490733 + ], + [ + 33.7528434, + -2.9485595 + ], + [ + 33.752623, + -2.9483395 + ], + [ + 33.7521674, + -2.9478845 + ], + [ + 33.7514576, + -2.9471144 + ], + [ + 33.7513932, + -2.947055 + ], + [ + 33.7511144, + -2.9468206 + ], + [ + 33.7504211, + -2.9463464 + ], + [ + 33.7501234, + -2.9461455 + ], + [ + 33.7497903, + -2.9459885 + ], + [ + 33.7494272, + -2.9458227 + ], + [ + 33.7488602, + -2.945635 + ], + [ + 33.748694, + -2.9455669 + ], + [ + 33.7483781, + -2.9454366 + ], + [ + 33.7476155, + -2.9451396 + ], + [ + 33.7473339, + -2.944995 + ], + [ + 33.7467599, + -2.9446936 + ], + [ + 33.7462462, + -2.9444874 + ], + [ + 33.7455734, + -2.9442202 + ], + [ + 33.7454963, + -2.9441992 + ], + [ + 33.7444063, + -2.9438994 + ], + [ + 33.7441581, + -2.9438512 + ], + [ + 33.7435302, + -2.9438464 + ], + [ + 33.7429927, + -2.9439356 + ], + [ + 33.7420821, + -2.9441485 + ], + [ + 33.7416331, + -2.944288 + ], + [ + 33.7412775, + -2.9444673 + ], + [ + 33.7407652, + -2.9447767 + ], + [ + 33.7403682, + -2.9449856 + ], + [ + 33.7396281, + -2.9452562 + ], + [ + 33.7388483, + -2.9455403 + ], + [ + 33.738525, + -2.9456826 + ], + [ + 33.738154, + -2.9458535 + ], + [ + 33.7378724, + -2.9460437 + ], + [ + 33.737348, + -2.946416 + ], + [ + 33.7369055, + -2.9467468 + ], + [ + 33.7366305, + -2.9469357 + ], + [ + 33.7363596, + -2.9470616 + ], + [ + 33.7360771, + -2.9471682 + ], + [ + 33.7354463, + -2.9473911 + ], + [ + 33.734812, + -2.9476348 + ], + [ + 33.7341481, + -2.9478357 + ], + [ + 33.7335996, + -2.9479763 + ], + [ + 33.7333113, + -2.9480246 + ], + [ + 33.7331504, + -2.9480326 + ], + [ + 33.7330283, + -2.9480205 + ], + [ + 33.7326501, + -2.9479174 + ], + [ + 33.7320386, + -2.9477661 + ], + [ + 33.7311995, + -2.9475883 + ], + [ + 33.7307096, + -2.9474741 + ], + [ + 33.7300532, + -2.9473322 + ], + [ + 33.7293524, + -2.9471821 + ], + [ + 33.7289956, + -2.9470991 + ], + [ + 33.7287971, + -2.9470777 + ], + [ + 33.7285611, + -2.9470884 + ], + [ + 33.7281346, + -2.9472009 + ], + [ + 33.7274238, + -2.9474795 + ], + [ + 33.7268257, + -2.9478116 + ], + [ + 33.7265494, + -2.9480179 + ], + [ + 33.7263431, + -2.9482134 + ], + [ + 33.725509, + -2.9490384 + ], + [ + 33.7245083, + -2.9500108 + ], + [ + 33.7243769, + -2.950134 + ], + [ + 33.7242132, + -2.9502224 + ], + [ + 33.7238397, + -2.9503342 + ], + [ + 33.723599, + -2.9503965 + ], + [ + 33.7233091, + -2.9504584 + ], + [ + 33.7223974, + -2.9505894 + ], + [ + 33.7213513, + -2.9507715 + ], + [ + 33.7210295, + -2.9508063 + ], + [ + 33.7208256, + -2.9507956 + ], + [ + 33.7206003, + -2.950734 + ], + [ + 33.7199914, + -2.9505171 + ], + [ + 33.7194845, + -2.9503992 + ], + [ + 33.717615, + -2.9500376 + ], + [ + 33.71732, + -2.9499331 + ], + [ + 33.7170383, + -2.9497885 + ], + [ + 33.7164295, + -2.9494376 + ], + [ + 33.7160996, + -2.9493626 + ], + [ + 33.7157589, + -2.9493599 + ], + [ + 33.7148826, + -2.9494866 + ], + [ + 33.7140477, + -2.9497108 + ], + [ + 33.7136292, + -2.9499653 + ], + [ + 33.7132484, + -2.9502412 + ], + [ + 33.7129775, + -2.950509 + ], + [ + 33.7127363, + -2.9507796 + ], + [ + 33.7125134, + -2.9509322 + ], + [ + 33.7118512, + -2.9512457 + ], + [ + 33.7111643, + -2.9515457 + ], + [ + 33.7109444, + -2.9516153 + ], + [ + 33.7106976, + -2.9516582 + ], + [ + 33.7095603, + -2.9517358 + ], + [ + 33.7084472, + -2.9518269 + ], + [ + 33.7082487, + -2.9518725 + ], + [ + 33.7080878, + -2.9519341 + ], + [ + 33.706999, + -2.9523739 + ], + [ + 33.7066179, + -2.952526 + ], + [ + 33.7064248, + -2.9526439 + ], + [ + 33.7062653, + -2.9527591 + ], + [ + 33.7057787, + -2.9531259 + ], + [ + 33.7055343, + -2.9532921 + ], + [ + 33.7047379, + -2.9537207 + ], + [ + 33.7030026, + -2.9547115 + ], + [ + 33.7026914, + -2.9548971 + ], + [ + 33.70077, + -2.956073 + ] + ] + }, + "id": "way/169924488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169960962", + "highway": "secondary", + "ref": "R362", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7003161, + -2.9563485 + ], + [ + 33.6999942, + -2.956548 + ], + [ + 33.6991654, + -2.9570235 + ], + [ + 33.6988892, + -2.9571641 + ], + [ + 33.6986196, + -2.9572646 + ], + [ + 33.6978603, + -2.9575265 + ], + [ + 33.6975816, + -2.9576449 + ], + [ + 33.6970934, + -2.9578391 + ], + [ + 33.6965597, + -2.9580615 + ], + [ + 33.6959441, + -2.9582972 + ], + [ + 33.6952843, + -2.9585316 + ], + [ + 33.6950093, + -2.9585945 + ], + [ + 33.6947089, + -2.9586173 + ], + [ + 33.6943455, + -2.9585891 + ], + [ + 33.6934443, + -2.9583735 + ], + [ + 33.6916534, + -2.957843 + ], + [ + 33.6875929, + -2.9567585 + ], + [ + 33.6870225, + -2.9566062 + ], + [ + 33.6841126, + -2.9557801 + ], + [ + 33.6833582, + -2.9555659 + ], + [ + 33.6829378, + -2.9554466 + ], + [ + 33.6827953, + -2.9554061 + ], + [ + 33.6792338, + -2.9545287 + ], + [ + 33.6782804, + -2.9543194 + ], + [ + 33.677866, + -2.954227 + ], + [ + 33.6775951, + -2.9542029 + ], + [ + 33.6773483, + -2.9542015 + ], + [ + 33.6771069, + -2.9542176 + ], + [ + 33.6736247, + -2.9547301 + ], + [ + 33.6729888, + -2.9548165 + ], + [ + 33.6719826, + -2.9549663 + ], + [ + 33.6708237, + -2.9551314 + ], + [ + 33.6705878, + -2.955135 + ] + ] + }, + "id": "way/169960962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169960963", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R362", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.70077, + -2.956073 + ], + [ + 33.7003161, + -2.9563485 + ] + ] + }, + "id": "way/169960963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/169967227", + "highway": "secondary", + "ref": "R369", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7143561, + -3.0113047 + ], + [ + 33.714644, + -3.0114209 + ], + [ + 33.7172176, + -3.0124716 + ], + [ + 33.7177169, + -3.0127351 + ], + [ + 33.7180361, + -3.0129306 + ], + [ + 33.7182681, + -3.0131138 + ], + [ + 33.7183982, + -3.0132922 + ], + [ + 33.7184942, + -3.0134703 + ], + [ + 33.7199002, + -3.0176421 + ], + [ + 33.7201846, + -3.0184161 + ], + [ + 33.7202463, + -3.0185849 + ], + [ + 33.7204072, + -3.0188956 + ], + [ + 33.7211631, + -3.0201584 + ], + [ + 33.7213189, + -3.0204326 + ], + [ + 33.7213596, + -3.0205043 + ], + [ + 33.721556, + -3.0210174 + ], + [ + 33.7216973, + -3.021408 + ], + [ + 33.7218483, + -3.0218384 + ], + [ + 33.7222292, + -3.0230942 + ], + [ + 33.7223974, + -3.023666 + ], + [ + 33.7224457, + -3.0239258 + ], + [ + 33.7225798, + -3.0250615 + ], + [ + 33.7227219, + -3.0258516 + ], + [ + 33.7228051, + -3.0262427 + ], + [ + 33.7228909, + -3.0265346 + ], + [ + 33.723596, + -3.0286568 + ], + [ + 33.723741, + -3.0291137 + ], + [ + 33.7237773, + -3.0292281 + ], + [ + 33.7247041, + -3.0318219 + ], + [ + 33.7249777, + -3.0325344 + ], + [ + 33.7253626, + -3.0335428 + ], + [ + 33.7254323, + -3.0337115 + ], + [ + 33.7260498, + -3.0352148 + ], + [ + 33.7264247, + -3.0361985 + ], + [ + 33.7265213, + -3.0363994 + ], + [ + 33.726638, + -3.0365333 + ], + [ + 33.726764, + -3.0366337 + ], + [ + 33.7269022, + -3.0366967 + ], + [ + 33.7270457, + -3.0367409 + ], + [ + 33.7272026, + -3.0367891 + ], + [ + 33.7275311, + -3.0368547 + ], + [ + 33.7277792, + -3.0368882 + ], + [ + 33.7283948, + -3.0369766 + ], + [ + 33.7288159, + -3.0370261 + ], + [ + 33.7293306, + -3.0370976 + ], + [ + 33.7297781, + -3.0371597 + ], + [ + 33.7300955, + -3.0371858 + ], + [ + 33.7312504, + -3.0373339 + ], + [ + 33.7313962, + -3.0373526 + ], + [ + 33.733186, + -3.037582 + ], + [ + 33.7347534, + -3.0377829 + ], + [ + 33.7354866, + -3.0378913 + ], + [ + 33.7359345, + -3.0379502 + ], + [ + 33.7362045, + -3.0379689 + ], + [ + 33.7370074, + -3.0379904 + ], + [ + 33.7371092, + -3.0379875 + ], + [ + 33.7385927, + -3.038018 + ], + [ + 33.7394688, + -3.038036 + ], + [ + 33.7400758, + -3.0380332 + ], + [ + 33.7415513, + -3.0380789 + ], + [ + 33.7418836, + -3.0381002 + ], + [ + 33.7423959, + -3.038143 + ], + [ + 33.7429672, + -3.0382636 + ], + [ + 33.7436753, + -3.0384082 + ], + [ + 33.7439516, + -3.0384618 + ], + [ + 33.7442467, + -3.0384886 + ], + [ + 33.7459874, + -3.0384243 + ], + [ + 33.7478984, + -3.0383975 + ], + [ + 33.7494287, + -3.0384644 + ], + [ + 33.7497184, + -3.0384805 + ], + [ + 33.7507671, + -3.0385984 + ], + [ + 33.7510434, + -3.0386278 + ], + [ + 33.7512955, + -3.0386868 + ], + [ + 33.7515771, + -3.0388046 + ], + [ + 33.7529826, + -3.039536 + ], + [ + 33.7532107, + -3.0396445 + ], + [ + 33.753572, + -3.0398293 + ], + [ + 33.7553698, + -3.0407652 + ], + [ + 33.7560266, + -3.0410376 + ], + [ + 33.7572688, + -3.0414911 + ], + [ + 33.7582424, + -3.0418366 + ], + [ + 33.7585536, + -3.0419625 + ], + [ + 33.7594736, + -3.0422946 + ], + [ + 33.7597954, + -3.0424285 + ], + [ + 33.7632903, + -3.043757 + ], + [ + 33.76369, + -3.0439499 + ], + [ + 33.7640655, + -3.0441749 + ], + [ + 33.7642989, + -3.0443463 + ], + [ + 33.7645215, + -3.0445686 + ], + [ + 33.7649506, + -3.0449596 + ], + [ + 33.7651572, + -3.0451016 + ], + [ + 33.7654321, + -3.0452409 + ], + [ + 33.7677091, + -3.0462676 + ], + [ + 33.7683678, + -3.0466069 + ], + [ + 33.769049, + -3.047006 + ], + [ + 33.7713466, + -3.0483086 + ], + [ + 33.7718713, + -3.048629 + ], + [ + 33.7724728, + -3.0490106 + ], + [ + 33.7732494, + -3.0494594 + ], + [ + 33.7738893, + -3.0498502 + ], + [ + 33.7740328, + -3.0499379 + ], + [ + 33.7748764, + -3.0504132 + ], + [ + 33.7756795, + -3.0508468 + ], + [ + 33.7763293, + -3.0511826 + ], + [ + 33.7764519, + -3.0512459 + ], + [ + 33.7779955, + -3.0520384 + ], + [ + 33.7782614, + -3.0521743 + ], + [ + 33.7790984, + -3.0525773 + ], + [ + 33.7797462, + -3.0528892 + ], + [ + 33.7801435, + -3.0530518 + ] + ] + }, + "id": "way/169967227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170062825", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8681969, + -2.1959714 + ], + [ + 33.8660367, + -2.1984471 + ], + [ + 33.8653139, + -2.1993882 + ], + [ + 33.8646851, + -2.2003421 + ], + [ + 33.8642056, + -2.2011523 + ], + [ + 33.864097, + -2.2013686 + ], + [ + 33.8635967, + -2.2023648 + ], + [ + 33.8634761, + -2.2026305 + ], + [ + 33.8633824, + -2.2028369 + ], + [ + 33.8631667, + -2.2033838 + ], + [ + 33.8629927, + -2.2038703 + ], + [ + 33.8628609, + -2.2042389 + ], + [ + 33.8627906, + -2.2044353 + ], + [ + 33.8625842, + -2.2051503 + ], + [ + 33.8624989, + -2.2054457 + ], + [ + 33.8622737, + -2.2064708 + ], + [ + 33.8621579, + -2.2071748 + ], + [ + 33.8621069, + -2.2075361 + ], + [ + 33.8618611, + -2.2099388 + ], + [ + 33.8615296, + -2.214 + ], + [ + 33.860937, + -2.2212598 + ], + [ + 33.8609076, + -2.2216201 + ], + [ + 33.8607953, + -2.2229961 + ], + [ + 33.8607923, + -2.2230326 + ], + [ + 33.8607114, + -2.2240245 + ], + [ + 33.8606556, + -2.2246033 + ], + [ + 33.8605726, + -2.2251486 + ], + [ + 33.860389, + -2.226097 + ], + [ + 33.8602428, + -2.2267309 + ], + [ + 33.8600377, + -2.2273993 + ], + [ + 33.8597517, + -2.2281518 + ], + [ + 33.859608, + -2.2285301 + ], + [ + 33.8595128, + -2.2287807 + ], + [ + 33.8587539, + -2.2307157 + ], + [ + 33.8584077, + -2.2315986 + ], + [ + 33.8576303, + -2.2334833 + ], + [ + 33.857368, + -2.2341194 + ], + [ + 33.8573373, + -2.2341938 + ], + [ + 33.8571649, + -2.2346345 + ], + [ + 33.8565328, + -2.2362955 + ], + [ + 33.8563442, + -2.236807 + ], + [ + 33.8559308, + -2.2378216 + ], + [ + 33.8555083, + -2.2388291 + ], + [ + 33.8551557, + -2.2396391 + ], + [ + 33.854678, + -2.240467 + ], + [ + 33.8542387, + -2.2411301 + ], + [ + 33.8537049, + -2.2417572 + ], + [ + 33.8531095, + -2.2424085 + ], + [ + 33.8526159, + -2.2429258 + ], + [ + 33.8524563, + -2.2431035 + ] + ] + }, + "id": "way/170062825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170062826", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8683189, + -2.1958298 + ], + [ + 33.8681969, + -2.1959714 + ] + ] + }, + "id": "way/170062826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170063166", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8702225, + -2.148506 + ], + [ + 33.8702247, + -2.1485888 + ] + ] + }, + "id": "way/170063166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170063167", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8702247, + -2.1485888 + ], + [ + 33.8701438, + -2.1566937 + ], + [ + 33.8701108, + -2.1584169 + ], + [ + 33.8700532, + -2.1614229 + ], + [ + 33.8696562, + -2.1700931 + ], + [ + 33.8696229, + -2.1710888 + ] + ] + }, + "id": "way/170063167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170063201", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8990148, + -2.1707206 + ], + [ + 33.893991, + -2.172093 + ], + [ + 33.8919981, + -2.1726478 + ], + [ + 33.8914805, + -2.1728273 + ], + [ + 33.8907482, + -2.1732401 + ], + [ + 33.8901716, + -2.173811 + ], + [ + 33.8899999, + -2.1740442 + ], + [ + 33.8897755, + -2.1746118 + ], + [ + 33.8895206, + -2.1749451 + ], + [ + 33.8891961, + -2.1754195 + ], + [ + 33.8890325, + -2.1759716 + ], + [ + 33.8889332, + -2.1765881 + ], + [ + 33.8889332, + -2.1772957 + ], + [ + 33.8888688, + -2.1775584 + ], + [ + 33.8887225, + -2.1779043 + ], + [ + 33.8883244, + -2.1785313 + ], + [ + 33.8878979, + -2.1794185 + ], + [ + 33.8868921, + -2.1814957 + ], + [ + 33.8864267, + -2.1824914 + ], + [ + 33.886125, + -2.1830761 + ], + [ + 33.8860699, + -2.1831569 + ], + [ + 33.8854966, + -2.1839964 + ], + [ + 33.8851493, + -2.1844936 + ], + [ + 33.8847342, + -2.1849371 + ], + [ + 33.8843721, + -2.1852816 + ], + [ + 33.8839979, + -2.1855858 + ], + [ + 33.8835567, + -2.1859047 + ], + [ + 33.8831531, + -2.1860133 + ], + [ + 33.8828486, + -2.1861044 + ], + [ + 33.8826957, + -2.1862076 + ], + [ + 33.882516, + -2.1863751 + ], + [ + 33.8822277, + -2.1866257 + ], + [ + 33.8819125, + -2.186753 + ], + [ + 33.8816886, + -2.1868911 + ], + [ + 33.8814177, + -2.1871269 + ], + [ + 33.8810871, + -2.1875008 + ], + [ + 33.8806405, + -2.1880194 + ], + [ + 33.8804206, + -2.1881937 + ], + [ + 33.8802379, + -2.188291 + ], + [ + 33.880096, + -2.1883665 + ], + [ + 33.879815, + -2.1885099 + ], + [ + 33.8794583, + -2.1887404 + ], + [ + 33.8788977, + -2.1892189 + ], + [ + 33.8785826, + -2.1895257 + ], + [ + 33.8780099, + -2.1902274 + ], + [ + 33.8777977, + -2.1904254 + ], + [ + 33.8770683, + -2.190907 + ], + [ + 33.876416, + -2.1912558 + ], + [ + 33.875321, + -2.1918026 + ], + [ + 33.8746907, + -2.1921028 + ], + [ + 33.8741308, + -2.1924418 + ], + [ + 33.8738031, + -2.1926417 + ], + [ + 33.8737485, + -2.192661 + ], + [ + 33.8736883, + -2.1926823 + ], + [ + 33.8735464, + -2.1927324 + ], + [ + 33.8733974, + -2.1927631 + ], + [ + 33.8733777, + -2.1927654 + ], + [ + 33.8731825, + -2.1927883 + ], + [ + 33.8729167, + -2.1928136 + ], + [ + 33.872576, + -2.1928132 + ], + [ + 33.8721515, + -2.192798 + ], + [ + 33.8714987, + -2.1926995 + ], + [ + 33.8709373, + -2.1925755 + ], + [ + 33.8705739, + -2.1924778 + ], + [ + 33.870386, + -2.1924429 + ] + ] + }, + "id": "way/170063201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170063202", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "Yahoo, Landsat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.899171, + -2.1706563 + ], + [ + 33.8990148, + -2.1707206 + ] + ] + }, + "id": "way/170063202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170063284", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "Yahoo, Landsat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9116333, + -2.1657219 + ], + [ + 33.9115608, + -2.165758 + ] + ] + }, + "id": "way/170063284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170063289", + "highway": "secondary", + "source": "Yahoo, Landsat", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9115608, + -2.165758 + ], + [ + 33.9104457, + -2.1662888 + ], + [ + 33.9093111, + -2.1669776 + ], + [ + 33.908131, + -2.1675914 + ], + [ + 33.9072512, + -2.1679318 + ], + [ + 33.906063, + -2.1683258 + ], + [ + 33.9038609, + -2.1690924 + ], + [ + 33.90153, + -2.1698321 + ], + [ + 33.9005939, + -2.1701203 + ], + [ + 33.8994822, + -2.1705236 + ], + [ + 33.899171, + -2.1706563 + ] + ] + }, + "id": "way/170063289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170072104", + "highway": "secondary", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.6729471, + -2.1007896 + ], + [ + 33.6770822, + -2.0975275 + ], + [ + 33.6782673, + -2.0966014 + ], + [ + 33.6800914, + -2.0951765 + ], + [ + 33.6803548, + -2.0949726 + ], + [ + 33.680525, + -2.0948391 + ], + [ + 33.6808844, + -2.0945569 + ], + [ + 33.6811656, + -2.0943361 + ], + [ + 33.6814323, + -2.0941343 + ], + [ + 33.6815279, + -2.0940619 + ], + [ + 33.6821635, + -2.0935808 + ], + [ + 33.6826607, + -2.0932044 + ], + [ + 33.6831565, + -2.0928291 + ], + [ + 33.6840201, + -2.0921755 + ], + [ + 33.6842335, + -2.0920458 + ], + [ + 33.6846371, + -2.0918004 + ], + [ + 33.6846791, + -2.0917747 + ], + [ + 33.6851196, + -2.0915043 + ], + [ + 33.6861161, + -2.0908929 + ], + [ + 33.686414, + -2.0907102 + ], + [ + 33.6870885, + -2.0903134 + ], + [ + 33.6871616, + -2.0902704 + ], + [ + 33.6872758, + -2.0902032 + ], + [ + 33.6887576, + -2.0893367 + ], + [ + 33.6891409, + -2.0891036 + ], + [ + 33.6907152, + -2.0881796 + ], + [ + 33.691253, + -2.0878632 + ], + [ + 33.6918656, + -2.0874839 + ], + [ + 33.6920386, + -2.0873667 + ], + [ + 33.6921807, + -2.0872743 + ], + [ + 33.6932603, + -2.0865407 + ], + [ + 33.6935159, + -2.0863532 + ], + [ + 33.693971, + -2.0860092 + ], + [ + 33.6947264, + -2.0854382 + ], + [ + 33.6952681, + -2.0850247 + ], + [ + 33.6959033, + -2.0845398 + ], + [ + 33.6964631, + -2.0841124 + ], + [ + 33.6976762, + -2.083276 + ], + [ + 33.699016, + -2.0822362 + ], + [ + 33.6990759, + -2.0821927 + ], + [ + 33.7003517, + -2.0813055 + ], + [ + 33.7011164, + -2.0807121 + ], + [ + 33.7015307, + -2.0804013 + ], + [ + 33.7027489, + -2.0794874 + ], + [ + 33.7035051, + -2.0789944 + ], + [ + 33.7037464, + -2.0788632 + ], + [ + 33.7047238, + -2.0784109 + ], + [ + 33.7053906, + -2.0782333 + ], + [ + 33.7060443, + -2.0780947 + ], + [ + 33.7075634, + -2.0778727 + ], + [ + 33.7127818, + -2.0771373 + ] + ] + }, + "id": "way/170072104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170085213", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "old_ref": "B144", + "source": "survey", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.846138, + -2.3170032 + ], + [ + 34.8460152, + -2.3187656 + ], + [ + 34.8461472, + -2.3214549 + ] + ] + }, + "id": "way/170085213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170085214", + "bridge": "yes", + "highway": "secondary", + "lanes": "1", + "layer": "1", + "maxspeed": "50", + "old_ref": "B144", + "source": "survey", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8461386, + -2.3169019 + ], + [ + 34.846138, + -2.3170032 + ] + ] + }, + "id": "way/170085214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170211597", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9817473, + -2.553352 + ], + [ + 33.9817478, + -2.5538263 + ] + ] + }, + "id": "way/170211597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/170211599", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9817478, + -2.5538263 + ], + [ + 33.9817529, + -2.5542194 + ], + [ + 33.9817348, + -2.5544804 + ], + [ + 33.9817326, + -2.5552706 + ], + [ + 33.9817089, + -2.5568196 + ], + [ + 33.9817053, + -2.5570523 + ], + [ + 33.9817058, + -2.5582976 + ], + [ + 33.9817417, + -2.5590666 + ], + [ + 33.9817577, + -2.559409 + ], + [ + 33.9817951, + -2.5598061 + ], + [ + 33.9818176, + -2.5600453 + ], + [ + 33.9818607, + -2.5604376 + ], + [ + 33.9819078, + -2.5608667 + ], + [ + 33.9819494, + -2.5613588 + ], + [ + 33.9819868, + -2.5619896 + ], + [ + 33.9820773, + -2.5630699 + ], + [ + 33.9820912, + -2.5633049 + ], + [ + 33.9821065, + -2.5635359 + ], + [ + 33.9821774, + -2.5649672 + ], + [ + 33.9822283, + -2.565914 + ], + [ + 33.9822327, + -2.565993 + ], + [ + 33.9822839, + -2.566911 + ], + [ + 33.9822942, + -2.5670153 + ], + [ + 33.9823358, + -2.5678956 + ], + [ + 33.9823958, + -2.568977 + ], + [ + 33.9824184, + -2.569475 + ], + [ + 33.9824924, + -2.5708421 + ], + [ + 33.9826025, + -2.5726838 + ] + ] + }, + "id": "way/170211599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/171956775", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9819757, + -2.8118189 + ], + [ + 33.9818479, + -2.8120905 + ], + [ + 33.9811005, + -2.8134555 + ], + [ + 33.9808775, + -2.8138628 + ], + [ + 33.9807082, + -2.8141697 + ], + [ + 33.9806734, + -2.8142357 + ], + [ + 33.9805791, + -2.8144146 + ], + [ + 33.9803768, + -2.8147986 + ], + [ + 33.9803517, + -2.814857 + ], + [ + 33.9801305, + -2.8153711 + ], + [ + 33.9799431, + -2.8157472 + ], + [ + 33.9798043, + -2.816073 + ], + [ + 33.9796513, + -2.8165489 + ], + [ + 33.9796122, + -2.8166399 + ], + [ + 33.9792363, + -2.8177578 + ], + [ + 33.9791729, + -2.8178981 + ], + [ + 33.9791467, + -2.8179723 + ], + [ + 33.978936, + -2.818538 + ], + [ + 33.978876, + -2.8187542 + ], + [ + 33.9786409, + -2.8194067 + ], + [ + 33.9783889, + -2.8200564 + ], + [ + 33.9782548, + -2.8204296 + ], + [ + 33.9778905, + -2.82142 + ], + [ + 33.9774671, + -2.8226009 + ], + [ + 33.9769926, + -2.8239179 + ], + [ + 33.9765725, + -2.8252046 + ], + [ + 33.976475, + -2.8255322 + ], + [ + 33.9764133, + -2.8258188 + ], + [ + 33.9762481, + -2.8263973 + ], + [ + 33.9761809, + -2.8266413 + ], + [ + 33.9759842, + -2.8274048 + ], + [ + 33.9758836, + -2.8277705 + ], + [ + 33.9757961, + -2.8280953 + ], + [ + 33.9754011, + -2.8295506 + ], + [ + 33.9752037, + -2.8302791 + ], + [ + 33.9751461, + -2.8305093 + ], + [ + 33.9748785, + -2.8314796 + ], + [ + 33.9748465, + -2.8316082 + ], + [ + 33.9746735, + -2.8323 + ], + [ + 33.9745671, + -2.8327005 + ], + [ + 33.9743041, + -2.8336253 + ], + [ + 33.9742769, + -2.8337164 + ], + [ + 33.9742411, + -2.8338088 + ], + [ + 33.9742222, + -2.833859 + ], + [ + 33.9740972, + -2.8341865 + ], + [ + 33.9739876, + -2.8344745 + ], + [ + 33.9739633, + -2.834528 + ], + [ + 33.9737651, + -2.834965 + ], + [ + 33.9734699, + -2.8356157 + ], + [ + 33.9730242, + -2.836487 + ], + [ + 33.9728423, + -2.8368427 + ], + [ + 33.972501, + -2.8374333 + ], + [ + 33.9722695, + -2.837834 + ], + [ + 33.9722186, + -2.837922 + ], + [ + 33.9719189, + -2.8384406 + ], + [ + 33.9717115, + -2.8387995 + ], + [ + 33.9716378, + -2.8389271 + ], + [ + 33.9713861, + -2.8394217 + ], + [ + 33.9709587, + -2.8401752 + ], + [ + 33.9706741, + -2.8407086 + ], + [ + 33.9705956, + -2.8408557 + ], + [ + 33.9703617, + -2.8412583 + ], + [ + 33.9701712, + -2.8415861 + ], + [ + 33.9701498, + -2.8416262 + ], + [ + 33.9700295, + -2.8418582 + ], + [ + 33.9698867, + -2.8421327 + ], + [ + 33.9694707, + -2.8428942 + ], + [ + 33.9690569, + -2.8436516 + ], + [ + 33.9686765, + -2.8443195 + ], + [ + 33.9683126, + -2.844983 + ], + [ + 33.9680777, + -2.8454021 + ], + [ + 33.967896, + -2.845738 + ], + [ + 33.9678529, + -2.8458194 + ], + [ + 33.9677039, + -2.8461011 + ], + [ + 33.9675267, + -2.8464432 + ], + [ + 33.9671924, + -2.8470957 + ], + [ + 33.9670977, + -2.8472949 + ], + [ + 33.9666595, + -2.8482173 + ], + [ + 33.9666467, + -2.8482452 + ], + [ + 33.966439, + -2.8486987 + ], + [ + 33.9661242, + -2.8493858 + ], + [ + 33.9659749, + -2.8497209 + ], + [ + 33.9659177, + -2.8498492 + ], + [ + 33.9658837, + -2.8499215 + ], + [ + 33.9649715, + -2.8518582 + ], + [ + 33.9648798, + -2.852063 + ], + [ + 33.9644178, + -2.8530949 + ], + [ + 33.9641163, + -2.8537323 + ], + [ + 33.9637935, + -2.8544698 + ], + [ + 33.963587, + -2.8549092 + ], + [ + 33.9634328, + -2.8552781 + ], + [ + 33.9626116, + -2.8570697 + ], + [ + 33.9624829, + -2.8573214 + ], + [ + 33.9622772, + -2.8577991 + ], + [ + 33.9620269, + -2.8583587 + ], + [ + 33.9615314, + -2.8595302 + ], + [ + 33.9613383, + -2.8600071 + ], + [ + 33.9612766, + -2.8601758 + ], + [ + 33.9610639, + -2.8606881 + ], + [ + 33.9602969, + -2.8626704 + ], + [ + 33.9601305, + -2.8631004 + ], + [ + 33.9598918, + -2.8637148 + ], + [ + 33.9597413, + -2.8641105 + ], + [ + 33.9592056, + -2.8654429 + ], + [ + 33.9585801, + -2.8670427 + ], + [ + 33.9581931, + -2.867966 + ], + [ + 33.958083, + -2.8682731 + ], + [ + 33.9580107, + -2.8684749 + ], + [ + 33.9579444, + -2.8686435 + ], + [ + 33.9574643, + -2.869864 + ], + [ + 33.9572436, + -2.8704091 + ], + [ + 33.9571094, + -2.8708002 + ], + [ + 33.9570222, + -2.8710249 + ], + [ + 33.956782, + -2.8716437 + ], + [ + 33.9565837, + -2.8721235 + ], + [ + 33.9564443, + -2.8724986 + ], + [ + 33.9563922, + -2.8726383 + ], + [ + 33.9561841, + -2.8731694 + ], + [ + 33.9556039, + -2.8746487 + ], + [ + 33.955572, + -2.8747301 + ], + [ + 33.9555351, + -2.8748243 + ], + [ + 33.9555057, + -2.8748992 + ], + [ + 33.955248, + -2.875531 + ], + [ + 33.9550173, + -2.8760507 + ], + [ + 33.9547047, + -2.8769443 + ], + [ + 33.9546007, + -2.8772099 + ], + [ + 33.9545952, + -2.877224 + ], + [ + 33.9543224, + -2.8779119 + ], + [ + 33.9534767, + -2.8800448 + ], + [ + 33.9527633, + -2.8818905 + ], + [ + 33.952629, + -2.8822841 + ], + [ + 33.9523529, + -2.8832594 + ], + [ + 33.9523019, + -2.8835835 + ], + [ + 33.9523027, + -2.8846119 + ], + [ + 33.9523502, + -2.885014 + ], + [ + 33.9524521, + -2.8854962 + ], + [ + 33.9527391, + -2.8867981 + ], + [ + 33.9528464, + -2.8872964 + ], + [ + 33.9540341, + -2.8924717 + ], + [ + 33.9544067, + -2.8941238 + ], + [ + 33.9547532, + -2.895746 + ], + [ + 33.9554756, + -2.8990488 + ], + [ + 33.9556977, + -2.9000233 + ], + [ + 33.9557258, + -2.9001466 + ], + [ + 33.9558723, + -2.9007888 + ], + [ + 33.956204, + -2.9022438 + ], + [ + 33.9562309, + -2.9023619 + ], + [ + 33.9562656, + -2.902529 + ], + [ + 33.9563486, + -2.9029279 + ], + [ + 33.9564237, + -2.9032892 + ], + [ + 33.9565144, + -2.9037252 + ], + [ + 33.957146, + -2.9064122 + ], + [ + 33.9574196, + -2.9078265 + ], + [ + 33.9575725, + -2.9086061 + ], + [ + 33.9576959, + -2.9092007 + ], + [ + 33.9577736, + -2.9094847 + ], + [ + 33.9578917, + -2.9098236 + ], + [ + 33.9580479, + -2.9102448 + ], + [ + 33.9581006, + -2.9103634 + ], + [ + 33.9582872, + -2.9108167 + ], + [ + 33.958345, + -2.9110707 + ], + [ + 33.9584077, + -2.9114094 + ], + [ + 33.9583828, + -2.9120379 + ], + [ + 33.95832, + -2.9137315 + ], + [ + 33.9583532, + -2.9141221 + ], + [ + 33.9582422, + -2.9152518 + ], + [ + 33.9581448, + -2.9170896 + ], + [ + 33.9581063, + -2.9178161 + ], + [ + 33.958096, + -2.9180054 + ], + [ + 33.9580775, + -2.9183467 + ], + [ + 33.9580114, + -2.9189815 + ], + [ + 33.9577223, + -2.9201539 + ], + [ + 33.9575224, + -2.9208392 + ], + [ + 33.9569424, + -2.922944 + ], + [ + 33.9565562, + -2.9245024 + ], + [ + 33.955909, + -2.9271551 + ], + [ + 33.9557183, + -2.9279122 + ], + [ + 33.9556436, + -2.9282518 + ], + [ + 33.9555206, + -2.9288109 + ], + [ + 33.9554272, + -2.9292356 + ], + [ + 33.9553766, + -2.9294142 + ], + [ + 33.9552727, + -2.9297815 + ], + [ + 33.954071, + -2.9327143 + ], + [ + 33.9533178, + -2.9345526 + ], + [ + 33.9526463, + -2.9362439 + ], + [ + 33.9523451, + -2.9369834 + ], + [ + 33.9517134, + -2.9385344 + ], + [ + 33.9502636, + -2.9420237 + ], + [ + 33.9497289, + -2.9433347 + ], + [ + 33.9494919, + -2.9439364 + ], + [ + 33.9492074, + -2.9446413 + ], + [ + 33.9485524, + -2.9462728 + ] + ] + }, + "id": "way/171956775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/171956780", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9980472, + -2.7709858 + ], + [ + 33.9977722, + -2.7715945 + ], + [ + 33.9974716, + -2.7722792 + ], + [ + 33.9972193, + -2.7728254 + ], + [ + 33.9970537, + -2.7731855 + ], + [ + 33.996932, + -2.7734559 + ], + [ + 33.9967895, + -2.7737754 + ], + [ + 33.9965742, + -2.7742177 + ], + [ + 33.9963397, + -2.7747386 + ], + [ + 33.9961171, + -2.7752154 + ], + [ + 33.9958637, + -2.775849 + ], + [ + 33.9956558, + -2.7763915 + ], + [ + 33.9955377, + -2.776764 + ], + [ + 33.9953607, + -2.7772836 + ], + [ + 33.9952346, + -2.7777445 + ], + [ + 33.9951488, + -2.7780525 + ], + [ + 33.9950534, + -2.7784152 + ], + [ + 33.9949757, + -2.7787039 + ], + [ + 33.9948603, + -2.7791325 + ], + [ + 33.9946693, + -2.7798424 + ], + [ + 33.9946085, + -2.7800517 + ], + [ + 33.9944565, + -2.7806503 + ], + [ + 33.9941752, + -2.781613 + ], + [ + 33.9939552, + -2.7824944 + ], + [ + 33.9938373, + -2.7830409 + ], + [ + 33.9938025, + -2.7833256 + ], + [ + 33.9937836, + -2.7834803 + ], + [ + 33.9937622, + -2.7837643 + ], + [ + 33.9937675, + -2.7840415 + ], + [ + 33.9937768, + -2.7842358 + ], + [ + 33.9937836, + -2.7844127 + ], + [ + 33.9938212, + -2.7847555 + ], + [ + 33.9938467, + -2.7849913 + ], + [ + 33.9938803, + -2.7853006 + ], + [ + 33.9938989, + -2.7854829 + ], + [ + 33.9939379, + -2.7858191 + ], + [ + 33.9939794, + -2.7861352 + ], + [ + 33.9940156, + -2.7864809 + ], + [ + 33.9940465, + -2.7867728 + ], + [ + 33.9941015, + -2.7871292 + ], + [ + 33.9941243, + -2.7874239 + ], + [ + 33.9941416, + -2.7876181 + ], + [ + 33.9941492, + -2.787819 + ], + [ + 33.9941457, + -2.7881579 + ], + [ + 33.9941298, + -2.7885939 + ] + ] + }, + "id": "way/171956780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/172544882", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8302882, + -2.493707 + ], + [ + 34.8303194, + -2.4938177 + ] + ] + }, + "id": "way/172544882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/173307919", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1345549, + -2.1838116 + ], + [ + 34.1338907, + -2.1838839 + ], + [ + 34.1332233, + -2.1838647 + ], + [ + 34.132943, + -2.1838045 + ], + [ + 34.13202, + -2.183543 + ], + [ + 34.1314239, + -2.1833545 + ], + [ + 34.1308669, + -2.1831302 + ], + [ + 34.1297544, + -2.1824301 + ], + [ + 34.1290417, + -2.1821587 + ], + [ + 34.1286263, + -2.1820361 + ], + [ + 34.1284074, + -2.1820207 + ], + [ + 34.1281807, + -2.1820207 + ], + [ + 34.1275549, + -2.1820688 + ], + [ + 34.1268195, + -2.1821721 + ], + [ + 34.1264306, + -2.1822298 + ], + [ + 34.1244186, + -2.1826445 + ], + [ + 34.1226366, + -2.1831303 + ], + [ + 34.1219848, + -2.1833019 + ], + [ + 34.1212311, + -2.1834037 + ], + [ + 34.1189271, + -2.1836208 + ], + [ + 34.1182619, + -2.1837441 + ], + [ + 34.1165114, + -2.1842044 + ], + [ + 34.1153759, + -2.1845187 + ], + [ + 34.1142225, + -2.1849073 + ], + [ + 34.1134956, + -2.1852129 + ], + [ + 34.1120326, + -2.1859122 + ], + [ + 34.1116681, + -2.1860784 + ], + [ + 34.1102404, + -2.1866756 + ], + [ + 34.1076607, + -2.1876626 + ], + [ + 34.1058255, + -2.1884419 + ], + [ + 34.104099, + -2.1892944 + ], + [ + 34.1023682, + -2.1900876 + ], + [ + 34.1008947, + -2.190803 + ], + [ + 34.1000135, + -2.1911355 + ], + [ + 34.0969756, + -2.1914927 + ], + [ + 34.0935732, + -2.1918458 + ], + [ + 34.0928731, + -2.1919584 + ], + [ + 34.0922455, + -2.1921299 + ], + [ + 34.0914221, + -2.192481 + ], + [ + 34.0905637, + -2.1929394 + ], + [ + 34.0886943, + -2.1940892 + ], + [ + 34.0877179, + -2.1945904 + ], + [ + 34.0861166, + -2.195105 + ], + [ + 34.0846683, + -2.1955392 + ], + [ + 34.0824769, + -2.1961289 + ], + [ + 34.0808702, + -2.1965229 + ], + [ + 34.0797464, + -2.1968954 + ], + [ + 34.0789139, + -2.1973468 + ], + [ + 34.0765284, + -2.1988302 + ], + [ + 34.0737947, + -2.2004032 + ], + [ + 34.073462, + -2.200578 + ], + [ + 34.0731144, + -2.2007479 + ], + [ + 34.072878, + -2.2007547 + ], + [ + 34.0726925, + -2.2007315 + ], + [ + 34.0724954, + -2.200698 + ], + [ + 34.0720448, + -2.2005988 + ], + [ + 34.0712562, + -2.2003656 + ], + [ + 34.0691095, + -2.1996499 + ], + [ + 34.066844, + -2.1988593 + ], + [ + 34.0632766, + -2.1975728 + ], + [ + 34.0608466, + -2.1966669 + ], + [ + 34.0595523, + -2.196218 + ], + [ + 34.0566516, + -2.1950668 + ], + [ + 34.0523922, + -2.1934024 + ], + [ + 34.0489885, + -2.192014 + ], + [ + 34.0485674, + -2.1918666 + ], + [ + 34.0478512, + -2.1916977 + ], + [ + 34.0464699, + -2.1915316 + ], + [ + 34.0450725, + -2.1913386 + ], + [ + 34.044469, + -2.1912153 + ], + [ + 34.0432593, + -2.1908789 + ], + [ + 34.0421998, + -2.1905372 + ], + [ + 34.0411162, + -2.1901901 + ], + [ + 34.0408695, + -2.1900467 + ], + [ + 34.0405422, + -2.1897747 + ], + [ + 34.040152, + -2.189508 + ], + [ + 34.039755, + -2.1893847 + ], + [ + 34.0378453, + -2.1889827 + ], + [ + 34.0361662, + -2.1884734 + ], + [ + 34.0330039, + -2.1874361 + ], + [ + 34.031129, + -2.1868036 + ], + [ + 34.0301071, + -2.1863426 + ], + [ + 34.0295143, + -2.1861282 + ], + [ + 34.0284763, + -2.1859915 + ], + [ + 34.0263976, + -2.1856431 + ], + [ + 34.0247024, + -2.1851258 + ], + [ + 34.0223877, + -2.1843728 + ], + [ + 34.0210332, + -2.1838634 + ], + [ + 34.0179755, + -2.1830164 + ], + [ + 34.016291, + -2.182483 + ], + [ + 34.0142767, + -2.181829 + ], + [ + 34.0128337, + -2.181494 + ], + [ + 34.010755, + -2.1809794 + ], + [ + 34.0073164, + -2.1799529 + ], + [ + 34.0053905, + -2.1793257 + ], + [ + 34.0030597, + -2.1784841 + ], + [ + 34.0012385, + -2.1777658 + ], + [ + 33.999782, + -2.1771949 + ], + [ + 33.9984624, + -2.1765704 + ], + [ + 33.9976953, + -2.1761978 + ], + [ + 33.9971293, + -2.1759995 + ], + [ + 33.9965419, + -2.1758896 + ], + [ + 33.9943506, + -2.1756376 + ], + [ + 33.9933072, + -2.1754822 + ], + [ + 33.9922263, + -2.1752329 + ], + [ + 33.991397, + -2.1749833 + ], + [ + 33.9902012, + -2.1745923 + ], + [ + 33.989229, + -2.1742361 + ], + [ + 33.9850648, + -2.1725741 + ], + [ + 33.9845149, + -2.1723516 + ], + [ + 33.983847, + -2.1719737 + ], + [ + 33.9833025, + -2.1716011 + ], + [ + 33.9819856, + -2.1706362 + ], + [ + 33.9802421, + -2.1693282 + ], + [ + 33.978861, + -2.1685642 + ], + [ + 33.9785309, + -2.168425 + ], + [ + 33.9779368, + -2.1682689 + ], + [ + 33.9772944, + -2.1681302 + ], + [ + 33.9764656, + -2.1678996 + ], + [ + 33.9750816, + -2.167444 + ], + [ + 33.9740355, + -2.1672189 + ], + [ + 33.9734052, + -2.1670768 + ], + [ + 33.9726166, + -2.1667766 + ], + [ + 33.9714981, + -2.1663906 + ], + [ + 33.970778, + -2.1661963 + ], + [ + 33.9704749, + -2.1661454 + ], + [ + 33.9701772, + -2.166124 + ], + [ + 33.9694597, + -2.1661119 + ], + [ + 33.9685182, + -2.1661119 + ], + [ + 33.9674668, + -2.1660208 + ], + [ + 33.9653693, + -2.1656964 + ], + [ + 33.9632142, + -2.1653252 + ], + [ + 33.9630049, + -2.1652743 + ], + [ + 33.9622445, + -2.1649996 + ], + [ + 33.9612682, + -2.1646833 + ], + [ + 33.9601564, + -2.1643711 + ], + [ + 33.959962, + -2.1643322 + ], + [ + 33.9584492, + -2.164241 + ], + [ + 33.9580871, + -2.1641848 + ], + [ + 33.9571376, + -2.1639737 + ], + [ + 33.9560218, + -2.1636192 + ], + [ + 33.9556592, + -2.1634656 + ], + [ + 33.9546566, + -2.1627401 + ], + [ + 33.9541979, + -2.1624613 + ], + [ + 33.9539115, + -2.1623827 + ], + [ + 33.9536185, + -2.1623675 + ], + [ + 33.9528823, + -2.1625109 + ], + [ + 33.9517719, + -2.1627575 + ], + [ + 33.951509, + -2.1627682 + ], + [ + 33.950758, + -2.1627441 + ], + [ + 33.9505246, + -2.1627629 + ], + [ + 33.9498192, + -2.1628701 + ], + [ + 33.9495295, + -2.1628299 + ], + [ + 33.9485867, + -2.1625659 + ], + [ + 33.9471759, + -2.1622576 + ], + [ + 33.946339, + -2.1619976 + ], + [ + 33.9452956, + -2.1616385 + ], + [ + 33.9438955, + -2.1608692 + ], + [ + 33.9432089, + -2.1605771 + ], + [ + 33.9415566, + -2.1600571 + ], + [ + 33.940878, + -2.1599177 + ], + [ + 33.9395893, + -2.15971 + ], + [ + 33.9392942, + -2.1596296 + ], + [ + 33.9387832, + -2.1593683 + ], + [ + 33.9384211, + -2.159178 + ], + [ + 33.9381556, + -2.1590895 + ], + [ + 33.9375025, + -2.1590319 + ], + [ + 33.9373603, + -2.158985 + ], + [ + 33.9372036, + -2.158904 + ], + [ + 33.937072, + -2.1587733 + ], + [ + 33.9367877, + -2.1584918 + ], + [ + 33.9364819, + -2.1582452 + ], + [ + 33.9358784, + -2.1579665 + ], + [ + 33.9352776, + -2.157752 + ], + [ + 33.9345105, + -2.1575323 + ], + [ + 33.9338855, + -2.1574411 + ], + [ + 33.9334, + -2.1574411 + ], + [ + 33.9329843, + -2.157484 + ], + [ + 33.9324023, + -2.1576073 + ], + [ + 33.9314098, + -2.1578673 + ], + [ + 33.9302565, + -2.1582157 + ], + [ + 33.9280464, + -2.1589287 + ], + [ + 33.9264075, + -2.1594353 + ], + [ + 33.9245622, + -2.1600008 + ], + [ + 33.9231567, + -2.1604591 + ], + [ + 33.9218639, + -2.1609255 + ], + [ + 33.9202706, + -2.1615983 + ], + [ + 33.9186479, + -2.1623434 + ], + [ + 33.9171707, + -2.163055 + ], + [ + 33.9154883, + -2.1638765 + ], + [ + 33.912849, + -2.1651872 + ], + [ + 33.9116333, + -2.1657219 + ] + ] + }, + "id": "way/173307919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/173307920", + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "40", + "source": "Yahoo, Landsat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1346668, + -2.1838001 + ], + [ + 34.1346147, + -2.1838055 + ], + [ + 34.1345549, + -2.1838116 + ] + ] + }, + "id": "way/173307920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186050828", + "highway": "primary", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.7746343, + -1.3752427 + ], + [ + 34.7746459, + -1.3749556 + ], + [ + 34.7749733, + -1.3747933 + ], + [ + 34.7761537, + -1.3740839 + ], + [ + 34.7765824, + -1.3738161 + ], + [ + 34.7768437, + -1.3736334 + ], + [ + 34.7775044, + -1.3729623 + ], + [ + 34.7777278, + -1.3727998 + ], + [ + 34.7781086, + -1.3725383 + ], + [ + 34.7783231, + -1.3723492 + ], + [ + 34.7784144, + -1.3722259 + ], + [ + 34.7785572, + -1.3720764 + ], + [ + 34.7788207, + -1.3717982 + ], + [ + 34.7792244, + -1.3713384 + ], + [ + 34.7794149, + -1.3710837 + ], + [ + 34.7795798, + -1.3706841 + ], + [ + 34.7797662, + -1.3702685 + ], + [ + 34.7800414, + -1.3698212 + ], + [ + 34.7804714, + -1.3693375 + ], + [ + 34.781014, + -1.3686875 + ], + [ + 34.7814356, + -1.3683014 + ], + [ + 34.7816625, + -1.3681164 + ], + [ + 34.7820423, + -1.3678429 + ], + [ + 34.7822279, + -1.3676855 + ], + [ + 34.7823921, + -1.3675173 + ], + [ + 34.782769, + -1.3671236 + ], + [ + 34.7833243, + -1.3665006 + ], + [ + 34.7835587, + -1.3662782 + ], + [ + 34.7838199, + -1.3660396 + ], + [ + 34.7840274, + -1.3658185 + ], + [ + 34.7842537, + -1.3655492 + ], + [ + 34.7845622, + -1.3652069 + ], + [ + 34.7848308, + -1.3648879 + ], + [ + 34.7849547, + -1.3646577 + ], + [ + 34.785025, + -1.3644918 + ], + [ + 34.7851061, + -1.3640792 + ], + [ + 34.7851897, + -1.363908 + ], + [ + 34.7853108, + -1.3637299 + ], + [ + 34.7854988, + -1.3635685 + ], + [ + 34.7856868, + -1.3634606 + ], + [ + 34.7859935, + -1.3632733 + ], + [ + 34.7863145, + -1.3630813 + ], + [ + 34.7866676, + -1.3628436 + ], + [ + 34.7872171, + -1.362363 + ], + [ + 34.7879926, + -1.3615538 + ], + [ + 34.7880076, + -1.3614864 + ], + [ + 34.7881975, + -1.3606322 + ], + [ + 34.7882501, + -1.3603954 + ], + [ + 34.7889882, + -1.3591898 + ], + [ + 34.7896448, + -1.3587436 + ], + [ + 34.7896648, + -1.3587213 + ], + [ + 34.790546, + -1.3577354 + ], + [ + 34.791061, + -1.3562338 + ], + [ + 34.7909323, + -1.3550754 + ], + [ + 34.7906748, + -1.353917 + ], + [ + 34.7907177, + -1.3517289 + ], + [ + 34.7909614, + -1.3491588 + ], + [ + 34.7920052, + -1.3473528 + ], + [ + 34.7921514, + -1.3465927 + ], + [ + 34.7922197, + -1.3462373 + ], + [ + 34.7925589, + -1.3444541 + ], + [ + 34.7927991, + -1.3431911 + ], + [ + 34.7927991, + -1.3424618 + ], + [ + 34.7924644, + -1.3415565 + ], + [ + 34.7924859, + -1.3412027 + ], + [ + 34.7925495, + -1.3409832 + ], + [ + 34.7925845, + -1.3409172 + ], + [ + 34.7937861, + -1.3398661 + ], + [ + 34.7937982, + -1.3388115 + ], + [ + 34.7937861, + -1.3379783 + ], + [ + 34.7949962, + -1.3368856 + ], + [ + 34.7951165, + -1.336777 + ], + [ + 34.7957259, + -1.3367727 + ], + [ + 34.7960607, + -1.3359619 + ], + [ + 34.7954255, + -1.3337266 + ], + [ + 34.7952453, + -1.3316715 + ], + [ + 34.7952024, + -1.3311566 + ], + [ + 34.7952204, + -1.3310935 + ], + [ + 34.7957173, + -1.3294405 + ], + [ + 34.7968846, + -1.3273983 + ], + [ + 34.7992364, + -1.325429 + ], + [ + 34.8018542, + -1.3241848 + ], + [ + 34.8050785, + -1.3230777 + ], + [ + 34.8052016, + -1.3226188 + ], + [ + 34.8045236, + -1.321027 + ], + [ + 34.8029255, + -1.3180263 + ], + [ + 34.8028465, + -1.3177351 + ], + [ + 34.8027125, + -1.3173845 + ], + [ + 34.8021531, + -1.3166079 + ], + [ + 34.8020532, + -1.3163557 + ], + [ + 34.8019881, + -1.3161958 + ], + [ + 34.8014818, + -1.3149522 + ], + [ + 34.8006964, + -1.3130229 + ], + [ + 34.8002429, + -1.3118238 + ], + [ + 34.7999445, + -1.3110347 + ], + [ + 34.7997728, + -1.3105628 + ], + [ + 34.7997728, + -1.3100479 + ], + [ + 34.7999495, + -1.3093708 + ], + [ + 34.8005679, + -1.3070017 + ], + [ + 34.8005824, + -1.3061755 + ], + [ + 34.8006865, + -1.3054224 + ], + [ + 34.8007585, + -1.3047005 + ], + [ + 34.8008457, + -1.3038268 + ], + [ + 34.8010928, + -1.3031271 + ], + [ + 34.8019552, + -1.3006855 + ], + [ + 34.8020615, + -1.2998452 + ], + [ + 34.8021074, + -1.2994822 + ], + [ + 34.802219, + -1.2982707 + ], + [ + 34.8022118, + -1.2975124 + ], + [ + 34.8021151, + -1.2967541 + ], + [ + 34.801189, + -1.2935512 + ], + [ + 34.8011097, + -1.2932569 + ], + [ + 34.8011118, + -1.2929463 + ], + [ + 34.8012086, + -1.2924605 + ], + [ + 34.8013461, + -1.2919666 + ], + [ + 34.8016536, + -1.2909868 + ], + [ + 34.8020975, + -1.2903384 + ], + [ + 34.8025495, + -1.2897713 + ], + [ + 34.8028884, + -1.2894914 + ], + [ + 34.8034015, + -1.2890676 + ], + [ + 34.8038356, + -1.2886791 + ], + [ + 34.804164, + -1.288307 + ], + [ + 34.8044969, + -1.2878083 + ], + [ + 34.8058538, + -1.2865949 + ], + [ + 34.806451, + -1.2858825 + ], + [ + 34.8069912, + -1.2851376 + ], + [ + 34.8070428, + -1.28485 + ], + [ + 34.8070375, + -1.2845461 + ], + [ + 34.8069537, + -1.2839627 + ], + [ + 34.8072185, + -1.2830595 + ], + [ + 34.8076296, + -1.2822538 + ], + [ + 34.808305, + -1.2811859 + ], + [ + 34.8090374, + -1.2801912 + ], + [ + 34.8095094, + -1.2796876 + ], + [ + 34.8099652, + -1.2791353 + ], + [ + 34.8108434, + -1.2776807 + ], + [ + 34.8117785, + -1.2762749 + ], + [ + 34.8122571, + -1.2756485 + ], + [ + 34.8124498, + -1.2754299 + ], + [ + 34.8127529, + -1.2747809 + ], + [ + 34.8130801, + -1.2742044 + ], + [ + 34.8135468, + -1.2735447 + ], + [ + 34.8138204, + -1.2730755 + ], + [ + 34.8139921, + -1.2726223 + ], + [ + 34.814086, + -1.2723541 + ], + [ + 34.814145, + -1.2720779 + ], + [ + 34.8141691, + -1.2718366 + ], + [ + 34.814145, + -1.2714934 + ], + [ + 34.8140377, + -1.2710536 + ], + [ + 34.813917, + -1.2706701 + ], + [ + 34.8138338, + -1.2703993 + ], + [ + 34.8138177, + -1.2702089 + ], + [ + 34.8138392, + -1.2700185 + ], + [ + 34.8138419, + -1.2697477 + ], + [ + 34.8138043, + -1.2691202 + ], + [ + 34.8137104, + -1.2685383 + ], + [ + 34.8136809, + -1.2683077 + ], + [ + 34.813571, + -1.2677472 + ], + [ + 34.8134449, + -1.2673718 + ], + [ + 34.8133242, + -1.2669964 + ], + [ + 34.8132598, + -1.2665566 + ], + [ + 34.8132116, + -1.2661437 + ], + [ + 34.8131928, + -1.2659265 + ], + [ + 34.8132035, + -1.2657441 + ], + [ + 34.8132974, + -1.2652159 + ], + [ + 34.8133886, + -1.2647573 + ], + [ + 34.8135307, + -1.264162 + ], + [ + 34.813638, + -1.263859 + ], + [ + 34.813984, + -1.2631511 + ], + [ + 34.814271, + -1.2625155 + ], + [ + 34.8145848, + -1.2616145 + ], + [ + 34.8146948, + -1.2613008 + ], + [ + 34.8147485, + -1.2610058 + ], + [ + 34.814778, + -1.2604534 + ], + [ + 34.8148799, + -1.2594156 + ], + [ + 34.8149362, + -1.2590442 + ], + [ + 34.8149429, + -1.2588753 + ], + [ + 34.8149282, + -1.2587613 + ], + [ + 34.814892, + -1.2586259 + ], + [ + 34.8148102, + -1.2583993 + ], + [ + 34.8146921, + -1.2581285 + ], + [ + 34.8145044, + -1.2577853 + ], + [ + 34.8143247, + -1.2574903 + ], + [ + 34.8141476, + -1.257316 + ], + [ + 34.8139706, + -1.2571873 + ], + [ + 34.8136125, + -1.2569955 + ], + [ + 34.8133551, + -1.2568534 + ], + [ + 34.8131539, + -1.2567327 + ], + [ + 34.8127127, + -1.2563801 + ], + [ + 34.8121816, + -1.2559859 + ], + [ + 34.8114869, + -1.2555542 + ], + [ + 34.8107868, + -1.2550393 + ], + [ + 34.8102772, + -1.2545137 + ], + [ + 34.8096657, + -1.2537441 + ], + [ + 34.8088261, + -1.2527546 + ], + [ + 34.8083165, + -1.2520789 + ], + [ + 34.8077613, + -1.2511511 + ], + [ + 34.8074099, + -1.2505826 + ], + [ + 34.8072222, + -1.2502393 + ], + [ + 34.8071806, + -1.2500972 + ], + [ + 34.8071632, + -1.2499256 + ], + [ + 34.8071672, + -1.249758 + ], + [ + 34.8071793, + -1.2495341 + ], + [ + 34.8072329, + -1.2493169 + ], + [ + 34.8073045, + -1.2491233 + ], + [ + 34.8074302, + -1.2488923 + ], + [ + 34.8075923, + -1.2486626 + ], + [ + 34.8077613, + -1.2484681 + ], + [ + 34.8079911, + -1.2482223 + ], + [ + 34.8083315, + -1.2478304 + ], + [ + 34.8086223, + -1.2474773 + ], + [ + 34.8090327, + -1.2467077 + ], + [ + 34.8093068, + -1.246265 + ], + [ + 34.8096367, + -1.2457421 + ], + [ + 34.8099873, + -1.2452602 + ], + [ + 34.8102643, + -1.2449966 + ], + [ + 34.8105428, + -1.244852 + ], + [ + 34.8107922, + -1.2447904 + ], + [ + 34.8114359, + -1.244718 + ], + [ + 34.8120439, + -1.2446236 + ], + [ + 34.8121727, + -1.2445609 + ], + [ + 34.8123149, + -1.2444884 + ], + [ + 34.8124329, + -1.2444026 + ], + [ + 34.8125321, + -1.244275 + ], + [ + 34.8125938, + -1.2441318 + ], + [ + 34.8126314, + -1.2439763 + ], + [ + 34.8126663, + -1.2436851 + ], + [ + 34.8127636, + -1.2426894 + ], + [ + 34.8128528, + -1.2421162 + ], + [ + 34.8129353, + -1.2414639 + ], + [ + 34.8130064, + -1.2409182 + ], + [ + 34.8130225, + -1.240819 + ], + [ + 34.8132223, + -1.239084 + ], + [ + 34.8134181, + -1.2378665 + ], + [ + 34.8134905, + -1.2375581 + ], + [ + 34.8135522, + -1.2373879 + ], + [ + 34.8136783, + -1.2371184 + ], + [ + 34.8138338, + -1.2367456 + ], + [ + 34.8139304, + -1.2365767 + ], + [ + 34.8140169, + -1.2364352 + ], + [ + 34.8142388, + -1.2361624 + ], + [ + 34.8146626, + -1.2356649 + ], + [ + 34.8150274, + -1.2352734 + ], + [ + 34.8152071, + -1.2351072 + ], + [ + 34.8152702, + -1.2350281 + ], + [ + 34.8153399, + -1.2349208 + ], + [ + 34.8153855, + -1.2348176 + ], + [ + 34.8154324, + -1.2346821 + ], + [ + 34.8156711, + -1.2338817 + ], + [ + 34.8159796, + -1.2329726 + ], + [ + 34.816103, + -1.2326053 + ], + [ + 34.816137, + -1.2324117 + ], + [ + 34.8161446, + -1.2322828 + ], + [ + 34.8161506, + -1.2321467 + ], + [ + 34.8161513, + -1.2318598 + ], + [ + 34.8161419, + -1.2309319 + ] + ] + }, + "id": "way/186050828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186050829", + "highway": "primary", + "ref": "C727", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.690218, + -1.3406879 + ], + [ + 34.6904844, + -1.3408024 + ], + [ + 34.690728, + -1.3409194 + ], + [ + 34.6908944, + -1.3410202 + ], + [ + 34.691235, + -1.3412579 + ], + [ + 34.691391, + -1.3413468 + ], + [ + 34.6915975, + -1.3414326 + ], + [ + 34.6918933, + -1.3415318 + ], + [ + 34.6921688, + -1.3415908 + ], + [ + 34.6924343, + -1.3416149 + ], + [ + 34.6926865, + -1.3416659 + ], + [ + 34.6929708, + -1.3417383 + ], + [ + 34.6932497, + -1.3418294 + ], + [ + 34.6938613, + -1.3420158 + ], + [ + 34.6942717, + -1.3422799 + ], + [ + 34.6945479, + -1.3424542 + ], + [ + 34.6947276, + -1.3425695 + ], + [ + 34.6949147, + -1.3426674 + ], + [ + 34.6951501, + -1.3427733 + ], + [ + 34.6952694, + -1.3428203 + ], + [ + 34.6953459, + -1.3428578 + ], + [ + 34.6953848, + -1.3428833 + ], + [ + 34.695447, + -1.342927 + ], + [ + 34.6955135, + -1.3429865 + ], + [ + 34.6958086, + -1.3434169 + ], + [ + 34.6961586, + -1.3439425 + ], + [ + 34.6963544, + -1.3442776 + ], + [ + 34.6964416, + -1.3444291 + ], + [ + 34.6965086, + -1.3445351 + ], + [ + 34.6965596, + -1.3446048 + ], + [ + 34.6965998, + -1.3446544 + ], + [ + 34.6966759, + -1.3447191 + ], + [ + 34.6969123, + -1.3448032 + ], + [ + 34.6970518, + -1.3448448 + ], + [ + 34.6971773, + -1.3448852 + ], + [ + 34.697387, + -1.3449748 + ], + [ + 34.6975386, + -1.3450419 + ], + [ + 34.6976231, + -1.3450861 + ], + [ + 34.69767, + -1.3451156 + ], + [ + 34.6978564, + -1.3452738 + ], + [ + 34.698193, + -1.3456009 + ], + [ + 34.698641, + -1.3460099 + ], + [ + 34.6987121, + -1.3460675 + ], + [ + 34.6987831, + -1.3461118 + ], + [ + 34.6988743, + -1.3461587 + ], + [ + 34.6989695, + -1.3461949 + ], + [ + 34.6990259, + -1.346207 + ], + [ + 34.6990987, + -1.3462063 + ], + [ + 34.6992061, + -1.3461569 + ], + [ + 34.699506, + -1.3459938 + ], + [ + 34.6997635, + -1.345849 + ], + [ + 34.7000009, + -1.3457229 + ], + [ + 34.700261, + -1.3456103 + ], + [ + 34.7006902, + -1.3454494 + ], + [ + 34.7012347, + -1.3452644 + ], + [ + 34.7015995, + -1.3451411 + ], + [ + 34.7020715, + -1.3449802 + ], + [ + 34.7023067, + -1.3448966 + ], + [ + 34.7025168, + -1.3448971 + ], + [ + 34.702667, + -1.3449051 + ], + [ + 34.7027957, + -1.3449373 + ], + [ + 34.7029218, + -1.3449963 + ], + [ + 34.7030264, + -1.3450633 + ], + [ + 34.70312, + -1.3451658 + ], + [ + 34.703426, + -1.3457471 + ], + [ + 34.7037479, + -1.3464121 + ], + [ + 34.7040754, + -1.3471102 + ], + [ + 34.7041315, + -1.3472299 + ], + [ + 34.7044909, + -1.3479459 + ], + [ + 34.7046532, + -1.3481967 + ], + [ + 34.7050658, + -1.3488193 + ], + [ + 34.7051655, + -1.3489407 + ], + [ + 34.7053804, + -1.3491788 + ], + [ + 34.7054349, + -1.3492265 + ], + [ + 34.7055098, + -1.3492966 + ], + [ + 34.7057636, + -1.3495092 + ], + [ + 34.7061042, + -1.3497438 + ], + [ + 34.706359, + -1.3499181 + ], + [ + 34.7064583, + -1.3499918 + ], + [ + 34.7065661, + -1.350104 + ], + [ + 34.7068051, + -1.3503825 + ], + [ + 34.7069398, + -1.3505362 + ], + [ + 34.7072039, + -1.3508244 + ], + [ + 34.7073474, + -1.3509666 + ], + [ + 34.707511, + -1.351114 + ], + [ + 34.7076103, + -1.3511945 + ], + [ + 34.7077363, + -1.3512897 + ], + [ + 34.707967, + -1.3514237 + ], + [ + 34.7082715, + -1.3515752 + ], + [ + 34.7084243, + -1.3516597 + ], + [ + 34.7085759, + -1.351767 + ], + [ + 34.7087449, + -1.3519091 + ], + [ + 34.7088682, + -1.3520043 + ], + [ + 34.7089755, + -1.3520847 + ], + [ + 34.7091003, + -1.3521451 + ], + [ + 34.7092169, + -1.3521839 + ], + [ + 34.7093349, + -1.3522175 + ], + [ + 34.7095857, + -1.352255 + ], + [ + 34.7098204, + -1.3522751 + ], + [ + 34.7101933, + -1.3523287 + ], + [ + 34.7103086, + -1.3523502 + ], + [ + 34.7104655, + -1.3523797 + ], + [ + 34.7105486, + -1.3523998 + ], + [ + 34.7106117, + -1.3524226 + ], + [ + 34.7109362, + -1.35255 + ], + [ + 34.7111928, + -1.3526675 + ], + [ + 34.7112997, + -1.352735 + ], + [ + 34.7113748, + -1.3528047 + ], + [ + 34.7115263, + -1.3529803 + ], + [ + 34.7117449, + -1.3532485 + ], + [ + 34.7119877, + -1.3535743 + ], + [ + 34.712078, + -1.3537025 + ], + [ + 34.7124302, + -1.3540972 + ], + [ + 34.7126662, + -1.3542902 + ], + [ + 34.7129211, + -1.3545047 + ], + [ + 34.7130713, + -1.3546576 + ], + [ + 34.7131678, + -1.3547675 + ], + [ + 34.7132429, + -1.3548506 + ], + [ + 34.7133395, + -1.3549954 + ], + [ + 34.7134092, + -1.3551376 + ], + [ + 34.7134736, + -1.3552958 + ], + [ + 34.7135165, + -1.3554915 + ], + [ + 34.7135916, + -1.3559232 + ], + [ + 34.7136265, + -1.3560761 + ], + [ + 34.7136909, + -1.3562477 + ], + [ + 34.7139188, + -1.3567679 + ], + [ + 34.7140556, + -1.3570629 + ], + [ + 34.7141736, + -1.3572559 + ], + [ + 34.7144097, + -1.3575884 + ], + [ + 34.7146082, + -1.3578566 + ], + [ + 34.7147141, + -1.3580188 + ], + [ + 34.7148324, + -1.3582042 + ], + [ + 34.714809, + -1.3583237 + ], + [ + 34.7146269, + -1.3592938 + ], + [ + 34.7145974, + -1.3595137 + ], + [ + 34.7145599, + -1.3596826 + ], + [ + 34.714517, + -1.3598248 + ], + [ + 34.7144795, + -1.3598939 + ], + [ + 34.714415, + -1.3600125 + ], + [ + 34.7142756, + -1.3602404 + ], + [ + 34.7141039, + -1.3605085 + ], + [ + 34.7139805, + -1.3607257 + ], + [ + 34.7138893, + -1.3609134 + ], + [ + 34.7138116, + -1.361144 + ], + [ + 34.7137633, + -1.3613103 + ], + [ + 34.7137338, + -1.3614578 + ], + [ + 34.7137579, + -1.361616 + ], + [ + 34.7138437, + -1.3619216 + ], + [ + 34.7139323, + -1.3622273 + ], + [ + 34.7139618, + -1.3623587 + ], + [ + 34.7139725, + -1.3625518 + ], + [ + 34.7139618, + -1.3627717 + ], + [ + 34.7139303, + -1.3630819 + ], + [ + 34.7139427, + -1.3635526 + ], + [ + 34.7143452, + -1.3648126 + ], + [ + 34.7143766, + -1.3649271 + ], + [ + 34.7144286, + -1.3650451 + ], + [ + 34.7147715, + -1.3658237 + ], + [ + 34.7147629, + -1.3666432 + ], + [ + 34.714725, + -1.3669891 + ], + [ + 34.714383, + -1.3679557 + ], + [ + 34.7143534, + -1.3681064 + ], + [ + 34.7143337, + -1.3683218 + ], + [ + 34.714344, + -1.3685354 + ], + [ + 34.7143722, + -1.3687191 + ], + [ + 34.7145246, + -1.3692715 + ], + [ + 34.7145626, + -1.3695369 + ], + [ + 34.7145867, + -1.3697541 + ], + [ + 34.7146019, + -1.3700647 + ], + [ + 34.7145626, + -1.3706417 + ], + [ + 34.7145607, + -1.3708234 + ], + [ + 34.7145575, + -1.3708968 + ], + [ + 34.7145564, + -1.3713519 + ], + [ + 34.7145653, + -1.3716941 + ], + [ + 34.7146015, + -1.3719945 + ], + [ + 34.7147699, + -1.3726636 + ], + [ + 34.7149185, + -1.3727327 + ], + [ + 34.716454, + -1.3731196 + ], + [ + 34.7168974, + -1.3732599 + ], + [ + 34.716998, + -1.3733137 + ], + [ + 34.717057, + -1.3733741 + ], + [ + 34.7171013, + -1.3734344 + ], + [ + 34.7171254, + -1.3735269 + ], + [ + 34.7171283, + -1.3736268 + ], + [ + 34.717092, + -1.3738599 + ], + [ + 34.7170001, + -1.3744662 + ], + [ + 34.7169609, + -1.3747702 + ], + [ + 34.7169504, + -1.3748777 + ], + [ + 34.7169511, + -1.3749883 + ], + [ + 34.7169697, + -1.375119 + ], + [ + 34.7170074, + -1.3752651 + ], + [ + 34.7170259, + -1.3753238 + ], + [ + 34.717056, + -1.3753792 + ], + [ + 34.7171783, + -1.3755642 + ], + [ + 34.7174735, + -1.3757886 + ], + [ + 34.7178297, + -1.3759854 + ], + [ + 34.7184411, + -1.3763263 + ], + [ + 34.718941, + -1.3765645 + ], + [ + 34.7201482, + -1.3768037 + ], + [ + 34.7209704, + -1.3770476 + ], + [ + 34.7217071, + -1.3772281 + ], + [ + 34.7218877, + -1.37723 + ], + [ + 34.7220567, + -1.3771924 + ], + [ + 34.7224107, + -1.377061 + ], + [ + 34.7226813, + -1.3769571 + ], + [ + 34.722982, + -1.3769162 + ], + [ + 34.724225, + -1.3768096 + ], + [ + 34.7244248, + -1.3767721 + ], + [ + 34.7245914, + -1.3767232 + ], + [ + 34.7247523, + -1.3766508 + ], + [ + 34.7253343, + -1.3763102 + ], + [ + 34.7258753, + -1.3759746 + ], + [ + 34.7260505, + -1.3758892 + ], + [ + 34.7261848, + -1.3758515 + ], + [ + 34.7264501, + -1.3758249 + ], + [ + 34.7265896, + -1.375841 + ], + [ + 34.7267282, + -1.3758915 + ], + [ + 34.7269115, + -1.3760394 + ], + [ + 34.7271435, + -1.3762365 + ], + [ + 34.7272897, + -1.376329 + ], + [ + 34.7274176, + -1.3763889 + ], + [ + 34.727625, + -1.376451 + ], + [ + 34.7280273, + -1.376518 + ], + [ + 34.7281493, + -1.3765462 + ], + [ + 34.7282553, + -1.3765784 + ], + [ + 34.7283925, + -1.376637 + ], + [ + 34.7286361, + -1.3767701 + ], + [ + 34.7295633, + -1.3771893 + ], + [ + 34.7313416, + -1.3777685 + ], + [ + 34.7315611, + -1.3780599 + ], + [ + 34.7319773, + -1.3787257 + ], + [ + 34.7323971, + -1.3791718 + ], + [ + 34.7332379, + -1.3798198 + ], + [ + 34.7336925, + -1.3801237 + ], + [ + 34.7342035, + -1.3802435 + ], + [ + 34.7352469, + -1.3798237 + ], + [ + 34.7379372, + -1.3781948 + ], + [ + 34.7390171, + -1.3778535 + ], + [ + 34.7405829, + -1.3774992 + ], + [ + 34.7410787, + -1.377409 + ], + [ + 34.7413822, + -1.3773799 + ], + [ + 34.7415608, + -1.3773664 + ], + [ + 34.7418092, + -1.3773642 + ], + [ + 34.7420742, + -1.3773979 + ], + [ + 34.7426895, + -1.377561 + ], + [ + 34.7429167, + -1.3775909 + ], + [ + 34.7430688, + -1.3775926 + ], + [ + 34.7434426, + -1.3775479 + ], + [ + 34.7439372, + -1.3774709 + ], + [ + 34.7444214, + -1.3773261 + ], + [ + 34.7447814, + -1.3771652 + ], + [ + 34.7453186, + -1.376838 + ], + [ + 34.7456168, + -1.3766859 + ], + [ + 34.74598, + -1.3765689 + ], + [ + 34.7463969, + -1.3764948 + ], + [ + 34.7468958, + -1.3764264 + ], + [ + 34.7472981, + -1.3763527 + ], + [ + 34.7475234, + -1.3762762 + ], + [ + 34.7477514, + -1.3761388 + ], + [ + 34.7481992, + -1.3757413 + ], + [ + 34.7485198, + -1.3755389 + ], + [ + 34.7488383, + -1.3753947 + ], + [ + 34.7490871, + -1.3753498 + ], + [ + 34.7493687, + -1.3753512 + ], + [ + 34.7495806, + -1.3754028 + ], + [ + 34.7498032, + -1.3754839 + ], + [ + 34.7501547, + -1.3757614 + ], + [ + 34.7504993, + -1.3760758 + ], + [ + 34.750952, + -1.3764516 + ], + [ + 34.7514314, + -1.3768273 + ], + [ + 34.7520664, + -1.3773123 + ], + [ + 34.7527071, + -1.3777258 + ], + [ + 34.7528687, + -1.3778253 + ], + [ + 34.7531592, + -1.3780082 + ], + [ + 34.75369, + -1.3784273 + ], + [ + 34.7540293, + -1.3787399 + ], + [ + 34.7542176, + -1.3789257 + ], + [ + 34.754406, + -1.37909 + ], + [ + 34.7548109, + -1.3794632 + ], + [ + 34.7549914, + -1.3795557 + ], + [ + 34.7551933, + -1.3796267 + ], + [ + 34.7556346, + -1.379785 + ], + [ + 34.7560775, + -1.3799352 + ], + [ + 34.7568038, + -1.3801201 + ], + [ + 34.7571317, + -1.380192 + ], + [ + 34.7574274, + -1.3802852 + ], + [ + 34.7577934, + -1.3804558 + ], + [ + 34.7580334, + -1.3805874 + ], + [ + 34.7582252, + -1.380711 + ], + [ + 34.7583915, + -1.3808168 + ], + [ + 34.7588207, + -1.3809629 + ], + [ + 34.759065, + -1.3810372 + ], + [ + 34.7593586, + -1.3810968 + ], + [ + 34.7595886, + -1.3811293 + ], + [ + 34.7600764, + -1.3813225 + ], + [ + 34.7603443, + -1.3813924 + ], + [ + 34.7608769, + -1.3815289 + ], + [ + 34.7610578, + -1.38156 + ], + [ + 34.7612575, + -1.3815792 + ], + [ + 34.7614492, + -1.3815824 + ], + [ + 34.7616517, + -1.381581 + ], + [ + 34.7618247, + -1.3815609 + ], + [ + 34.7622324, + -1.3815126 + ], + [ + 34.7626965, + -1.3814295 + ], + [ + 34.7631177, + -1.3813026 + ], + [ + 34.7641435, + -1.3809423 + ], + [ + 34.7646119, + -1.3807217 + ], + [ + 34.7649837, + -1.3805708 + ], + [ + 34.7654196, + -1.380376 + ], + [ + 34.765782, + -1.3802297 + ], + [ + 34.7663061, + -1.3799988 + ], + [ + 34.7674041, + -1.3794676 + ], + [ + 34.7678353, + -1.3792686 + ], + [ + 34.7683802, + -1.3789591 + ], + [ + 34.768422, + -1.3789396 + ], + [ + 34.7688525, + -1.3787384 + ], + [ + 34.7696463, + -1.3783138 + ], + [ + 34.7701627, + -1.377994 + ], + [ + 34.7703061, + -1.3779052 + ], + [ + 34.7707293, + -1.3776717 + ], + [ + 34.7711697, + -1.3772786 + ], + [ + 34.7715978, + -1.3768966 + ], + [ + 34.7719835, + -1.3765371 + ], + [ + 34.7722422, + -1.3763091 + ], + [ + 34.7724875, + -1.3760571 + ], + [ + 34.7730156, + -1.3754778 + ], + [ + 34.7732056, + -1.3753097 + ], + [ + 34.7733396, + -1.3752258 + ], + [ + 34.7739977, + -1.3752101 + ], + [ + 34.7746343, + -1.3752427 + ] + ] + }, + "id": "way/186050829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187395032", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7516809, + -2.4038702 + ], + [ + 33.7515109, + -2.403709 + ] + ] + }, + "id": "way/187395032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187395033", + "highway": "secondary", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7515109, + -2.403709 + ], + [ + 33.7514083, + -2.403616 + ], + [ + 33.751308, + -2.4035378 + ], + [ + 33.7512205, + -2.4034633 + ], + [ + 33.7510699, + -2.403371 + ], + [ + 33.7509503, + -2.4033014 + ], + [ + 33.7503649, + -2.4029941 + ], + [ + 33.7502663, + -2.4029424 + ], + [ + 33.7498503, + -2.4027129 + ], + [ + 33.7494208, + -2.4025546 + ], + [ + 33.7489888, + -2.4024986 + ], + [ + 33.7478877, + -2.4024634 + ], + [ + 33.7476184, + -2.4024474 + ], + [ + 33.74708, + -2.402383 + ], + [ + 33.7463674, + -2.4022619 + ], + [ + 33.7459372, + -2.4021478 + ], + [ + 33.7449635, + -2.4017485 + ], + [ + 33.7446085, + -2.4016361 + ], + [ + 33.7442297, + -2.4015577 + ], + [ + 33.7440092, + -2.4015107 + ], + [ + 33.7437313, + -2.4014516 + ], + [ + 33.7426231, + -2.4011952 + ], + [ + 33.7423062, + -2.4011155 + ], + [ + 33.7421169, + -2.4010776 + ], + [ + 33.7407692, + -2.4008078 + ], + [ + 33.7405735, + -2.4007688 + ], + [ + 33.7392085, + -2.4004559 + ], + [ + 33.738021, + -2.4001688 + ], + [ + 33.737536, + -2.4000414 + ], + [ + 33.7369252, + -2.3998965 + ], + [ + 33.7366889, + -2.3998501 + ], + [ + 33.7358716, + -2.3997089 + ], + [ + 33.7355298, + -2.3996327 + ], + [ + 33.7344444, + -2.3993907 + ], + [ + 33.7311238, + -2.3986475 + ], + [ + 33.7307317, + -2.3985752 + ], + [ + 33.7304822, + -2.3985292 + ], + [ + 33.7297445, + -2.3983933 + ], + [ + 33.729319, + -2.3982926 + ], + [ + 33.7287327, + -2.3981635 + ], + [ + 33.7267647, + -2.3976719 + ], + [ + 33.7199543, + -2.3961825 + ], + [ + 33.7165636, + -2.3954372 + ], + [ + 33.7130383, + -2.3946769 + ], + [ + 33.711006, + -2.3942554 + ], + [ + 33.7088343, + -2.3938875 + ], + [ + 33.7053568, + -2.3933757 + ], + [ + 33.7007941, + -2.3925963 + ], + [ + 33.6998209, + -2.3924517 + ], + [ + 33.69955, + -2.3924065 + ], + [ + 33.6990321, + -2.3923196 + ], + [ + 33.6979513, + -2.392129 + ], + [ + 33.6974214, + -2.392079 + ], + [ + 33.696696, + -2.3919945 + ], + [ + 33.6955159, + -2.3918285 + ], + [ + 33.6951125, + -2.3917785 + ], + [ + 33.6943844, + -2.3916604 + ], + [ + 33.6940994, + -2.3916341 + ], + [ + 33.6936602, + -2.391582 + ], + [ + 33.6924895, + -2.3914431 + ], + [ + 33.6917439, + -2.3913716 + ], + [ + 33.6909648, + -2.3912951 + ], + [ + 33.6906852, + -2.3912716 + ], + [ + 33.6904147, + -2.3912406 + ], + [ + 33.689076, + -2.3911086 + ], + [ + 33.688378, + -2.3910441 + ], + [ + 33.6880678, + -2.3910351 + ], + [ + 33.6873869, + -2.3910588 + ], + [ + 33.686724, + -2.3911413 + ], + [ + 33.686059, + -2.3912235 + ], + [ + 33.6850515, + -2.3913676 + ], + [ + 33.6836398, + -2.3915583 + ], + [ + 33.6802603, + -2.3919771 + ], + [ + 33.6790463, + -2.3921276 + ], + [ + 33.679044, + -2.3921276 + ], + [ + 33.678489, + -2.3921999 + ], + [ + 33.6775159, + -2.3923267 + ], + [ + 33.6769262, + -2.3923952 + ], + [ + 33.6761634, + -2.3924837 + ], + [ + 33.675965, + -2.3925142 + ], + [ + 33.674457, + -2.3927462 + ], + [ + 33.6730998, + -2.3928395 + ], + [ + 33.6723813, + -2.3929229 + ], + [ + 33.6709108, + -2.3931131 + ], + [ + 33.6701721, + -2.3932048 + ], + [ + 33.6698676, + -2.3932148 + ], + [ + 33.6676787, + -2.3930835 + ], + [ + 33.6659635, + -2.3929491 + ], + [ + 33.6648995, + -2.3928504 + ], + [ + 33.6639868, + -2.3927657 + ], + [ + 33.6632016, + -2.3926929 + ], + [ + 33.66268, + -2.3926283 + ], + [ + 33.6625845, + -2.3926163 + ], + [ + 33.661471, + -2.3925477 + ], + [ + 33.6607211, + -2.3924986 + ], + [ + 33.6605467, + -2.3924907 + ], + [ + 33.6589645, + -2.3923165 + ] + ] + }, + "id": "way/187395033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/199057134", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8524563, + -2.2431035 + ], + [ + 33.85216, + -2.2434162 + ] + ] + }, + "id": "way/199057134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/204104929", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "C14", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2083097, + -1.4432154 + ], + [ + 35.2079554, + -1.4432181 + ] + ] + }, + "id": "way/204104929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/204104930", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2404955, + -1.1682388 + ], + [ + 35.2403882, + -1.1684656 + ], + [ + 35.2402045, + -1.1688605 + ], + [ + 35.2400556, + -1.169189 + ], + [ + 35.2399899, + -1.1693787 + ], + [ + 35.2398699, + -1.169783 + ], + [ + 35.2397177, + -1.1702704 + ], + [ + 35.2396466, + -1.1705224 + ], + [ + 35.2395453, + -1.1709193 + ], + [ + 35.2394414, + -1.1714261 + ], + [ + 35.2394018, + -1.1716279 + ], + [ + 35.2393569, + -1.1718827 + ], + [ + 35.23932, + -1.1722018 + ], + [ + 35.2392872, + -1.1725477 + ], + [ + 35.2392577, + -1.1728427 + ], + [ + 35.2392375, + -1.1731699 + ], + [ + 35.239208, + -1.1737632 + ], + [ + 35.2391645, + -1.174323 + ], + [ + 35.2391396, + -1.174618 + ], + [ + 35.2391128, + -1.1749471 + ], + [ + 35.2391095, + -1.1752964 + ], + [ + 35.2391008, + -1.175515 + ], + [ + 35.2390967, + -1.1758918 + ], + [ + 35.2390954, + -1.1760875 + ], + [ + 35.2391048, + -1.176294 + ], + [ + 35.239133, + -1.1765487 + ], + [ + 35.2392147, + -1.1771521 + ], + [ + 35.2392965, + -1.1775631 + ], + [ + 35.239322, + -1.1777481 + ], + [ + 35.239373, + -1.1780639 + ], + [ + 35.2394454, + -1.1784648 + ], + [ + 35.2395782, + -1.1790199 + ], + [ + 35.2396975, + -1.1795562 + ], + [ + 35.2398236, + -1.1800496 + ], + [ + 35.2399624, + -1.1805263 + ], + [ + 35.2400788, + -1.1809235 + ], + [ + 35.2401233, + -1.1810519 + ], + [ + 35.2401998, + -1.1812537 + ], + [ + 35.2402702, + -1.1814079 + ], + [ + 35.2403178, + -1.1815118 + ], + [ + 35.2403607, + -1.1815876 + ], + [ + 35.2404848, + -1.1818108 + ], + [ + 35.240635, + -1.182018 + ], + [ + 35.24082, + -1.1822412 + ], + [ + 35.2409555, + -1.1823934 + ], + [ + 35.2411151, + -1.1825422 + ], + [ + 35.2412425, + -1.1826629 + ], + [ + 35.2414886, + -1.1828814 + ], + [ + 35.2417387, + -1.1830973 + ], + [ + 35.2420391, + -1.1833159 + ], + [ + 35.2422544, + -1.1834902 + ], + [ + 35.2425259, + -1.1836699 + ], + [ + 35.2427164, + -1.1837919 + ], + [ + 35.2429953, + -1.1839434 + ], + [ + 35.2433561, + -1.1841706 + ], + [ + 35.2435572, + -1.1842866 + ], + [ + 35.2439623, + -1.1845253 + ], + [ + 35.2442405, + -1.184703 + ], + [ + 35.2445631, + -1.1848692 + ], + [ + 35.2448474, + -1.1850361 + ], + [ + 35.2451874, + -1.1852225 + ], + [ + 35.2454522, + -1.1854022 + ], + [ + 35.2456091, + -1.1855477 + ], + [ + 35.2457258, + -1.1856563 + ], + [ + 35.2460624, + -1.1861665 + ], + [ + 35.2463628, + -1.1865955 + ], + [ + 35.2465922, + -1.1868382 + ], + [ + 35.2469543, + -1.1871104 + ], + [ + 35.2473043, + -1.1873718 + ], + [ + 35.2477616, + -1.1876213 + ], + [ + 35.2480084, + -1.1877634 + ], + [ + 35.248522, + -1.1880087 + ], + [ + 35.2487123, + -1.1881095 + ], + [ + 35.2493374, + -1.1884405 + ], + [ + 35.2500361, + -1.188765 + ], + [ + 35.250307, + -1.1889098 + ], + [ + 35.2506141, + -1.1890707 + ], + [ + 35.2509132, + -1.1892798 + ], + [ + 35.2509789, + -1.1894072 + ], + [ + 35.2510272, + -1.1895145 + ], + [ + 35.2510943, + -1.1897075 + ], + [ + 35.2511559, + -1.1899636 + ], + [ + 35.2512243, + -1.1903082 + ], + [ + 35.2512391, + -1.1904343 + ], + [ + 35.2513303, + -1.1911597 + ], + [ + 35.2513571, + -1.1914734 + ], + [ + 35.2513705, + -1.1918341 + ], + [ + 35.2513665, + -1.1922417 + ], + [ + 35.2513424, + -1.1928451 + ], + [ + 35.251333, + -1.1933774 + ], + [ + 35.2513115, + -1.1938674 + ], + [ + 35.251276, + -1.1944373 + ], + [ + 35.2512391, + -1.1953577 + ], + [ + 35.2512029, + -1.1961915 + ], + [ + 35.2511895, + -1.1965015 + ], + [ + 35.2510889, + -1.1980581 + ], + [ + 35.2510849, + -1.1981748 + ], + [ + 35.2509896, + -1.1987218 + ], + [ + 35.2509105, + -1.1990396 + ], + [ + 35.2507965, + -1.1996108 + ], + [ + 35.2507523, + -1.1999232 + ], + [ + 35.2506986, + -1.2002866 + ], + [ + 35.2506651, + -1.2005909 + ], + [ + 35.2506638, + -1.2008604 + ], + [ + 35.2506772, + -1.2013927 + ], + [ + 35.2506933, + -1.2015791 + ], + [ + 35.250767, + -1.2020564 + ], + [ + 35.2508059, + -1.2021838 + ], + [ + 35.2508636, + -1.2023206 + ], + [ + 35.2509601, + -1.2025405 + ], + [ + 35.2511908, + -1.2030459 + ], + [ + 35.251455, + -1.2035508 + ], + [ + 35.2515288, + -1.2036761 + ], + [ + 35.2516273, + -1.2038236 + ], + [ + 35.2517232, + -1.2039651 + ], + [ + 35.2518104, + -1.2040603 + ], + [ + 35.2519425, + -1.2042091 + ], + [ + 35.2521323, + -1.2043921 + ], + [ + 35.2524696, + -1.2046268 + ], + [ + 35.2528605, + -1.204903 + ], + [ + 35.2531703, + -1.2051329 + ], + [ + 35.25347, + -1.2053461 + ], + [ + 35.2536122, + -1.2054292 + ], + [ + 35.2539139, + -1.2056183 + ], + [ + 35.2543572, + -1.2058965 + ], + [ + 35.2548151, + -1.2062022 + ], + [ + 35.2549606, + -1.2063075 + ], + [ + 35.2551437, + -1.2064456 + ], + [ + 35.2554354, + -1.2066929 + ], + [ + 35.2554984, + -1.2067546 + ], + [ + 35.2555541, + -1.2068277 + ], + [ + 35.2556124, + -1.2069336 + ], + [ + 35.2557009, + -1.2071736 + ], + [ + 35.2557626, + -1.2073714 + ], + [ + 35.255819, + -1.2076148 + ], + [ + 35.2558853, + -1.2078105 + ], + [ + 35.2561247, + -1.2086425 + ], + [ + 35.2565163, + -1.2098733 + ], + [ + 35.2567597, + -1.2105703 + ], + [ + 35.2570018, + -1.2111297 + ], + [ + 35.2572969, + -1.2118483 + ], + [ + 35.2575959, + -1.2125027 + ], + [ + 35.2591194, + -1.2156415 + ], + [ + 35.2593005, + -1.216031 + ], + [ + 35.2612397, + -1.2200594 + ], + [ + 35.2615388, + -1.2206708 + ], + [ + 35.2617748, + -1.2211857 + ], + [ + 35.2622026, + -1.2223173 + ], + [ + 35.2626921, + -1.2236508 + ], + [ + 35.2627592, + -1.2238391 + ], + [ + 35.2628034, + -1.2239571 + ], + [ + 35.2628303, + -1.224053 + ], + [ + 35.2628671, + -1.2241985 + ], + [ + 35.2628826, + -1.2243124 + ], + [ + 35.2628893, + -1.2244291 + ], + [ + 35.2628718, + -1.224598 + ], + [ + 35.2627739, + -1.2252389 + ], + [ + 35.2627136, + -1.2255701 + ], + [ + 35.2626787, + -1.2258155 + ], + [ + 35.2625419, + -1.2267607 + ], + [ + 35.2623716, + -1.2279473 + ], + [ + 35.2622817, + -1.2286151 + ], + [ + 35.2621503, + -1.229555 + ], + [ + 35.2620913, + -1.230157 + ], + [ + 35.2620296, + -1.2306356 + ], + [ + 35.2619478, + -1.2313959 + ], + [ + 35.2618057, + -1.2325087 + ], + [ + 35.2616152, + -1.2340332 + ], + [ + 35.2614972, + -1.2350589 + ], + [ + 35.2613819, + -1.2361141 + ], + [ + 35.2613054, + -1.2366705 + ], + [ + 35.2611794, + -1.2375769 + ], + [ + 35.2610962, + -1.2382567 + ], + [ + 35.2610211, + -1.2388641 + ], + [ + 35.2609842, + -1.2393374 + ], + [ + 35.2609768, + -1.2395827 + ], + [ + 35.2609983, + -1.2399179 + ], + [ + 35.2610332, + -1.2402022 + ], + [ + 35.2610546, + -1.2404757 + ], + [ + 35.2611633, + -1.2413164 + ], + [ + 35.2612236, + -1.2419264 + ], + [ + 35.2613349, + -1.2430688 + ], + [ + 35.2614087, + -1.2438572 + ], + [ + 35.2615213, + -1.2449271 + ], + [ + 35.261642, + -1.2458415 + ], + [ + 35.261744, + -1.2465884 + ], + [ + 35.261866, + -1.2473848 + ], + [ + 35.2619987, + -1.2482859 + ], + [ + 35.2621047, + -1.2491251 + ], + [ + 35.2621624, + -1.2496279 + ], + [ + 35.2622321, + -1.2502849 + ], + [ + 35.2623998, + -1.2514246 + ], + [ + 35.2624816, + -1.2520454 + ], + [ + 35.2625473, + -1.2524932 + ], + [ + 35.2625942, + -1.2529035 + ], + [ + 35.2626385, + -1.2532856 + ], + [ + 35.2627122, + -1.2538876 + ], + [ + 35.2628101, + -1.2545111 + ], + [ + 35.2628906, + -1.2551345 + ], + [ + 35.2629831, + -1.255762 + ], + [ + 35.2631065, + -1.2565464 + ], + [ + 35.2632038, + -1.2572355 + ], + [ + 35.2632608, + -1.2575882 + ], + [ + 35.2633519, + -1.2581955 + ], + [ + 35.2635082, + -1.2592333 + ], + [ + 35.2635907, + -1.259775 + ], + [ + 35.2636899, + -1.260377 + ], + [ + 35.2637456, + -1.2607705 + ], + [ + 35.2637885, + -1.2610521 + ], + [ + 35.2638301, + -1.2612994 + ], + [ + 35.2639112, + -1.2618344 + ], + [ + 35.2639834, + -1.2623855 + ], + [ + 35.2640158, + -1.2626536 + ], + [ + 35.2640547, + -1.263025 + ], + [ + 35.2641861, + -1.263737 + ], + [ + 35.2642384, + -1.2640024 + ], + [ + 35.2643263, + -1.2645019 + ], + [ + 35.2644614, + -1.2650304 + ], + [ + 35.2644791, + -1.2651083 + ], + [ + 35.2645187, + -1.2652581 + ], + [ + 35.2645804, + -1.2654599 + ], + [ + 35.2647172, + -1.2658018 + ], + [ + 35.2647829, + -1.2659439 + ], + [ + 35.2648875, + -1.266151 + ], + [ + 35.2650766, + -1.2664655 + ], + [ + 35.265263, + -1.2668449 + ], + [ + 35.2653931, + -1.2671131 + ], + [ + 35.2655232, + -1.2674094 + ], + [ + 35.2657154, + -1.2678308 + ], + [ + 35.265841, + -1.2681642 + ], + [ + 35.2658799, + -1.2684418 + ], + [ + 35.2658665, + -1.2687314 + ], + [ + 35.2658571, + -1.2691591 + ], + [ + 35.2658524, + -1.2692509 + ], + [ + 35.2658404, + -1.2693086 + ], + [ + 35.2657914, + -1.2694085 + ], + [ + 35.265774, + -1.2694614 + ], + [ + 35.2657398, + -1.2696464 + ], + [ + 35.2657083, + -1.2699924 + ], + [ + 35.2656707, + -1.2705857 + ], + [ + 35.2656278, + -1.2710804 + ], + [ + 35.2656271, + -1.2713586 + ], + [ + 35.2656251, + -1.2715557 + ], + [ + 35.2656224, + -1.2716315 + ], + [ + 35.2656184, + -1.2717126 + ], + [ + 35.2656104, + -1.2718225 + ], + [ + 35.265597, + -1.2720907 + ], + [ + 35.2655574, + -1.2724457 + ], + [ + 35.2655185, + -1.2728677 + ], + [ + 35.2655098, + -1.2730098 + ], + [ + 35.2655004, + -1.2731881 + ], + [ + 35.265493, + -1.273351 + ], + [ + 35.265483, + -1.2734844 + ], + [ + 35.2654709, + -1.2736406 + ], + [ + 35.2654535, + -1.2738853 + ], + [ + 35.26544, + -1.2740435 + ], + [ + 35.2654213, + -1.274305 + ], + [ + 35.2654119, + -1.2745476 + ], + [ + 35.265153, + -1.2789159 + ], + [ + 35.2651048, + -1.2805516 + ], + [ + 35.2651229, + -1.2829637 + ], + [ + 35.2650994, + -1.2842736 + ], + [ + 35.2650994, + -1.2872206 + ], + [ + 35.265137, + -1.2885748 + ], + [ + 35.265094, + -1.2897922 + ], + [ + 35.2650136, + -1.2919052 + ], + [ + 35.2647909, + -1.2951338 + ], + [ + 35.2645753, + -1.2978754 + ], + [ + 35.2644248, + -1.2988759 + ], + [ + 35.26439, + -1.2990113 + ], + [ + 35.2643484, + -1.2991722 + ], + [ + 35.2643189, + -1.2993411 + ], + [ + 35.2642854, + -1.2995275 + ], + [ + 35.2642679, + -1.2996696 + ], + [ + 35.2642585, + -1.2997608 + ], + [ + 35.2642693, + -1.29986 + ], + [ + 35.2642974, + -1.3000463 + ], + [ + 35.2643926, + -1.3003708 + ], + [ + 35.2646381, + -1.3011431 + ], + [ + 35.2650592, + -1.302457 + ], + [ + 35.2651075, + -1.3026528 + ], + [ + 35.2651276, + -1.3027909 + ], + [ + 35.2651363, + -1.3028706 + ], + [ + 35.265141, + -1.3029585 + ], + [ + 35.265137, + -1.3030282 + ], + [ + 35.2651262, + -1.3031877 + ], + [ + 35.2651048, + -1.3033821 + ], + [ + 35.2646649, + -1.306187 + ], + [ + 35.2645476, + -1.3067858 + ], + [ + 35.2644635, + -1.307423 + ] + ] + }, + "id": "way/204104930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/204104931", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2072436, + -1.4432234 + ], + [ + 35.207097, + -1.4432288 + ], + [ + 35.2069965, + -1.4432525 + ], + [ + 35.2068999, + -1.4432809 + ], + [ + 35.2068189, + -1.4433323 + ], + [ + 35.206722, + -1.4434269 + ], + [ + 35.2066703, + -1.4434924 + ], + [ + 35.2066443, + -1.4435665 + ], + [ + 35.2065851, + -1.4438285 + ], + [ + 35.2064411, + -1.4445895 + ], + [ + 35.2060464, + -1.4466775 + ], + [ + 35.2058387, + -1.4478096 + ], + [ + 35.2056407, + -1.4488233 + ], + [ + 35.2054484, + -1.4495458 + ], + [ + 35.2052191, + -1.4502416 + ], + [ + 35.2048677, + -1.4513195 + ], + [ + 35.2044761, + -1.4523465 + ], + [ + 35.2042884, + -1.4526977 + ], + [ + 35.2040268, + -1.4530744 + ], + [ + 35.2037466, + -1.45336 + ], + [ + 35.2030814, + -1.4539338 + ], + [ + 35.2023303, + -1.4544754 + ], + [ + 35.2016254, + -1.455033 + ], + [ + 35.2011234, + -1.4554944 + ], + [ + 35.2004409, + -1.4562645 + ], + [ + 35.1999271, + -1.4570549 + ], + [ + 35.1997206, + -1.4575322 + ], + [ + 35.199616, + -1.4579424 + ], + [ + 35.1995757, + -1.4582669 + ], + [ + 35.199573, + -1.4585055 + ], + [ + 35.1996106, + -1.4587978 + ], + [ + 35.1997098, + -1.4592268 + ], + [ + 35.1999083, + -1.4597228 + ], + [ + 35.2001175, + -1.4601572 + ], + [ + 35.2006164, + -1.4609455 + ], + [ + 35.2015305, + -1.4623677 + ], + [ + 35.2020192, + -1.4631281 + ], + [ + 35.2029258, + -1.4644876 + ], + [ + 35.2037908, + -1.4659114 + ], + [ + 35.2038391, + -1.4659985 + ], + [ + 35.2040148, + -1.4663001 + ], + [ + 35.2045767, + -1.4672212 + ], + [ + 35.2049267, + -1.4678285 + ], + [ + 35.2051493, + -1.4682656 + ], + [ + 35.206801, + -1.4719299 + ], + [ + 35.2085102, + -1.4757196 + ], + [ + 35.2092263, + -1.4773043 + ], + [ + 35.2095321, + -1.4780792 + ], + [ + 35.2097332, + -1.478661 + ], + [ + 35.2103559, + -1.4808312 + ], + [ + 35.2113686, + -1.484404 + ], + [ + 35.2118415, + -1.4866138 + ], + [ + 35.2120963, + -1.4880161 + ], + [ + 35.2123028, + -1.4891879 + ], + [ + 35.2125013, + -1.4903247 + ], + [ + 35.2125341, + -1.4906505 + ], + [ + 35.2125737, + -1.4911479 + ], + [ + 35.212559, + -1.49153 + ], + [ + 35.2125281, + -1.4917579 + ], + [ + 35.2124329, + -1.4920274 + ], + [ + 35.2122907, + -1.492329 + ], + [ + 35.212107, + -1.4926829 + ], + [ + 35.211698, + -1.4934391 + ], + [ + 35.2114096, + -1.4939928 + ], + [ + 35.2112997, + -1.4942421 + ], + [ + 35.2109389, + -1.4949232 + ], + [ + 35.2108088, + -1.4951913 + ], + [ + 35.210672, + -1.4954112 + ], + [ + 35.210546, + -1.4955653 + ], + [ + 35.2102657, + -1.4958402 + ], + [ + 35.2101195, + -1.4959662 + ], + [ + 35.2099961, + -1.4960622 + ], + [ + 35.2095187, + -1.4964207 + ], + [ + 35.2076761, + -1.4977611 + ], + [ + 35.2063422, + -1.4987683 + ], + [ + 35.2047718, + -1.50001 + ], + [ + 35.2046467, + -1.5001069 + ], + [ + 35.2044415, + -1.5002933 + ], + [ + 35.2042575, + -1.500523 + ], + [ + 35.2041111, + -1.5007377 + ], + [ + 35.2039061, + -1.5010995 + ], + [ + 35.2036943, + -1.5015969 + ], + [ + 35.2031787, + -1.5027545 + ], + [ + 35.2031094, + -1.502881 + ], + [ + 35.2029218, + -1.5032673 + ], + [ + 35.2027608, + -1.5036883 + ] + ] + }, + "id": "way/204104931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/204115226", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.7108011, + -1.2039864 + ], + [ + 34.7109711, + -1.203858 + ] + ] + }, + "id": "way/204115226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/204115227", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.7109711, + -1.203858 + ], + [ + 34.7110489, + -1.2037955 + ], + [ + 34.7110885, + -1.2037572 + ], + [ + 34.7111133, + -1.2037137 + ], + [ + 34.7111287, + -1.2036507 + ], + [ + 34.7111388, + -1.2035803 + ], + [ + 34.7111448, + -1.2034589 + ], + [ + 34.7111347, + -1.2033128 + ], + [ + 34.7110958, + -1.2029977 + ], + [ + 34.7110918, + -1.2028234 + ], + [ + 34.7111133, + -1.2026906 + ], + [ + 34.7111548, + -1.2025981 + ], + [ + 34.7112072, + -1.2025123 + ], + [ + 34.7112809, + -1.2024278 + ], + [ + 34.7114056, + -1.2023434 + ], + [ + 34.7115692, + -1.2022938 + ], + [ + 34.7117034, + -1.202275 + ], + [ + 34.7119059, + -1.202283 + ], + [ + 34.7120963, + -1.2023487 + ], + [ + 34.7122626, + -1.2024426 + ], + [ + 34.7126918, + -1.2027778 + ], + [ + 34.7131182, + -1.2031157 + ], + [ + 34.7134428, + -1.2033248 + ], + [ + 34.7137271, + -1.2034898 + ], + [ + 34.71412, + -1.2036359 + ], + [ + 34.7145385, + -1.2037539 + ], + [ + 34.714977, + -1.2038397 + ], + [ + 34.7151044, + -1.2038478 + ], + [ + 34.7152492, + -1.2038451 + ], + [ + 34.715382, + -1.2038317 + ], + [ + 34.7155121, + -1.2038089 + ], + [ + 34.7159158, + -1.2036949 + ], + [ + 34.7165474, + -1.2034831 + ], + [ + 34.7168639, + -1.2033691 + ], + [ + 34.717159, + -1.2032524 + ], + [ + 34.7176176, + -1.2030433 + ], + [ + 34.7182453, + -1.2027107 + ], + [ + 34.7188193, + -1.2024158 + ], + [ + 34.7196856, + -1.2019653 + ], + [ + 34.7199619, + -1.2018285 + ], + [ + 34.7203642, + -1.2016595 + ], + [ + 34.7207558, + -1.201504 + ], + [ + 34.7211313, + -1.2013538 + ], + [ + 34.7218528, + -1.2010428 + ], + [ + 34.7222686, + -1.2008524 + ], + [ + 34.7227487, + -1.2006593 + ], + [ + 34.7229472, + -1.200603 + ], + [ + 34.7232476, + -1.2005225 + ], + [ + 34.7238806, + -1.2003831 + ], + [ + 34.7243661, + -1.2002651 + ], + [ + 34.7246477, + -1.2002088 + ], + [ + 34.7249293, + -1.2001605 + ], + [ + 34.7251439, + -1.2001283 + ], + [ + 34.7253867, + -1.2001115 + ], + [ + 34.7254761, + -1.2001079 + ], + [ + 34.7256669, + -1.2001176 + ], + [ + 34.7260237, + -1.2001418 + ], + [ + 34.7263992, + -1.2001739 + ], + [ + 34.7277837, + -1.2004485 + ], + [ + 34.7302623, + -1.200881 + ], + [ + 34.7338852, + -1.2014987 + ], + [ + 34.7341669, + -1.201563 + ], + [ + 34.7344753, + -1.2016381 + ], + [ + 34.7348642, + -1.2017588 + ], + [ + 34.736487, + -1.2023595 + ], + [ + 34.7366533, + -1.2024211 + ], + [ + 34.7367632, + -1.2024774 + ], + [ + 34.7368571, + -1.2025338 + ], + [ + 34.7373158, + -1.2028287 + ], + [ + 34.7388232, + -1.2038397 + ], + [ + 34.7389895, + -1.2039389 + ], + [ + 34.7391236, + -1.2040221 + ], + [ + 34.7392657, + -1.2040837 + ], + [ + 34.7394669, + -1.2041535 + ], + [ + 34.7413203, + -1.2046898 + ], + [ + 34.7453617, + -1.2058131 + ], + [ + 34.7475725, + -1.2062612 + ], + [ + 34.7477871, + -1.2063014 + ], + [ + 34.7479883, + -1.2063497 + ], + [ + 34.7481304, + -1.2063926 + ], + [ + 34.7482726, + -1.2064489 + ], + [ + 34.7484067, + -1.2065374 + ], + [ + 34.7485194, + -1.2066232 + ], + [ + 34.7486186, + -1.2067144 + ], + [ + 34.7493347, + -1.2074787 + ], + [ + 34.7502226, + -1.2086264 + ], + [ + 34.7503433, + -1.2088114 + ], + [ + 34.7504532, + -1.2090233 + ], + [ + 34.7506008, + -1.2093451 + ], + [ + 34.7507268, + -1.2096642 + ], + [ + 34.7508663, + -1.2100423 + ], + [ + 34.7509709, + -1.2102997 + ], + [ + 34.7510728, + -1.2105116 + ], + [ + 34.7526929, + -1.2127641 + ], + [ + 34.7528136, + -1.2129652 + ], + [ + 34.7529343, + -1.2131798 + ], + [ + 34.7529879, + -1.2133916 + ], + [ + 34.752996, + -1.2134935 + ], + [ + 34.7529936, + -1.2136723 + ], + [ + 34.752937, + -1.2139708 + ], + [ + 34.7528002, + -1.214601 + ], + [ + 34.7524193, + -1.2161751 + ], + [ + 34.7518909, + -1.2184116 + ], + [ + 34.7518641, + -1.2185457 + ], + [ + 34.751856, + -1.2186851 + ], + [ + 34.751856, + -1.2188084 + ], + [ + 34.7518989, + -1.2189345 + ], + [ + 34.7519526, + -1.2190149 + ], + [ + 34.7520331, + -1.2191088 + ], + [ + 34.7521216, + -1.2191758 + ], + [ + 34.752261, + -1.2192482 + ], + [ + 34.7523952, + -1.219275 + ], + [ + 34.7529559, + -1.2192894 + ], + [ + 34.7530726, + -1.2193079 + ], + [ + 34.7531651, + -1.2193367 + ], + [ + 34.753488, + -1.2195071 + ] + ] + }, + "id": "way/204115227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/207306274", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7496594, + -2.2983449 + ], + [ + 33.748877, + -2.2985859 + ], + [ + 33.7474612, + -2.2988689 + ], + [ + 33.7468404, + -2.2989346 + ], + [ + 33.7460968, + -2.2989835 + ], + [ + 33.7456586, + -2.2989951 + ], + [ + 33.7448343, + -2.2989614 + ], + [ + 33.7446288, + -2.2989377 + ], + [ + 33.7427894, + -2.2987397 + ], + [ + 33.7423779, + -2.2987117 + ], + [ + 33.741192, + -2.2985648 + ], + [ + 33.7406243, + -2.2984945 + ], + [ + 33.7395944, + -2.2983637 + ], + [ + 33.7381547, + -2.2981887 + ], + [ + 33.7379191, + -2.2981595 + ], + [ + 33.7359781, + -2.2979191 + ], + [ + 33.7351705, + -2.2978295 + ], + [ + 33.7330062, + -2.2975985 + ], + [ + 33.7322265, + -2.2974992 + ], + [ + 33.7313965, + -2.2973881 + ], + [ + 33.7305781, + -2.2972676 + ], + [ + 33.729946, + -2.2971725 + ], + [ + 33.7280667, + -2.2968591 + ], + [ + 33.726009, + -2.2965359 + ], + [ + 33.7243554, + -2.2962639 + ], + [ + 33.723882, + -2.2961768 + ], + [ + 33.7227018, + -2.2959825 + ], + [ + 33.7218811, + -2.2958485 + ], + [ + 33.7215565, + -2.2958043 + ], + [ + 33.7211622, + -2.2957507 + ], + [ + 33.7208323, + -2.2957091 + ], + [ + 33.7202825, + -2.2956528 + ], + [ + 33.7199063, + -2.2956159 + ], + [ + 33.7196282, + -2.2955963 + ], + [ + 33.719284, + -2.2955721 + ], + [ + 33.7192012, + -2.2955663 + ], + [ + 33.7189257, + -2.2955469 + ], + [ + 33.7185128, + -2.2955428 + ], + [ + 33.7180797, + -2.295532 + ], + [ + 33.7178013, + -2.2955462 + ], + [ + 33.7176649, + -2.2955532 + ], + [ + 33.7174809, + -2.2955546 + ], + [ + 33.7174083, + -2.2955551 + ], + [ + 33.7164673, + -2.2955717 + ], + [ + 33.7162661, + -2.2955775 + ], + [ + 33.7159932, + -2.2955854 + ], + [ + 33.7158448, + -2.2955963 + ], + [ + 33.7156655, + -2.2956093 + ], + [ + 33.7153436, + -2.2956325 + ], + [ + 33.7151317, + -2.2956493 + ], + [ + 33.7146061, + -2.2956887 + ], + [ + 33.7143108, + -2.2957261 + ], + [ + 33.7138553, + -2.2957839 + ], + [ + 33.7137036, + -2.2958031 + ], + [ + 33.7132417, + -2.2958577 + ], + [ + 33.7127799, + -2.29593 + ], + [ + 33.7118561, + -2.2960992 + ], + [ + 33.7112175, + -2.2962308 + ], + [ + 33.7110817, + -2.2962588 + ], + [ + 33.7104566, + -2.2964181 + ], + [ + 33.7103918, + -2.2964346 + ], + [ + 33.7095002, + -2.2966656 + ], + [ + 33.7089883, + -2.2968167 + ], + [ + 33.7088693, + -2.2968518 + ], + [ + 33.7085945, + -2.2969319 + ], + [ + 33.7081609, + -2.2970771 + ], + [ + 33.7075778, + -2.2972788 + ], + [ + 33.7074615, + -2.2973273 + ], + [ + 33.70729, + -2.2973917 + ], + [ + 33.7071086, + -2.2974584 + ], + [ + 33.7066625, + -2.297629 + ], + [ + 33.7064356, + -2.2977206 + ], + [ + 33.7062841, + -2.2977876 + ], + [ + 33.7059213, + -2.2979315 + ], + [ + 33.7053969, + -2.2981682 + ], + [ + 33.7048896, + -2.2984206 + ], + [ + 33.7047557, + -2.2984872 + ], + [ + 33.7043356, + -2.2986812 + ], + [ + 33.7036551, + -2.299047 + ], + [ + 33.7028793, + -2.2994738 + ], + [ + 33.7022648, + -2.2998615 + ], + [ + 33.7018012, + -2.3001313 + ], + [ + 33.7016323, + -2.3002454 + ], + [ + 33.7013684, + -2.3004252 + ], + [ + 33.7005844, + -2.30096 + ], + [ + 33.7003442, + -2.3011303 + ], + [ + 33.6998731, + -2.3014846 + ], + [ + 33.6981293, + -2.3027959 + ], + [ + 33.6968228, + -2.3037282 + ], + [ + 33.69501, + -2.3050217 + ], + [ + 33.6946133, + -2.3053048 + ], + [ + 33.6945736, + -2.3053331 + ], + [ + 33.6943014, + -2.3055264 + ], + [ + 33.6939661, + -2.3057645 + ], + [ + 33.6937337, + -2.3059295 + ], + [ + 33.6935075, + -2.3060902 + ], + [ + 33.6884592, + -2.3098068 + ], + [ + 33.6874643, + -2.310515 + ], + [ + 33.6863592, + -2.3113378 + ], + [ + 33.6845255, + -2.312647 + ], + [ + 33.682293, + -2.3141438 + ], + [ + 33.6802915, + -2.3153696 + ], + [ + 33.6782321, + -2.316537 + ], + [ + 33.6761793, + -2.3176055 + ], + [ + 33.6742381, + -2.3185173 + ], + [ + 33.6720865, + -2.3194927 + ], + [ + 33.6697799, + -2.3204093 + ], + [ + 33.6668161, + -2.3215255 + ], + [ + 33.6656376, + -2.3219694 + ], + [ + 33.6648975, + -2.3222481 + ], + [ + 33.6647539, + -2.3223022 + ], + [ + 33.6640524, + -2.3225641 + ], + [ + 33.6584225, + -2.3246664 + ], + [ + 33.6542804, + -2.3262439 + ], + [ + 33.6519696, + -2.3271239 + ], + [ + 33.6513345, + -2.3273686 + ], + [ + 33.6497301, + -2.3279868 + ], + [ + 33.6495515, + -2.3280556 + ], + [ + 33.6494156, + -2.3281157 + ], + [ + 33.6491997, + -2.3282112 + ], + [ + 33.6470497, + -2.3291623 + ], + [ + 33.6465499, + -2.3294048 + ], + [ + 33.6461426, + -2.3296025 + ], + [ + 33.644966, + -2.3302099 + ], + [ + 33.6435728, + -2.3309297 + ], + [ + 33.6417206, + -2.3319408 + ], + [ + 33.6404464, + -2.3327418 + ], + [ + 33.6390085, + -2.3336704 + ], + [ + 33.6384363, + -2.3340636 + ], + [ + 33.6361468, + -2.335638 + ], + [ + 33.636012, + -2.335733 + ], + [ + 33.6352687, + -2.3362738 + ], + [ + 33.6349595, + -2.3364988 + ], + [ + 33.6347793, + -2.3366299 + ], + [ + 33.6336186, + -2.3374744 + ], + [ + 33.6332823, + -2.337697 + ], + [ + 33.6315466, + -2.3389086 + ], + [ + 33.6308515, + -2.3393556 + ] + ] + }, + "id": "way/207306274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/207306275", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7959003, + -2.2744754 + ], + [ + 33.7957645, + -2.2745375 + ] + ] + }, + "id": "way/207306275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/209405056", + "highway": "trunk", + "name": "Kilgoris-Lolgorien Rd.", + "ref": "B3", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8366125, + -1.1723078 + ], + [ + 34.8363483, + -1.172537 + ], + [ + 34.8362786, + -1.1725906 + ], + [ + 34.8362021, + -1.1726336 + ], + [ + 34.836123, + -1.1726617 + ], + [ + 34.8360533, + -1.1726631 + ], + [ + 34.8359956, + -1.1726456 + ], + [ + 34.8359433, + -1.1726295 + ], + [ + 34.8358481, + -1.1725839 + ], + [ + 34.8355805, + -1.1723969 + ], + [ + 34.8353378, + -1.1722152 + ], + [ + 34.8350441, + -1.1720154 + ], + [ + 34.8348758, + -1.1719082 + ], + [ + 34.8347202, + -1.171817 + ], + [ + 34.8346196, + -1.1717386 + ], + [ + 34.8344486, + -1.1716125 + ], + [ + 34.8343487, + -1.1715475 + ], + [ + 34.8342394, + -1.1714918 + ], + [ + 34.8341019, + -1.1714268 + ], + [ + 34.8339947, + -1.1713886 + ], + [ + 34.8338029, + -1.1713209 + ], + [ + 34.8335461, + -1.1712424 + ], + [ + 34.8332825, + -1.1711654 + ], + [ + 34.8331531, + -1.1711291 + ], + [ + 34.8329882, + -1.1710929 + ], + [ + 34.8326314, + -1.1710205 + ], + [ + 34.8322653, + -1.1709408 + ], + [ + 34.8320581, + -1.1708945 + ], + [ + 34.8319327, + -1.1708824 + ], + [ + 34.8317932, + -1.1708811 + ], + [ + 34.8316531, + -1.1708952 + ], + [ + 34.8315357, + -1.1709227 + ], + [ + 34.8314184, + -1.1709689 + ], + [ + 34.831297, + -1.1710319 + ], + [ + 34.8311803, + -1.1711043 + ], + [ + 34.8311032, + -1.171162 + ], + [ + 34.8310415, + -1.171221 + ], + [ + 34.8309872, + -1.1712874 + ], + [ + 34.8309356, + -1.1713678 + ], + [ + 34.8308632, + -1.1714992 + ], + [ + 34.8308223, + -1.1715904 + ], + [ + 34.8307733, + -1.1717231 + ], + [ + 34.8307096, + -1.1719001 + ], + [ + 34.8306593, + -1.1720429 + ], + [ + 34.8306345, + -1.1721361 + ], + [ + 34.8306144, + -1.1722246 + ], + [ + 34.8306057, + -1.1723111 + ], + [ + 34.830605, + -1.1723935 + ], + [ + 34.8306124, + -1.172474 + ], + [ + 34.8306251, + -1.1725679 + ], + [ + 34.8306466, + -1.1726631 + ], + [ + 34.8306721, + -1.1727623 + ], + [ + 34.8307083, + -1.172893 + ], + [ + 34.8307613, + -1.1730914 + ], + [ + 34.8307948, + -1.173245 + ], + [ + 34.8308209, + -1.1733489 + ], + [ + 34.8308598, + -1.1734729 + ], + [ + 34.8309041, + -1.1735916 + ], + [ + 34.830951, + -1.1736975 + ], + [ + 34.8310395, + -1.1738718 + ], + [ + 34.8310851, + -1.1739563 + ], + [ + 34.8311193, + -1.1740153 + ], + [ + 34.8312078, + -1.1741366 + ], + [ + 34.8313185, + -1.1742888 + ], + [ + 34.8314378, + -1.174443 + ], + [ + 34.8315062, + -1.174557 + ], + [ + 34.8315947, + -1.1747098 + ], + [ + 34.8316638, + -1.1748405 + ], + [ + 34.8316987, + -1.174921 + ], + [ + 34.8317215, + -1.1750095 + ], + [ + 34.831747, + -1.1751194 + ], + [ + 34.8317564, + -1.1751918 + ], + [ + 34.8317537, + -1.1753004 + ], + [ + 34.8317456, + -1.1753742 + ], + [ + 34.8317322, + -1.1754788 + ], + [ + 34.8317014, + -1.1756839 + ], + [ + 34.8316303, + -1.1759883 + ], + [ + 34.8315793, + -1.1762243 + ], + [ + 34.831519, + -1.1764267 + ], + [ + 34.8314177, + -1.1767566 + ], + [ + 34.8313326, + -1.1770837 + ], + [ + 34.8312722, + -1.1772782 + ], + [ + 34.831183, + -1.1775631 + ], + [ + 34.8311207, + -1.1777588 + ], + [ + 34.8310248, + -1.1781088 + ], + [ + 34.8309302, + -1.1785064 + ], + [ + 34.8308565, + -1.1788214 + ], + [ + 34.8307492, + -1.1791727 + ], + [ + 34.8306915, + -1.1793765 + ], + [ + 34.8306191, + -1.1796206 + ], + [ + 34.8305574, + -1.179874 + ], + [ + 34.8305172, + -1.1799853 + ], + [ + 34.8304796, + -1.1800925 + ], + [ + 34.8304313, + -1.1801717 + ], + [ + 34.8303737, + -1.1802601 + ], + [ + 34.830312, + -1.1803218 + ], + [ + 34.8302288, + -1.1803714 + ], + [ + 34.8301564, + -1.1804103 + ], + [ + 34.8300384, + -1.1804586 + ], + [ + 34.8298573, + -1.1805176 + ], + [ + 34.8296797, + -1.1805947 + ], + [ + 34.829567, + -1.1806611 + ], + [ + 34.8294953, + -1.1807167 + ], + [ + 34.8294235, + -1.1807817 + ], + [ + 34.8293638, + -1.1808474 + ], + [ + 34.8293102, + -1.1809192 + ], + [ + 34.8292297, + -1.1810311 + ], + [ + 34.8291358, + -1.1811746 + ], + [ + 34.8290192, + -1.1813744 + ], + [ + 34.8285873, + -1.1821306 + ], + [ + 34.8283526, + -1.1825637 + ], + [ + 34.828069, + -1.1830283 + ], + [ + 34.8278537, + -1.1834144 + ], + [ + 34.8276278, + -1.183808 + ], + [ + 34.8274581, + -1.1840922 + ], + [ + 34.8273025, + -1.184355 + ], + [ + 34.8272362, + -1.1844804 + ], + [ + 34.8271684, + -1.1846419 + ], + [ + 34.8271106, + -1.184794 + ], + [ + 34.8269924, + -1.1851321 + ], + [ + 34.8268445, + -1.1856715 + ], + [ + 34.8266307, + -1.1864272 + ], + [ + 34.8265187, + -1.1868201 + ], + [ + 34.8264281, + -1.1870997 + ], + [ + 34.8263879, + -1.187225 + ], + [ + 34.8263249, + -1.1873893 + ], + [ + 34.8262504, + -1.1875508 + ], + [ + 34.82617, + -1.1877332 + ], + [ + 34.8260956, + -1.1879075 + ], + [ + 34.8260285, + -1.1880919 + ], + [ + 34.8259909, + -1.1882112 + ], + [ + 34.8259373, + -1.1884083 + ], + [ + 34.8258347, + -1.1888407 + ], + [ + 34.8257019, + -1.1894153 + ], + [ + 34.8256516, + -1.1896117 + ], + [ + 34.825592, + -1.1898302 + ], + [ + 34.8255618, + -1.1899368 + ], + [ + 34.8255122, + -1.1901272 + ], + [ + 34.8254451, + -1.1903954 + ], + [ + 34.8253532, + -1.1907467 + ], + [ + 34.8252607, + -1.1910899 + ], + [ + 34.8251367, + -1.1915089 + ], + [ + 34.824967, + -1.1920714 + ], + [ + 34.8248403, + -1.1924958 + ], + [ + 34.824788, + -1.1926758 + ], + [ + 34.8247598, + -1.1927837 + ], + [ + 34.824731, + -1.192893 + ], + [ + 34.8247159, + -1.1929724 + ], + [ + 34.8247062, + -1.1930331 + ], + [ + 34.8246974, + -1.1930965 + ], + [ + 34.8246904, + -1.1931575 + ], + [ + 34.824683, + -1.1932617 + ], + [ + 34.824678, + -1.1933519 + ], + [ + 34.8246713, + -1.1935195 + ], + [ + 34.824672, + -1.193663 + ], + [ + 34.824674, + -1.1939707 + ], + [ + 34.8246867, + -1.1944614 + ], + [ + 34.8246948, + -1.1947074 + ], + [ + 34.8247001, + -1.1949428 + ], + [ + 34.8247075, + -1.1952284 + ], + [ + 34.8247229, + -1.1954476 + ], + [ + 34.8247316, + -1.195876 + ], + [ + 34.8247524, + -1.1963131 + ], + [ + 34.8247672, + -1.196596 + ], + [ + 34.82479, + -1.1969339 + ], + [ + 34.8247933, + -1.1970988 + ], + [ + 34.8247947, + -1.1972228 + ], + [ + 34.8247873, + -1.1973455 + ], + [ + 34.8247722, + -1.1974668 + ], + [ + 34.8247615, + -1.1975282 + ], + [ + 34.8247373, + -1.1976153 + ], + [ + 34.8247088, + -1.1976981 + ], + [ + 34.824678, + -1.1977672 + ], + [ + 34.8246247, + -1.1978513 + ], + [ + 34.8245506, + -1.1979549 + ], + [ + 34.8244902, + -1.19803 + ], + [ + 34.8241865, + -1.1983833 + ], + [ + 34.8238666, + -1.1987621 + ], + [ + 34.8236474, + -1.1990121 + ], + [ + 34.8234066, + -1.1992883 + ], + [ + 34.8232397, + -1.1994767 + ], + [ + 34.8230868, + -1.1996571 + ], + [ + 34.8229916, + -1.1997797 + ], + [ + 34.8229326, + -1.1998736 + ], + [ + 34.8228655, + -1.2000003 + ], + [ + 34.8228259, + -1.2000901 + ], + [ + 34.8227995, + -1.2001642 + ], + [ + 34.8227837, + -1.2002296 + ], + [ + 34.8227733, + -1.2003107 + ], + [ + 34.8227673, + -1.2003958 + ], + [ + 34.822771, + -1.200476 + ], + [ + 34.822781, + -1.2005547 + ], + [ + 34.8228025, + -1.2006368 + ], + [ + 34.8228233, + -1.2006881 + ], + [ + 34.8228521, + -1.2007451 + ], + [ + 34.8229037, + -1.2008192 + ], + [ + 34.822959, + -1.2008889 + ], + [ + 34.8230794, + -1.2010287 + ], + [ + 34.8231438, + -1.2010931 + ], + [ + 34.8232175, + -1.2011578 + ], + [ + 34.8233905, + -1.2013042 + ], + [ + 34.8235196, + -1.2014138 + ], + [ + 34.8236138, + -1.2015027 + ], + [ + 34.8237707, + -1.2016475 + ], + [ + 34.8239196, + -1.2017782 + ], + [ + 34.8240118, + -1.201859 + ], + [ + 34.8240926, + -1.2019244 + ], + [ + 34.824216, + -1.2020129 + ], + [ + 34.8245251, + -1.2021945 + ], + [ + 34.8247498, + -1.2023165 + ], + [ + 34.8248564, + -1.2023843 + ], + [ + 34.8249362, + -1.2024469 + ], + [ + 34.8249704, + -1.2024805 + ], + [ + 34.8250113, + -1.2025264 + ], + [ + 34.8250549, + -1.2025857 + ], + [ + 34.8250978, + -1.2026645 + ], + [ + 34.825142, + -1.2027677 + ], + [ + 34.8252057, + -1.2029534 + ], + [ + 34.8253405, + -1.2033543 + ], + [ + 34.8253848, + -1.2034884 + ], + [ + 34.8255491, + -1.204006 + ], + [ + 34.8256443, + -1.2043378 + ], + [ + 34.8258039, + -1.2048145 + ], + [ + 34.8259715, + -1.2052596 + ], + [ + 34.8260453, + -1.2054219 + ], + [ + 34.8261224, + -1.2055921 + ], + [ + 34.826174, + -1.2057162 + ], + [ + 34.8262122, + -1.2058134 + ], + [ + 34.8262404, + -1.205926 + ], + [ + 34.8262551, + -1.2060742 + ], + [ + 34.8262565, + -1.206171 + ], + [ + 34.8262504, + -1.2062729 + ], + [ + 34.8262374, + -1.2063832 + ], + [ + 34.8262266, + -1.2064352 + ], + [ + 34.8262122, + -1.2064955 + ], + [ + 34.8261955, + -1.2065555 + ], + [ + 34.8261381, + -1.2067265 + ], + [ + 34.8260728, + -1.2069055 + ], + [ + 34.8260416, + -1.206993 + ], + [ + 34.8260168, + -1.2070416 + ], + [ + 34.8259906, + -1.2070811 + ], + [ + 34.8259567, + -1.2071173 + ], + [ + 34.8259172, + -1.2071562 + ], + [ + 34.8258816, + -1.2071844 + ], + [ + 34.8258169, + -1.2072192 + ], + [ + 34.8257392, + -1.2072537 + ], + [ + 34.8256332, + -1.2073003 + ], + [ + 34.8255564, + -1.2073305 + ], + [ + 34.8255095, + -1.2073456 + ], + [ + 34.8254361, + -1.2073623 + ], + [ + 34.8253164, + -1.2073908 + ], + [ + 34.8250911, + -1.2074451 + ], + [ + 34.8248473, + -1.2074941 + ], + [ + 34.8247809, + -1.2075058 + ], + [ + 34.824727, + -1.2075175 + ], + [ + 34.8246679, + -1.207534 + ], + [ + 34.8245995, + -1.2075571 + ], + [ + 34.8244245, + -1.2076181 + ], + [ + 34.8240966, + -1.2077482 + ], + [ + 34.8238747, + -1.2078427 + ], + [ + 34.8236923, + -1.2079231 + ], + [ + 34.8235106, + -1.208015 + ], + [ + 34.8233899, + -1.2080854 + ], + [ + 34.8232967, + -1.2081491 + ], + [ + 34.823235, + -1.2081993 + ], + [ + 34.8231766, + -1.2082553 + ], + [ + 34.8230908, + -1.2083559 + ], + [ + 34.8229359, + -1.2085446 + ], + [ + 34.82273, + -1.2088221 + ], + [ + 34.8224779, + -1.2091708 + ], + [ + 34.8222788, + -1.2094382 + ], + [ + 34.822144, + -1.2095965 + ], + [ + 34.8219301, + -1.2098727 + ], + [ + 34.8216592, + -1.2102468 + ], + [ + 34.8214708, + -1.2105028 + ], + [ + 34.8212676, + -1.210765 + ], + [ + 34.8211415, + -1.210944 + ], + [ + 34.820933, + -1.2112597 + ], + [ + 34.8207412, + -1.2115306 + ], + [ + 34.8204374, + -1.2119288 + ], + [ + 34.8202423, + -1.2121949 + ], + [ + 34.820139, + -1.2123351 + ], + [ + 34.8200613, + -1.2124658 + ], + [ + 34.8200076, + -1.2125704 + ], + [ + 34.8199664, + -1.2126622 + ], + [ + 34.8199295, + -1.2127564 + ], + [ + 34.8199094, + -1.212811 + ], + [ + 34.819895, + -1.2128583 + ], + [ + 34.8198822, + -1.212923 + ], + [ + 34.8198701, + -1.2130296 + ], + [ + 34.8198292, + -1.2132937 + ], + [ + 34.8197917, + -1.2134962 + ], + [ + 34.8197649, + -1.2136075 + ], + [ + 34.8197468, + -1.2136671 + ], + [ + 34.8197126, + -1.2137543 + ], + [ + 34.8196717, + -1.2138394 + ], + [ + 34.8196267, + -1.213932 + ], + [ + 34.8194725, + -1.2142088 + ], + [ + 34.8193478, + -1.2144435 + ], + [ + 34.8193029, + -1.2145357 + ], + [ + 34.8192774, + -1.214591 + ], + [ + 34.8192546, + -1.2146546 + ], + [ + 34.8192345, + -1.2147304 + ], + [ + 34.8192137, + -1.2148229 + ], + [ + 34.8191976, + -1.2149248 + ], + [ + 34.8191761, + -1.2151467 + ], + [ + 34.8191734, + -1.2153009 + ], + [ + 34.8191788, + -1.2154296 + ], + [ + 34.8191828, + -1.2155228 + ], + [ + 34.8191936, + -1.2156147 + ], + [ + 34.8192096, + -1.2156965 + ], + [ + 34.8192438, + -1.2158232 + ], + [ + 34.8192962, + -1.2159921 + ], + [ + 34.8194028, + -1.2163179 + ], + [ + 34.819494, + -1.2165539 + ], + [ + 34.8196341, + -1.2169286 + ], + [ + 34.819704, + -1.217125 + ], + [ + 34.8197903, + -1.2173678 + ], + [ + 34.8199385, + -1.2177868 + ], + [ + 34.8199838, + -1.2179125 + ], + [ + 34.8199972, + -1.2179731 + ], + [ + 34.8199982, + -1.2180254 + ], + [ + 34.8199851, + -1.2180757 + ], + [ + 34.819957, + -1.2181367 + ], + [ + 34.8199137, + -1.2181944 + ], + [ + 34.819848, + -1.2182614 + ], + [ + 34.8197421, + -1.2183546 + ], + [ + 34.819496, + -1.2185684 + ], + [ + 34.8192137, + -1.2188131 + ], + [ + 34.8191211, + -1.2188822 + ], + [ + 34.8190373, + -1.2189331 + ], + [ + 34.8189267, + -1.2189861 + ], + [ + 34.8188362, + -1.2190223 + ], + [ + 34.818751, + -1.2190565 + ], + [ + 34.8186511, + -1.219092 + ], + [ + 34.8183876, + -1.2191711 + ], + [ + 34.8179436, + -1.2192972 + ], + [ + 34.8177633, + -1.2193421 + ], + [ + 34.8175655, + -1.2193897 + ], + [ + 34.8174434, + -1.2194249 + ], + [ + 34.8173455, + -1.2194688 + ], + [ + 34.8172583, + -1.2195137 + ], + [ + 34.8171873, + -1.21956 + ], + [ + 34.8171376, + -1.2196009 + ], + [ + 34.817088, + -1.2196565 + ], + [ + 34.8170454, + -1.2197205 + ], + [ + 34.8169868, + -1.2198241 + ], + [ + 34.8169029, + -1.2200145 + ], + [ + 34.8167172, + -1.2203986 + ], + [ + 34.8165147, + -1.2207781 + ], + [ + 34.8163048, + -1.2211609 + ], + [ + 34.8160695, + -1.2215826 + ], + [ + 34.8159662, + -1.2217703 + ], + [ + 34.8158341, + -1.2220337 + ], + [ + 34.8156916, + -1.2222968 + ] + ] + }, + "id": "way/209405056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/209405059", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B3", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8367546, + -1.1721811 + ], + [ + 34.8366125, + -1.1723078 + ] + ] + }, + "id": "way/209405059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/224287666", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "name": "Arusha Road", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.831645, + -2.2967189 + ], + [ + 34.831594, + -2.2965659 + ], + [ + 34.8314896, + -2.2962152 + ], + [ + 34.8313585, + -2.2958463 + ], + [ + 34.8311534, + -2.2948677 + ], + [ + 34.8309405, + -2.2940882 + ], + [ + 34.8304818, + -2.2925147 + ], + [ + 34.8301865, + -2.2913547 + ], + [ + 34.8300739, + -2.2906525 + ], + [ + 34.8299854, + -2.289827 + ], + [ + 34.829913, + -2.287021 + ], + [ + 34.8298727, + -2.2865413 + ], + [ + 34.8297842, + -2.2861446 + ], + [ + 34.8294489, + -2.2852709 + ], + [ + 34.8292102, + -2.2845124 + ], + [ + 34.8290815, + -2.2838505 + ], + [ + 34.8290251, + -2.2833171 + ], + [ + 34.8290922, + -2.2824809 + ], + [ + 34.8298942, + -2.2787529 + ], + [ + 34.8301865, + -2.2770109 + ], + [ + 34.8302777, + -2.2761935 + ], + [ + 34.8303153, + -2.2753492 + ], + [ + 34.8302241, + -2.2734839 + ], + [ + 34.8300953, + -2.2725056 + ], + [ + 34.8299425, + -2.2719589 + ], + [ + 34.8296903, + -2.2714872 + ], + [ + 34.8293577, + -2.2710128 + ], + [ + 34.8286604, + -2.2700453 + ], + [ + 34.8279442, + -2.2688955 + ], + [ + 34.827566, + -2.2681424 + ], + [ + 34.827051, + -2.2672768 + ], + [ + 34.8264564, + -2.26665 + ], + [ + 34.825836, + -2.2662503 + ], + [ + 34.8251789, + -2.2660225 + ], + [ + 34.8236929, + -2.2657732 + ], + [ + 34.8223491, + -2.2655722 + ], + [ + 34.8208337, + -2.265398 + ], + [ + 34.8167433, + -2.2649611 + ], + [ + 34.8157375, + -2.2647923 + ], + [ + 34.8149436, + -2.2646101 + ], + [ + 34.8140879, + -2.2643903 + ], + [ + 34.8131116, + -2.2640928 + ], + [ + 34.811631, + -2.263538 + ], + [ + 34.8100646, + -2.2630154 + ], + [ + 34.808804, + -2.2626187 + ], + [ + 34.8083695, + -2.2624231 + ], + [ + 34.8078625, + -2.2621095 + ], + [ + 34.8070471, + -2.2614636 + ], + [ + 34.806516, + -2.2609919 + ], + [ + 34.8059394, + -2.2603889 + ], + [ + 34.8053332, + -2.259818 + ], + [ + 34.8049604, + -2.2596438 + ], + [ + 34.8045473, + -2.259558 + ], + [ + 34.8040484, + -2.2595259 + ], + [ + 34.8026134, + -2.2596036 + ], + [ + 34.8013474, + -2.2597724 + ], + [ + 34.8007252, + -2.25981 + ], + [ + 34.7988637, + -2.2597751 + ], + [ + 34.798456, + -2.2597296 + ], + [ + 34.7980832, + -2.2596384 + ], + [ + 34.7977211, + -2.2594321 + ], + [ + 34.7973965, + -2.2591641 + ], + [ + 34.7927885, + -2.254648 + ], + [ + 34.7917639, + -2.2537019 + ], + [ + 34.7895725, + -2.251657 + ], + [ + 34.7889905, + -2.2510567 + ], + [ + 34.7884621, + -2.2504483 + ], + [ + 34.7863774, + -2.2475464 + ], + [ + 34.7861065, + -2.2471577 + ], + [ + 34.7834244, + -2.243162 + ], + [ + 34.7816983, + -2.2405485 + ], + [ + 34.7804269, + -2.2386295 + ], + [ + 34.7794855, + -2.2372733 + ], + [ + 34.7789437, + -2.2365604 + ], + [ + 34.777512, + -2.2348471 + ], + [ + 34.7758584, + -2.2328155 + ], + [ + 34.7743671, + -2.2310171 + ], + [ + 34.7738486, + -2.2305027 + ], + [ + 34.7724014, + -2.2291486 + ], + [ + 34.7717625, + -2.2285354 + ], + [ + 34.7675489, + -2.2244131 + ], + [ + 34.7669374, + -2.2239575 + ], + [ + 34.7663952, + -2.2236235 + ], + [ + 34.7657384, + -2.2233545 + ], + [ + 34.7648721, + -2.2230596 + ], + [ + 34.7630777, + -2.2225504 + ], + [ + 34.7626297, + -2.2223682 + ], + [ + 34.7620236, + -2.2219527 + ], + [ + 34.7617205, + -2.2216686 + ], + [ + 34.7601219, + -2.2201114 + ], + [ + 34.7588103, + -2.218833 + ], + [ + 34.7579117, + -2.2178976 + ], + [ + 34.7571044, + -2.2169676 + ], + [ + 34.7566833, + -2.2163163 + ], + [ + 34.7559779, + -2.2150405 + ], + [ + 34.7543295, + -2.2122601 + ], + [ + 34.7536443, + -2.2114437 + ], + [ + 34.7527495, + -2.2103551 + ], + [ + 34.7505245, + -2.207648 + ], + [ + 34.7497176, + -2.2068659 + ], + [ + 34.7474538, + -2.2048021 + ], + [ + 34.7461422, + -2.2036576 + ], + [ + 34.7452839, + -2.2030036 + ], + [ + 34.7442298, + -2.2022398 + ], + [ + 34.7434251, + -2.2015376 + ], + [ + 34.7419901, + -2.2002109 + ], + [ + 34.7409736, + -2.1993049 + ], + [ + 34.7391926, + -2.1979058 + ], + [ + 34.7385516, + -2.1973323 + ], + [ + 34.7379132, + -2.1964987 + ], + [ + 34.7367089, + -2.1945984 + ], + [ + 34.7361188, + -2.1937274 + ], + [ + 34.7355233, + -2.1928992 + ], + [ + 34.7350137, + -2.1923175 + ], + [ + 34.7346328, + -2.192012 + ], + [ + 34.7342573, + -2.1918163 + ], + [ + 34.7335895, + -2.1915269 + ], + [ + 34.732825, + -2.1912615 + ], + [ + 34.7299631, + -2.1903583 + ], + [ + 34.7277503, + -2.189648 + ], + [ + 34.725442, + -2.1889442 + ], + [ + 34.725052, + -2.1887849 + ], + [ + 34.7245638, + -2.1885196 + ], + [ + 34.7243499, + -2.18838 + ], + [ + 34.7235526, + -2.1878496 + ], + [ + 34.7233649, + -2.1876352 + ], + [ + 34.7232415, + -2.1873296 + ], + [ + 34.7230135, + -2.1862012 + ], + [ + 34.721961, + -2.1818016 + ], + [ + 34.7211375, + -2.1783591 + ], + [ + 34.7210089, + -2.1777694 + ], + [ + 34.7190563, + -2.1689029 + ], + [ + 34.7181963, + -2.1649976 + ], + [ + 34.7177242, + -2.1629391 + ], + [ + 34.7172065, + -2.1607091 + ], + [ + 34.7170402, + -2.1601837 + ], + [ + 34.7167801, + -2.1595941 + ], + [ + 34.7161241, + -2.158555 + ], + [ + 34.7155678, + -2.1578724 + ], + [ + 34.7148965, + -2.157185 + ], + [ + 34.7139745, + -2.1565787 + ], + [ + 34.7134434, + -2.1562919 + ], + [ + 34.7128345, + -2.1560614 + ], + [ + 34.712333, + -2.1559301 + ], + [ + 34.7117187, + -2.1558792 + ], + [ + 34.7108631, + -2.1558604 + ], + [ + 34.6999712, + -2.1562027 + ], + [ + 34.6954706, + -2.156306 + ], + [ + 34.6942797, + -2.1563355 + ], + [ + 34.6939257, + -2.1563087 + ], + [ + 34.693695, + -2.1562712 + ], + [ + 34.6933866, + -2.1562095 + ], + [ + 34.6931156, + -2.1560809 + ], + [ + 34.692826, + -2.1559174 + ], + [ + 34.6923459, + -2.1556574 + ], + [ + 34.6920481, + -2.1554832 + ], + [ + 34.6917021, + -2.1552553 + ], + [ + 34.6908975, + -2.1548077 + ], + [ + 34.6906131, + -2.154655 + ], + [ + 34.6895564, + -2.1540063 + ], + [ + 34.6893257, + -2.1538535 + ], + [ + 34.6891513, + -2.1537356 + ], + [ + 34.6884553, + -2.1533014 + ], + [ + 34.6879832, + -2.1530186 + ], + [ + 34.6877043, + -2.1528498 + ], + [ + 34.6875474, + -2.1527519 + ], + [ + 34.6873382, + -2.1526286 + ], + [ + 34.6869948, + -2.1524504 + ], + [ + 34.6866381, + -2.1522293 + ], + [ + 34.6864477, + -2.1521194 + ], + [ + 34.6862975, + -2.1520175 + ], + [ + 34.6860755, + -2.151899 + ], + [ + 34.6853828, + -2.1514225 + ], + [ + 34.6848893, + -2.1510888 + ], + [ + 34.6844535, + -2.150798 + ], + [ + 34.6843777, + -2.1507511 + ], + [ + 34.6842684, + -2.150676 + ], + [ + 34.6838211, + -2.1503395 + ], + [ + 34.6833759, + -2.1499723 + ], + [ + 34.6830095, + -2.149646 + ], + [ + 34.6827884, + -2.1494738 + ], + [ + 34.6825933, + -2.1492622 + ], + [ + 34.6823975, + -2.1490719 + ], + [ + 34.6822768, + -2.1489459 + ], + [ + 34.6821508, + -2.1487341 + ], + [ + 34.6820113, + -2.1484205 + ], + [ + 34.6819398, + -2.1482415 + ], + [ + 34.6818042, + -2.1478043 + ], + [ + 34.6816957, + -2.1474537 + ], + [ + 34.6816502, + -2.1472993 + ], + [ + 34.6814379, + -2.1465669 + ], + [ + 34.6813174, + -2.1461848 + ], + [ + 34.6810796, + -2.1453339 + ], + [ + 34.6807382, + -2.1441466 + ], + [ + 34.6805841, + -2.1436355 + ], + [ + 34.6803561, + -2.1428473 + ], + [ + 34.6801589, + -2.1421822 + ], + [ + 34.6799679, + -2.1414864 + ], + [ + 34.6796536, + -2.1404704 + ], + [ + 34.6793887, + -2.1399346 + ], + [ + 34.6791175, + -2.1395282 + ], + [ + 34.6787232, + -2.1390479 + ], + [ + 34.6783843, + -2.1385922 + ], + [ + 34.6776571, + -2.137687 + ], + [ + 34.6772381, + -2.1371882 + ], + [ + 34.6767266, + -2.1365601 + ], + [ + 34.676283, + -2.1360121 + ], + [ + 34.6759317, + -2.1355318 + ], + [ + 34.6756483, + -2.1351746 + ], + [ + 34.6754024, + -2.1348393 + ], + [ + 34.6750629, + -2.134448 + ], + [ + 34.6745884, + -2.1338753 + ], + [ + 34.6739537, + -2.1330625 + ], + [ + 34.6730931, + -2.1319467 + ], + [ + 34.6725549, + -2.1312829 + ], + [ + 34.6721482, + -2.130778 + ], + [ + 34.6717646, + -2.1302981 + ], + [ + 34.6716599, + -2.1301667 + ], + [ + 34.6715419, + -2.1300166 + ], + [ + 34.6714159, + -2.1297754 + ], + [ + 34.6713756, + -2.1296467 + ], + [ + 34.67133, + -2.1294484 + ], + [ + 34.6712791, + -2.1292018 + ], + [ + 34.6712013, + -2.1289981 + ], + [ + 34.6711208, + -2.1288534 + ], + [ + 34.6710055, + -2.1286684 + ], + [ + 34.6708049, + -2.1283887 + ], + [ + 34.6705584, + -2.1280931 + ], + [ + 34.6701515, + -2.127618 + ], + [ + 34.6699483, + -2.1273911 + ], + [ + 34.6692705, + -2.1265906 + ], + [ + 34.6691349, + -2.1264551 + ], + [ + 34.6688946, + -2.1263197 + ], + [ + 34.6685927, + -2.1262027 + ], + [ + 34.668283, + -2.1260658 + ], + [ + 34.6680812, + -2.1259256 + ], + [ + 34.6678964, + -2.1257531 + ], + [ + 34.6675451, + -2.1253837 + ], + [ + 34.6673324, + -2.1250827 + ], + [ + 34.6672185, + -2.1249403 + ], + [ + 34.6668858, + -2.1245585 + ], + [ + 34.6664175, + -2.1240105 + ], + [ + 34.6660231, + -2.1235425 + ], + [ + 34.665752, + -2.12321 + ], + [ + 34.6654747, + -2.1229021 + ], + [ + 34.6651912, + -2.1225818 + ], + [ + 34.6649509, + -2.1222863 + ], + [ + 34.6645935, + -2.1218552 + ], + [ + 34.6642484, + -2.1214119 + ], + [ + 34.6636753, + -2.1207406 + ], + [ + 34.6632625, + -2.1202542 + ], + [ + 34.6627818, + -2.1196569 + ], + [ + 34.6618452, + -2.1185608 + ], + [ + 34.6614878, + -2.1181174 + ], + [ + 34.6608901, + -2.1173846 + ], + [ + 34.6602369, + -2.1166149 + ], + [ + 34.659861, + -2.1161838 + ], + [ + 34.6591647, + -2.1153279 + ], + [ + 34.6585546, + -2.1145951 + ], + [ + 34.6579199, + -2.1138069 + ], + [ + 34.6573345, + -2.113111 + ], + [ + 34.656515, + -2.1121565 + ], + [ + 34.6560898, + -2.1116023 + ], + [ + 34.6551655, + -2.1105308 + ], + [ + 34.65416, + -2.1093411 + ], + [ + 34.6539135, + -2.1090324 + ], + [ + 34.6532829, + -2.1082297 + ], + [ + 34.6510034, + -2.1055015 + ], + [ + 34.649874, + -2.1041472 + ], + [ + 34.6481819, + -2.1021015 + ], + [ + 34.647398, + -2.1011519 + ], + [ + 34.6464584, + -2.1000513 + ], + [ + 34.6446028, + -2.0983587 + ], + [ + 34.6435868, + -2.0974675 + ], + [ + 34.6433805, + -2.0972756 + ], + [ + 34.6431957, + -2.0971023 + ], + [ + 34.6426593, + -2.0965916 + ] + ] + }, + "id": "way/224287666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/281262315", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5921109, + -1.6035946 + ], + [ + 34.5927957, + -1.6041308 + ] + ] + }, + "id": "way/281262315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/281262321", + "highway": "secondary", + "oneway": "yes", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8018696, + -1.4943325 + ], + [ + 33.8018873, + -1.4943681 + ], + [ + 33.8019409, + -1.4945156 + ] + ] + }, + "id": "way/281262321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/281262332", + "highway": "secondary", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8060918, + -1.4968736 + ], + [ + 33.8060238, + -1.4968961 + ], + [ + 33.8058195, + -1.4969623 + ], + [ + 33.8053232, + -1.4971339 + ], + [ + 33.8051328, + -1.4971969 + ], + [ + 33.804929, + -1.4972586 + ], + [ + 33.8046209, + -1.4973678 + ], + [ + 33.8044661, + -1.4973962 + ], + [ + 33.804301, + -1.4974033 + ], + [ + 33.8041429, + -1.4973792 + ], + [ + 33.8040106, + -1.4973327 + ], + [ + 33.8038217, + -1.4972267 + ], + [ + 33.8035161, + -1.4969564 + ], + [ + 33.803247, + -1.4966283 + ], + [ + 33.8031278, + -1.4965011 + ], + [ + 33.8026801, + -1.4959267 + ], + [ + 33.8024104, + -1.495438 + ], + [ + 33.8022019, + -1.4950315 + ], + [ + 33.8020804, + -1.4947596 + ], + [ + 33.8019409, + -1.4945156 + ] + ] + }, + "id": "way/281262332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/281262381", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5927957, + -1.6041308 + ], + [ + 34.5932597, + -1.6045009 + ], + [ + 34.5936937, + -1.6048634 + ], + [ + 34.5942575, + -1.6052557 + ], + [ + 34.5951774, + -1.6059165 + ], + [ + 34.5958319, + -1.6064488 + ], + [ + 34.5965427, + -1.6069675 + ], + [ + 34.596996, + -1.6074113 + ], + [ + 34.5972401, + -1.6076687 + ], + [ + 34.5973903, + -1.6077826 + ], + [ + 34.5976827, + -1.6085052 + ], + [ + 34.5978945, + -1.6088256 + ], + [ + 34.5988641, + -1.6119706 + ], + [ + 34.5989905, + -1.6123517 + ], + [ + 34.5992893, + -1.6130304 + ], + [ + 34.5993213, + -1.6133623 + ], + [ + 34.599389, + -1.6137481 + ], + [ + 34.5996383, + -1.614507 + ], + [ + 34.6001502, + -1.6160352 + ], + [ + 34.6002414, + -1.6163355 + ], + [ + 34.600735, + -1.6179804 + ], + [ + 34.6010059, + -1.6188035 + ], + [ + 34.6013304, + -1.6196118 + ], + [ + 34.6013975, + -1.6198451 + ], + [ + 34.6014699, + -1.6200864 + ], + [ + 34.6015477, + -1.6205784 + ], + [ + 34.6017582, + -1.6210516 + ], + [ + 34.6017998, + -1.6211669 + ], + [ + 34.6018642, + -1.6213224 + ], + [ + 34.6019085, + -1.6214443 + ], + [ + 34.6019701, + -1.6215758 + ], + [ + 34.6020278, + -1.6218385 + ], + [ + 34.6022222, + -1.6220275 + ], + [ + 34.6024422, + -1.6223144 + ], + [ + 34.6032509, + -1.6233654 + ], + [ + 34.6033501, + -1.6235129 + ], + [ + 34.6048575, + -1.625328 + ], + [ + 34.6066734, + -1.6275667 + ], + [ + 34.6068853, + -1.6279676 + ], + [ + 34.609133, + -1.6307265 + ], + [ + 34.6095005, + -1.6311742 + ], + [ + 34.6107798, + -1.6326716 + ], + [ + 34.6110454, + -1.6329933 + ], + [ + 34.6117991, + -1.633929 + ], + [ + 34.6122497, + -1.6345725 + ], + [ + 34.6125152, + -1.6351329 + ], + [ + 34.6124992, + -1.6353487 + ], + [ + 34.612644, + -1.6356879 + ], + [ + 34.6127605, + -1.6363785 + ], + [ + 34.6127306, + -1.6372449 + ], + [ + 34.6127851, + -1.6384139 + ], + [ + 34.612802, + -1.6387775 + ], + [ + 34.6128786, + -1.6404212 + ], + [ + 34.6128819, + -1.6404919 + ], + [ + 34.6129203, + -1.6421132 + ], + [ + 34.6130114, + -1.6426105 + ], + [ + 34.61299, + -1.6438023 + ], + [ + 34.6131349, + -1.6468882 + ], + [ + 34.6132877, + -1.6486162 + ], + [ + 34.6132395, + -1.6489312 + ], + [ + 34.6132582, + -1.6492422 + ], + [ + 34.6133494, + -1.6517544 + ], + [ + 34.6136149, + -1.654654 + ], + [ + 34.6135479, + -1.6552988 + ], + [ + 34.6135532, + -1.655705 + ], + [ + 34.6133602, + -1.6562721 + ], + [ + 34.6132636, + -1.6567439 + ], + [ + 34.6131992, + -1.6570817 + ], + [ + 34.6130141, + -1.658244 + ], + [ + 34.6128693, + -1.6587721 + ], + [ + 34.6127191, + -1.6590148 + ], + [ + 34.6127754, + -1.6591609 + ], + [ + 34.6127486, + -1.6594706 + ], + [ + 34.6128666, + -1.6599264 + ], + [ + 34.6130704, + -1.6603272 + ], + [ + 34.6136123, + -1.6616476 + ], + [ + 34.6143311, + -1.6630981 + ], + [ + 34.6147763, + -1.6637804 + ], + [ + 34.6150856, + -1.6643341 + ], + [ + 34.6162559, + -1.6662008 + ], + [ + 34.6166363, + -1.6666842 + ], + [ + 34.6177241, + -1.6683463 + ], + [ + 34.6180996, + -1.6689388 + ], + [ + 34.6182713, + -1.6693141 + ], + [ + 34.6183893, + -1.6695983 + ], + [ + 34.6184644, + -1.6699013 + ], + [ + 34.6189552, + -1.6720327 + ], + [ + 34.6190358, + -1.6727648 + ], + [ + 34.6192395, + -1.6734617 + ], + [ + 34.6194112, + -1.6741803 + ], + [ + 34.6196955, + -1.6755181 + ], + [ + 34.6198162, + -1.6760222 + ], + [ + 34.6199503, + -1.6766737 + ], + [ + 34.6201756, + -1.6776201 + ], + [ + 34.6202588, + -1.6783721 + ], + [ + 34.6207496, + -1.6805894 + ], + [ + 34.6209964, + -1.6816833 + ], + [ + 34.6212887, + -1.6827409 + ], + [ + 34.6215114, + -1.6837114 + ], + [ + 34.6217877, + -1.6852008 + ], + [ + 34.6224796, + -1.6880708 + ], + [ + 34.6227962, + -1.6898953 + ], + [ + 34.6230751, + -1.6908698 + ], + [ + 34.6232682, + -1.6920669 + ], + [ + 34.6243035, + -1.6963231 + ], + [ + 34.6247864, + -1.6988647 + ], + [ + 34.6256125, + -1.702232 + ], + [ + 34.6257439, + -1.7031423 + ], + [ + 34.6261409, + -1.7045779 + ], + [ + 34.6260926, + -1.7049332 + ], + [ + 34.6260846, + -1.7051638 + ], + [ + 34.6260738, + -1.7053983 + ], + [ + 34.6259772, + -1.7056959 + ], + [ + 34.624004, + -1.7094205 + ], + [ + 34.6233855, + -1.7107236 + ], + [ + 34.6229507, + -1.7113761 + ], + [ + 34.6226908, + -1.7118321 + ], + [ + 34.6211472, + -1.714627 + ], + [ + 34.6208517, + -1.7151108 + ], + [ + 34.6195877, + -1.7174253 + ], + [ + 34.6188857, + -1.7185648 + ], + [ + 34.6187502, + -1.7188757 + ], + [ + 34.6181515, + -1.7197787 + ], + [ + 34.6175681, + -1.7208127 + ], + [ + 34.6152014, + -1.7249987 + ], + [ + 34.6130463, + -1.728636 + ], + [ + 34.6130209, + -1.7286936 + ], + [ + 34.6129954, + -1.7287432 + ], + [ + 34.6125679, + -1.7295749 + ], + [ + 34.6122914, + -1.7299459 + ], + [ + 34.6117525, + -1.7308309 + ], + [ + 34.6110592, + -1.7321926 + ], + [ + 34.6108242, + -1.7325662 + ] + ] + }, + "id": "way/281262381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/281262433", + "highway": "secondary", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8016754, + -1.4944914 + ], + [ + 33.801029, + -1.4956216 + ], + [ + 33.8007702, + -1.4961257 + ], + [ + 33.8005093, + -1.496609 + ], + [ + 33.8001793, + -1.4971703 + ], + [ + 33.8000941, + -1.4973341 + ], + [ + 33.799491, + -1.4984351 + ], + [ + 33.7991381, + -1.4990899 + ], + [ + 33.7988859, + -1.4995967 + ], + [ + 33.7988122, + -1.4997334 + ], + [ + 33.7986083, + -1.5001101 + ], + [ + 33.7984696, + -1.5003897 + ], + [ + 33.7984367, + -1.500456 + ], + [ + 33.7982811, + -1.5007389 + ], + [ + 33.798143, + -1.5009654 + ], + [ + 33.7980638, + -1.5010781 + ], + [ + 33.7980124, + -1.5011521 + ], + [ + 33.7978533, + -1.5013207 + ], + [ + 33.7977573, + -1.501411 + ], + [ + 33.7975066, + -1.5016478 + ], + [ + 33.7973785, + -1.5017886 + ], + [ + 33.7972995, + -1.5018718 + ], + [ + 33.7971626, + -1.5020339 + ], + [ + 33.7970285, + -1.5022431 + ], + [ + 33.7968139, + -1.5026238 + ], + [ + 33.7965583, + -1.5031012 + ], + [ + 33.7963146, + -1.5035829 + ], + [ + 33.7962399, + -1.5037312 + ], + [ + 33.7960586, + -1.5041032 + ], + [ + 33.7959603, + -1.504305 + ], + [ + 33.7957196, + -1.5047823 + ], + [ + 33.7954916, + -1.5051831 + ], + [ + 33.7953468, + -1.5054713 + ], + [ + 33.7951467, + -1.5059111 + ], + [ + 33.794931, + -1.5064702 + ], + [ + 33.7947432, + -1.5069447 + ], + [ + 33.7945689, + -1.5073416 + ], + [ + 33.7944348, + -1.5075882 + ], + [ + 33.7943306, + -1.5077796 + ], + [ + 33.7943067, + -1.5078235 + ], + [ + 33.794184, + -1.5080065 + ], + [ + 33.7940922, + -1.5081231 + ], + [ + 33.7939895, + -1.5082451 + ], + [ + 33.793728, + -1.5085749 + ], + [ + 33.7936438, + -1.5086737 + ], + [ + 33.793252, + -1.5091688 + ], + [ + 33.79304, + -1.5094712 + ], + [ + 33.7928698, + -1.5097226 + ], + [ + 33.7926069, + -1.5101194 + ], + [ + 33.792395, + -1.51048 + ], + [ + 33.7921509, + -1.5109251 + ], + [ + 33.7918559, + -1.5114721 + ], + [ + 33.7914094, + -1.5122465 + ], + [ + 33.7913999, + -1.512263 + ], + [ + 33.791189, + -1.5126409 + ], + [ + 33.7910526, + -1.5128787 + ], + [ + 33.7907213, + -1.5135179 + ], + [ + 33.7905443, + -1.5138021 + ], + [ + 33.7902627, + -1.5141761 + ], + [ + 33.7901755, + -1.5142753 + ], + [ + 33.7900776, + -1.5143718 + ], + [ + 33.789816, + -1.514597 + ], + [ + 33.7890932, + -1.5152232 + ], + [ + 33.7884109, + -1.5157788 + ], + [ + 33.7879425, + -1.5161375 + ], + [ + 33.7874892, + -1.5165102 + ], + [ + 33.7869361, + -1.5169848 + ], + [ + 33.7868473, + -1.5170547 + ], + [ + 33.7866175, + -1.5172717 + ], + [ + 33.7863761, + -1.5175022 + ], + [ + 33.7861052, + -1.5178267 + ], + [ + 33.7857431, + -1.5183657 + ], + [ + 33.785611, + -1.5185285 + ], + [ + 33.7854266, + -1.5187276 + ], + [ + 33.7851557, + -1.5189823 + ], + [ + 33.785035, + -1.5191138 + ], + [ + 33.7847437, + -1.5194962 + ], + [ + 33.7844825, + -1.5199637 + ], + [ + 33.7842518, + -1.5202881 + ], + [ + 33.7840493, + -1.5206192 + ], + [ + 33.7838005, + -1.5209825 + ], + [ + 33.783083, + -1.5220061 + ], + [ + 33.7820024, + -1.5235792 + ], + [ + 33.7817177, + -1.5238501 + ], + [ + 33.7814461, + -1.5242699 + ], + [ + 33.7809019, + -1.5251107 + ], + [ + 33.7807012, + -1.5254937 + ], + [ + 33.7804931, + -1.5258503 + ], + [ + 33.780429, + -1.5259722 + ], + [ + 33.7798349, + -1.5270789 + ], + [ + 33.7797872, + -1.5271776 + ], + [ + 33.779671, + -1.5274755 + ], + [ + 33.779382, + -1.5282103 + ], + [ + 33.7792964, + -1.5284639 + ], + [ + 33.7790805, + -1.5290638 + ], + [ + 33.7790593, + -1.5291197 + ], + [ + 33.7790151, + -1.5292664 + ], + [ + 33.7790062, + -1.5292891 + ], + [ + 33.7787188, + -1.5304316 + ], + [ + 33.7787123, + -1.5304769 + ], + [ + 33.7786335, + -1.5309101 + ], + [ + 33.7785763, + -1.5311953 + ], + [ + 33.7784605, + -1.5319025 + ], + [ + 33.7783981, + -1.5322502 + ], + [ + 33.7782195, + -1.5329919 + ], + [ + 33.7781229, + -1.5333673 + ], + [ + 33.7779987, + -1.5337629 + ], + [ + 33.7779781, + -1.5338284 + ], + [ + 33.7777286, + -1.5344076 + ], + [ + 33.7776526, + -1.5346264 + ], + [ + 33.7775918, + -1.5348017 + ], + [ + 33.7774779, + -1.5350792 + ], + [ + 33.777396, + -1.5354077 + ], + [ + 33.7773491, + -1.5355937 + ], + [ + 33.7773263, + -1.5356839 + ], + [ + 33.7772228, + -1.5361853 + ], + [ + 33.7772137, + -1.536263 + ], + [ + 33.7771474, + -1.536727 + ], + [ + 33.7770917, + -1.5371689 + ], + [ + 33.777069, + -1.537349 + ], + [ + 33.7770393, + -1.5375581 + ], + [ + 33.7770179, + -1.5381399 + ], + [ + 33.7770662, + -1.5387408 + ], + [ + 33.7770715, + -1.5387995 + ], + [ + 33.7771337, + -1.5393976 + ], + [ + 33.7771412, + -1.5394698 + ], + [ + 33.7771922, + -1.5399417 + ], + [ + 33.7772002, + -1.5402339 + ], + [ + 33.7772073, + -1.5407514 + ], + [ + 33.7771992, + -1.5409954 + ], + [ + 33.77705, + -1.5416121 + ], + [ + 33.7767926, + -1.5422742 + ], + [ + 33.7763902, + -1.5433093 + ], + [ + 33.7761606, + -1.5439551 + ], + [ + 33.7759423, + -1.5445454 + ], + [ + 33.7758498, + -1.5448429 + ], + [ + 33.7754944, + -1.5457411 + ], + [ + 33.7752193, + -1.5464186 + ], + [ + 33.7752047, + -1.5464544 + ], + [ + 33.7750384, + -1.5468888 + ], + [ + 33.7749165, + -1.5472411 + ], + [ + 33.7748384, + -1.5474591 + ], + [ + 33.7745784, + -1.5481677 + ], + [ + 33.7739762, + -1.5497067 + ], + [ + 33.7739333, + -1.549814 + ], + [ + 33.7733218, + -1.5513664 + ], + [ + 33.7728068, + -1.5527627 + ], + [ + 33.772784, + -1.552827 + ], + [ + 33.7723642, + -1.5539726 + ], + [ + 33.7721121, + -1.5545705 + ], + [ + 33.7714442, + -1.5563186 + ], + [ + 33.7711143, + -1.557192 + ], + [ + 33.7708454, + -1.557926 + ], + [ + 33.7705618, + -1.5586647 + ], + [ + 33.7695409, + -1.5613224 + ], + [ + 33.7693709, + -1.5616274 + ], + [ + 33.7692358, + -1.5619611 + ], + [ + 33.7687945, + -1.5633141 + ], + [ + 33.7685427, + -1.5639287 + ], + [ + 33.768447, + -1.5643347 + ], + [ + 33.7681154, + -1.5651639 + ], + [ + 33.7680396, + -1.5652826 + ], + [ + 33.7679747, + -1.565475 + ], + [ + 33.7677354, + -1.5661876 + ], + [ + 33.7675839, + -1.5667504 + ], + [ + 33.7671036, + -1.5678563 + ], + [ + 33.7669096, + -1.5683475 + ], + [ + 33.7660283, + -1.570745 + ], + [ + 33.7656861, + -1.5716369 + ], + [ + 33.7653855, + -1.5724134 + ], + [ + 33.7643078, + -1.5752147 + ], + [ + 33.7635778, + -1.5772365 + ], + [ + 33.7634749, + -1.5775213 + ], + [ + 33.7627078, + -1.5795839 + ], + [ + 33.7623569, + -1.5804441 + ], + [ + 33.762027, + -1.5813343 + ], + [ + 33.7619626, + -1.5815461 + ], + [ + 33.7619197, + -1.5817284 + ], + [ + 33.7619169, + -1.5819004 + ], + [ + 33.7615922, + -1.5826601 + ], + [ + 33.761294, + -1.5831273 + ], + [ + 33.7611553, + -1.5832781 + ], + [ + 33.760997, + -1.5834122 + ], + [ + 33.7603989, + -1.5837715 + ], + [ + 33.7602755, + -1.5838599 + ], + [ + 33.7601602, + -1.5839725 + ], + [ + 33.7594869, + -1.5846321 + ], + [ + 33.7592107, + -1.5848734 + ], + [ + 33.7583478, + -1.585669 + ], + [ + 33.7573331, + -1.5866108 + ], + [ + 33.7568208, + -1.5870827 + ], + [ + 33.7566089, + -1.5872784 + ], + [ + 33.7563112, + -1.5875653 + ], + [ + 33.75611, + -1.5878239 + ], + [ + 33.7558217, + -1.5882222 + ], + [ + 33.7549113, + -1.5897024 + ], + [ + 33.7543619, + -1.5905955 + ], + [ + 33.7540296, + -1.5912072 + ], + [ + 33.7535312, + -1.5922107 + ], + [ + 33.7533483, + -1.5925832 + ], + [ + 33.7531481, + -1.5929944 + ], + [ + 33.7529789, + -1.5933442 + ], + [ + 33.7528276, + -1.59365 + ], + [ + 33.7522538, + -1.5948827 + ], + [ + 33.7515583, + -1.5961963 + ], + [ + 33.7510929, + -1.5970019 + ], + [ + 33.7500901, + -1.5993493 + ], + [ + 33.7496915, + -1.6001548 + ], + [ + 33.7481734, + -1.6032971 + ], + [ + 33.7477469, + -1.6042596 + ], + [ + 33.7449505, + -1.6102146 + ], + [ + 33.7445432, + -1.6110819 + ], + [ + 33.7434774, + -1.6133212 + ], + [ + 33.7429255, + -1.6143834 + ], + [ + 33.742703, + -1.6147917 + ], + [ + 33.7420129, + -1.6161099 + ], + [ + 33.7418916, + -1.6164227 + ], + [ + 33.7418621, + -1.6165487 + ], + [ + 33.7417978, + -1.6168222 + ], + [ + 33.7417388, + -1.6169991 + ], + [ + 33.7414142, + -1.6177471 + ], + [ + 33.740926, + -1.6187633 + ], + [ + 33.7407249, + -1.6191896 + ], + [ + 33.73877, + -1.6235983 + ], + [ + 33.7381691, + -1.6249427 + ], + [ + 33.737968, + -1.6253624 + ], + [ + 33.737464, + -1.6264553 + ], + [ + 33.736949, + -1.6276188 + ], + [ + 33.7364715, + -1.6287302 + ], + [ + 33.7358654, + -1.6300259 + ], + [ + 33.7355972, + -1.6305279 + ], + [ + 33.73528, + -1.6310027 + ], + [ + 33.7350386, + -1.6313485 + ], + [ + 33.7333656, + -1.6334852 + ], + [ + 33.7328754, + -1.634155 + ], + [ + 33.7321317, + -1.6352279 + ], + [ + 33.732011, + -1.6354102 + ], + [ + 33.7319172, + -1.6355899 + ], + [ + 33.731724, + -1.6360403 + ], + [ + 33.7316194, + -1.6363003 + ], + [ + 33.7315363, + -1.6364666 + ], + [ + 33.7314612, + -1.6365926 + ], + [ + 33.7313244, + -1.636799 + ], + [ + 33.7311782, + -1.6370764 + ], + [ + 33.7309918, + -1.637405 + ], + [ + 33.7307155, + -1.6378581 + ], + [ + 33.7304661, + -1.6382334 + ], + [ + 33.7300369, + -1.6388482 + ], + [ + 33.7297285, + -1.6393086 + ], + [ + 33.7295246, + -1.6396357 + ], + [ + 33.7293496, + -1.6399301 + ], + [ + 33.7289193, + -1.6407155 + ], + [ + 33.7284875, + -1.6414923 + ], + [ + 33.7276539, + -1.6430786 + ], + [ + 33.7270651, + -1.6442774 + ], + [ + 33.7267754, + -1.6449128 + ], + [ + 33.7265212, + -1.6455374 + ], + [ + 33.7261578, + -1.6465102 + ], + [ + 33.7260183, + -1.646781 + ], + [ + 33.7258789, + -1.6469472 + ], + [ + 33.7256831, + -1.6470586 + ], + [ + 33.7256041, + -1.6471036 + ], + [ + 33.7245181, + -1.6476829 + ] + ] + }, + "id": "way/281262433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/287925714", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2139277, + -3.2311823 + ], + [ + 34.2139444, + -3.2312342 + ], + [ + 34.2141707, + -3.231832 + ], + [ + 34.214258, + -3.2320628 + ], + [ + 34.2146959, + -3.2333862 + ], + [ + 34.2150555, + -3.2344996 + ], + [ + 34.2158892, + -3.2367942 + ], + [ + 34.215911, + -3.236833 + ], + [ + 34.2159257, + -3.2368709 + ], + [ + 34.217217, + -3.2402037 + ], + [ + 34.2166443, + -3.2415169 + ], + [ + 34.216454, + -3.241953 + ], + [ + 34.2160606, + -3.2428551 + ], + [ + 34.2160462, + -3.2433084 + ], + [ + 34.2159452, + -3.2465002 + ], + [ + 34.2159234, + -3.2471885 + ], + [ + 34.215893, + -3.2481476 + ], + [ + 34.2158511, + -3.2494721 + ], + [ + 34.2157279, + -3.253364 + ], + [ + 34.213913, + -3.2596812 + ], + [ + 34.2125318, + -3.2647471 + ], + [ + 34.2107647, + -3.2680173 + ], + [ + 34.2078544, + -3.2771718 + ], + [ + 34.2072863, + -3.2789588 + ], + [ + 34.2070483, + -3.2797076 + ], + [ + 34.2069624, + -3.2817593 + ], + [ + 34.2069542, + -3.2819545 + ], + [ + 34.2068262, + -3.2850108 + ], + [ + 34.2069866, + -3.2876408 + ], + [ + 34.2072631, + -3.2921753 + ], + [ + 34.207456, + -3.295338 + ], + [ + 34.2075228, + -3.296433 + ], + [ + 34.2075268, + -3.2964985 + ], + [ + 34.2083152, + -3.2980874 + ] + ] + }, + "id": "way/287925714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295123475", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8402433, + -1.8973353 + ], + [ + 33.8402811, + -1.89778 + ], + [ + 33.8403737, + -1.8992014 + ], + [ + 33.8403959, + -1.899466 + ], + [ + 33.8407594, + -1.9035373 + ], + [ + 33.8408059, + -1.9040579 + ], + [ + 33.841059, + -1.9068922 + ], + [ + 33.8413319, + -1.9096455 + ], + [ + 33.8415277, + -1.9112539 + ], + [ + 33.8416557, + -1.9123956 + ], + [ + 33.8420475, + -1.9145555 + ], + [ + 33.8424473, + -1.9167598 + ], + [ + 33.8424735, + -1.9169043 + ], + [ + 33.8433184, + -1.9206886 + ], + [ + 33.8444533, + -1.9256079 + ], + [ + 33.8445732, + -1.9260987 + ], + [ + 33.8448366, + -1.9272566 + ], + [ + 33.8449534, + -1.9277704 + ], + [ + 33.8454063, + -1.9297617 + ], + [ + 33.8455806, + -1.9307055 + ], + [ + 33.8455898, + -1.9307556 + ], + [ + 33.8458699, + -1.9317999 + ], + [ + 33.8463518, + -1.9339187 + ], + [ + 33.8463897, + -1.9340853 + ], + [ + 33.846455, + -1.9343724 + ], + [ + 33.8465401, + -1.9347464 + ], + [ + 33.8466714, + -1.9353239 + ], + [ + 33.846728, + -1.9355726 + ], + [ + 33.8468116, + -1.9359403 + ], + [ + 33.8468453, + -1.9360885 + ], + [ + 33.847025, + -1.9368784 + ], + [ + 33.8470769, + -1.9371065 + ], + [ + 33.847091, + -1.9371675 + ], + [ + 33.8472507, + -1.9378603 + ], + [ + 33.8474084, + -1.9385443 + ], + [ + 33.8474531, + -1.9387381 + ], + [ + 33.8474781, + -1.9388464 + ], + [ + 33.8475551, + -1.9391805 + ], + [ + 33.8477677, + -1.9401023 + ], + [ + 33.847791, + -1.9402007 + ], + [ + 33.8478284, + -1.9403583 + ], + [ + 33.8479046, + -1.9406801 + ], + [ + 33.8481366, + -1.9416594 + ], + [ + 33.8481824, + -1.9418524 + ], + [ + 33.8487541, + -1.9442655 + ], + [ + 33.8489077, + -1.9449136 + ], + [ + 33.84894, + -1.9450514 + ], + [ + 33.8489732, + -1.945193 + ], + [ + 33.8490954, + -1.9457141 + ], + [ + 33.8493703, + -1.9468859 + ], + [ + 33.8493949, + -1.9469633 + ], + [ + 33.8494805, + -1.9473562 + ], + [ + 33.8496923, + -1.9484021 + ], + [ + 33.8497674, + -1.9487988 + ], + [ + 33.8499123, + -1.9494958 + ], + [ + 33.8500594, + -1.950188 + ], + [ + 33.8501733, + -1.9505875 + ], + [ + 33.8502392, + -1.9507798 + ], + [ + 33.8506702, + -1.9524173 + ], + [ + 33.8507012, + -1.9525237 + ], + [ + 33.8507706, + -1.9527528 + ], + [ + 33.8508417, + -1.9529593 + ], + [ + 33.8511865, + -1.9541439 + ], + [ + 33.8513179, + -1.9545623 + ], + [ + 33.851971, + -1.9565027 + ], + [ + 33.8522523, + -1.9573707 + ], + [ + 33.8532333, + -1.9603343 + ], + [ + 33.8534588, + -1.9609765 + ], + [ + 33.8545904, + -1.9631867 + ], + [ + 33.8561241, + -1.9659284 + ], + [ + 33.8564823, + -1.9665108 + ], + [ + 33.8564997, + -1.9665406 + ], + [ + 33.8571549, + -1.9676611 + ], + [ + 33.8577792, + -1.9687289 + ], + [ + 33.8583742, + -1.9697465 + ], + [ + 33.8598718, + -1.9724368 + ], + [ + 33.8602603, + -1.973119 + ], + [ + 33.8607114, + -1.9739112 + ], + [ + 33.8610925, + -1.974626 + ], + [ + 33.8612221, + -1.9749373 + ], + [ + 33.8614746, + -1.9758236 + ], + [ + 33.8616212, + -1.9766122 + ], + [ + 33.8617891, + -1.9777508 + ], + [ + 33.8618345, + -1.9780639 + ], + [ + 33.8619303, + -1.9786815 + ], + [ + 33.8619828, + -1.9789437 + ], + [ + 33.8620489, + -1.9794138 + ], + [ + 33.8621255, + -1.9799586 + ], + [ + 33.8622812, + -1.9809296 + ], + [ + 33.8624755, + -1.9823246 + ], + [ + 33.8625979, + -1.9829814 + ], + [ + 33.862706, + -1.9837112 + ], + [ + 33.8629878, + -1.9850968 + ], + [ + 33.8631219, + -1.985711 + ], + [ + 33.8633945, + -1.9867953 + ], + [ + 33.8642221, + -1.9899565 + ], + [ + 33.8643069, + -1.9902822 + ], + [ + 33.8643256, + -1.9903541 + ], + [ + 33.8646433, + -1.9916338 + ], + [ + 33.8648936, + -1.992664 + ], + [ + 33.8650509, + -1.993648 + ], + [ + 33.865096, + -1.9939017 + ], + [ + 33.8651842, + -1.9943521 + ], + [ + 33.8654405, + -1.9957978 + ], + [ + 33.8655331, + -1.9962628 + ], + [ + 33.8658516, + -1.9978975 + ], + [ + 33.8659191, + -1.9982424 + ], + [ + 33.8660838, + -1.999078 + ], + [ + 33.8661583, + -1.9994558 + ], + [ + 33.8661807, + -1.9995634 + ], + [ + 33.8669553, + -2.0032892 + ], + [ + 33.8670292, + -2.0036657 + ], + [ + 33.8671165, + -2.0041099 + ], + [ + 33.867301, + -2.0050493 + ], + [ + 33.8674417, + -2.0059555 + ], + [ + 33.8675701, + -2.0067825 + ], + [ + 33.8678009, + -2.0084142 + ], + [ + 33.8678916, + -2.0090554 + ], + [ + 33.8680159, + -2.010329 + ], + [ + 33.8681935, + -2.0120367 + ], + [ + 33.8682291, + -2.0123792 + ], + [ + 33.8682362, + -2.0124441 + ], + [ + 33.868309, + -2.013107 + ], + [ + 33.8684422, + -2.0138861 + ], + [ + 33.8686337, + -2.0145451 + ], + [ + 33.8687005, + -2.0147077 + ], + [ + 33.8688094, + -2.0149729 + ], + [ + 33.8689069, + -2.0152103 + ], + [ + 33.8694846, + -2.0163148 + ], + [ + 33.869992, + -2.017289 + ], + [ + 33.8703667, + -2.0180153 + ], + [ + 33.8706084, + -2.0184829 + ], + [ + 33.8710317, + -2.0193007 + ], + [ + 33.8713703, + -2.0199549 + ], + [ + 33.871453, + -2.0201146 + ], + [ + 33.8720737, + -2.0213186 + ], + [ + 33.8723144, + -2.0217855 + ], + [ + 33.8728441, + -2.022813 + ], + [ + 33.8732222, + -2.0235463 + ], + [ + 33.8734406, + -2.0239092 + ], + [ + 33.873513, + -2.0240593 + ], + [ + 33.8736123, + -2.0243139 + ], + [ + 33.8736585, + -2.0245648 + ], + [ + 33.8736337, + -2.0248071 + ], + [ + 33.873572, + -2.0250859 + ], + [ + 33.8734701, + -2.0253245 + ], + [ + 33.8730382, + -2.0261674 + ], + [ + 33.8728384, + -2.0266334 + ], + [ + 33.8726786, + -2.0271126 + ], + [ + 33.8723657, + -2.0283613 + ], + [ + 33.8720926, + -2.0295478 + ], + [ + 33.8718926, + -2.0304097 + ], + [ + 33.8716792, + -2.0313836 + ], + [ + 33.871564, + -2.0319096 + ], + [ + 33.8714886, + -2.032633 + ], + [ + 33.8714619, + -2.0334228 + ], + [ + 33.8714799, + -2.0336849 + ], + [ + 33.8714953, + -2.033909 + ], + [ + 33.8715092, + -2.0341118 + ], + [ + 33.8716015, + -2.0354559 + ], + [ + 33.8716484, + -2.0361386 + ], + [ + 33.8716653, + -2.0363593 + ], + [ + 33.8717417, + -2.037359 + ], + [ + 33.8717748, + -2.0378218 + ], + [ + 33.871866, + -2.0390985 + ], + [ + 33.8718789, + -2.039247 + ], + [ + 33.871977, + -2.0403809 + ], + [ + 33.8721235, + -2.041193 + ], + [ + 33.8722701, + -2.0417344 + ], + [ + 33.8725498, + -2.0425553 + ], + [ + 33.8727585, + -2.043039 + ], + [ + 33.8730116, + -2.0435094 + ], + [ + 33.8737665, + -2.0447741 + ], + [ + 33.8741172, + -2.0454841 + ], + [ + 33.8744192, + -2.0463006 + ], + [ + 33.8745309, + -2.0467383 + ], + [ + 33.8745879, + -2.0469618 + ], + [ + 33.8746812, + -2.047623 + ], + [ + 33.8747256, + -2.0480712 + ], + [ + 33.8747256, + -2.0486702 + ], + [ + 33.8746223, + -2.0504753 + ], + [ + 33.874568, + -2.0513724 + ], + [ + 33.8744138, + -2.0540126 + ], + [ + 33.8742704, + -2.0572105 + ], + [ + 33.8740443, + -2.0606746 + ], + [ + 33.8737492, + -2.0640132 + ], + [ + 33.8735367, + -2.0665138 + ], + [ + 33.8732872, + -2.06945 + ], + [ + 33.8731212, + -2.0742297 + ], + [ + 33.8730773, + -2.0787669 + ], + [ + 33.872958, + -2.0823941 + ], + [ + 33.8728198, + -2.0854063 + ], + [ + 33.8726691, + -2.0882303 + ], + [ + 33.872483, + -2.0915499 + ], + [ + 33.8723698, + -2.0922962 + ], + [ + 33.872174, + -2.0929878 + ], + [ + 33.8719487, + -2.0935667 + ], + [ + 33.8716134, + -2.0942851 + ], + [ + 33.8707926, + -2.0959818 + ], + [ + 33.8697809, + -2.0980409 + ] + ] + }, + "id": "way/295123475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295123476", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.840222, + -1.8969666 + ], + [ + 33.8402433, + -1.8973353 + ] + ] + }, + "id": "way/295123476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/298273620", + "highway": "trunk", + "ref": "T36", + "sidewalk": "yes", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9865445, + -2.8033385 + ], + [ + 33.9866812, + -2.8030144 + ], + [ + 33.9870838, + -2.80212 + ], + [ + 33.9874289, + -2.8013879 + ], + [ + 33.9875498, + -2.8011321 + ], + [ + 33.9876986, + -2.8008326 + ], + [ + 33.9881024, + -2.7999426 + ], + [ + 33.988274, + -2.799589 + ], + [ + 33.9884867, + -2.7991396 + ], + [ + 33.9889662, + -2.7981356 + ], + [ + 33.9892235, + -2.7976146 + ], + [ + 33.9894515, + -2.7972127 + ], + [ + 33.9896901, + -2.7968528 + ], + [ + 33.9899638, + -2.7964251 + ], + [ + 33.9900772, + -2.7962631 + ], + [ + 33.9902696, + -2.7959884 + ], + [ + 33.9909213, + -2.7950764 + ], + [ + 33.9913639, + -2.7944372 + ], + [ + 33.9917515, + -2.7938758 + ], + [ + 33.9921726, + -2.7932468 + ], + [ + 33.992233, + -2.7931565 + ] + ] + }, + "id": "way/298273620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/298273621", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R366", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0111578, + -2.820467 + ], + [ + 34.0107744, + -2.8202701 + ] + ] + }, + "id": "way/298273621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/298273622", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9927464, + -2.7924164 + ], + [ + 33.992233, + -2.7931565 + ] + ] + }, + "id": "way/298273622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/298273624", + "highway": "secondary", + "name": "Arusha Road", + "ref": "R366", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0107744, + -2.8202701 + ], + [ + 34.0103406, + -2.8200189 + ], + [ + 34.0098128, + -2.8197558 + ], + [ + 34.0097795, + -2.8197374 + ], + [ + 34.0091411, + -2.8193843 + ], + [ + 34.0083396, + -2.8189829 + ], + [ + 34.0082696, + -2.8189461 + ], + [ + 34.0082117, + -2.818915 + ], + [ + 34.0075594, + -2.8185733 + ], + [ + 34.0072657, + -2.8184194 + ], + [ + 34.0067508, + -2.8181496 + ], + [ + 34.0064652, + -2.818013 + ], + [ + 34.0063661, + -2.8179656 + ], + [ + 34.0062312, + -2.8179011 + ], + [ + 34.005968, + -2.8177752 + ], + [ + 34.0055386, + -2.8175685 + ], + [ + 34.0054068, + -2.817505 + ], + [ + 34.0052366, + -2.8174231 + ], + [ + 34.0051728, + -2.8173924 + ], + [ + 34.0046814, + -2.8171751 + ], + [ + 34.004512, + -2.817063 + ], + [ + 34.0038523, + -2.8167516 + ], + [ + 34.0035537, + -2.8165337 + ], + [ + 34.0033551, + -2.8164231 + ], + [ + 34.0028932, + -2.8161473 + ], + [ + 34.0025219, + -2.8159147 + ], + [ + 34.0022103, + -2.8157276 + ], + [ + 34.0020362, + -2.8156212 + ], + [ + 34.0019902, + -2.8155931 + ], + [ + 34.0015479, + -2.8153216 + ], + [ + 34.0014532, + -2.8152635 + ], + [ + 34.0013299, + -2.8151851 + ], + [ + 34.0010406, + -2.815001 + ], + [ + 34.0008321, + -2.8148619 + ], + [ + 34.0006851, + -2.8147634 + ], + [ + 34.0006203, + -2.81472 + ], + [ + 34.0003654, + -2.8145297 + ], + [ + 34.000235, + -2.8144456 + ], + [ + 34.0000704, + -2.8143395 + ], + [ + 33.9999046, + -2.8142066 + ], + [ + 33.9997509, + -2.8140834 + ], + [ + 33.9994305, + -2.8138266 + ], + [ + 33.9990335, + -2.8135245 + ], + [ + 33.9987072, + -2.8132306 + ], + [ + 33.9984812, + -2.8130348 + ], + [ + 33.9983752, + -2.8129424 + ], + [ + 33.998277, + -2.8128881 + ], + [ + 33.9982702, + -2.8128843 + ], + [ + 33.9981676, + -2.8128246 + ], + [ + 33.9981363, + -2.8128053 + ], + [ + 33.997843, + -2.8126088 + ], + [ + 33.9976574, + -2.812511 + ], + [ + 33.9972986, + -2.8123295 + ], + [ + 33.9971857, + -2.812282 + ], + [ + 33.997078, + -2.8122293 + ], + [ + 33.9970227, + -2.8122023 + ], + [ + 33.9968044, + -2.8120988 + ], + [ + 33.99666, + -2.8120447 + ], + [ + 33.9964687, + -2.8119731 + ], + [ + 33.9964532, + -2.8119664 + ], + [ + 33.9959121, + -2.8117345 + ], + [ + 33.995634, + -2.8116418 + ], + [ + 33.9954408, + -2.8115657 + ], + [ + 33.9950072, + -2.8114322 + ], + [ + 33.9948767, + -2.8113733 + ], + [ + 33.994714, + -2.8113096 + ], + [ + 33.9945736, + -2.8112365 + ], + [ + 33.9945353, + -2.8112214 + ], + [ + 33.9934534, + -2.810755 + ], + [ + 33.9932347, + -2.8106618 + ], + [ + 33.9930083, + -2.8105653 + ], + [ + 33.9923196, + -2.8102717 + ], + [ + 33.992193, + -2.8102138 + ], + [ + 33.992151, + -2.8101946 + ], + [ + 33.9913006, + -2.8098057 + ], + [ + 33.9906397, + -2.8095307 + ], + [ + 33.9899632, + -2.8092198 + ], + [ + 33.9894462, + -2.8089628 + ], + [ + 33.9889821, + -2.8087485 + ], + [ + 33.9880373, + -2.808335 + ], + [ + 33.987537, + -2.8081047 + ], + [ + 33.9871132, + -2.8079139 + ], + [ + 33.9862768, + -2.8075456 + ], + [ + 33.9856106, + -2.8071746 + ], + [ + 33.9853933, + -2.8070339 + ], + [ + 33.9852512, + -2.8069241 + ], + [ + 33.985156, + -2.8068477 + ], + [ + 33.9850487, + -2.8067526 + ], + [ + 33.9848274, + -2.8067084 + ] + ] + }, + "id": "way/298273624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/298273626", + "highway": "secondary", + "ref": "R366", + "source": "bing", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0797824, + -2.8703469 + ], + [ + 34.0796408, + -2.8701907 + ], + [ + 34.0795349, + -2.8700756 + ], + [ + 34.0794249, + -2.8699737 + ], + [ + 34.0793009, + -2.8698707 + ], + [ + 34.0792418, + -2.8698134 + ], + [ + 34.0788948, + -2.8694773 + ], + [ + 34.0781997, + -2.8688038 + ], + [ + 34.0773312, + -2.8679624 + ], + [ + 34.076594, + -2.8672454 + ], + [ + 34.076548, + -2.8672006 + ], + [ + 34.0764878, + -2.8671424 + ], + [ + 34.0751827, + -2.8658795 + ], + [ + 34.0749261, + -2.8656308 + ], + [ + 34.0747723, + -2.8654817 + ], + [ + 34.0735453, + -2.8642924 + ], + [ + 34.0728843, + -2.8636423 + ], + [ + 34.0725383, + -2.8632914 + ], + [ + 34.0722567, + -2.8629699 + ], + [ + 34.0718315, + -2.8625507 + ], + [ + 34.071629, + -2.8623511 + ], + [ + 34.0710891, + -2.8617924 + ], + [ + 34.0709539, + -2.8616464 + ], + [ + 34.0708024, + -2.8614827 + ], + [ + 34.0705214, + -2.8611822 + ], + [ + 34.0703523, + -2.861008 + ], + [ + 34.0702395, + -2.8608966 + ], + [ + 34.0701511, + -2.8608094 + ], + [ + 34.0698668, + -2.8605696 + ], + [ + 34.0693814, + -2.8601223 + ], + [ + 34.0684237, + -2.859231 + ], + [ + 34.0680027, + -2.858831 + ], + [ + 34.0675717, + -2.8584609 + ], + [ + 34.0668747, + -2.8578009 + ], + [ + 34.0667411, + -2.8576761 + ], + [ + 34.0664175, + -2.8573764 + ], + [ + 34.0661165, + -2.8570927 + ], + [ + 34.0657201, + -2.8567201 + ], + [ + 34.0652642, + -2.8562915 + ], + [ + 34.0650435, + -2.8560899 + ], + [ + 34.0643482, + -2.855455 + ], + [ + 34.0639918, + -2.8551532 + ], + [ + 34.063956, + -2.8551212 + ], + [ + 34.0633184, + -2.8545506 + ], + [ + 34.0631134, + -2.8543355 + ], + [ + 34.0626598, + -2.8538369 + ], + [ + 34.0624835, + -2.8536224 + ], + [ + 34.0622931, + -2.8533974 + ], + [ + 34.0615544, + -2.8525647 + ], + [ + 34.0610853, + -2.8520389 + ], + [ + 34.0610314, + -2.8519785 + ], + [ + 34.0607939, + -2.8517036 + ], + [ + 34.0606837, + -2.8515742 + ], + [ + 34.0605902, + -2.8514601 + ], + [ + 34.0603899, + -2.8512156 + ], + [ + 34.0603368, + -2.8511508 + ], + [ + 34.0599075, + -2.8506267 + ], + [ + 34.0593763, + -2.8500938 + ], + [ + 34.059159, + -2.8498719 + ], + [ + 34.0585523, + -2.8492869 + ], + [ + 34.0582385, + -2.8489589 + ], + [ + 34.0580818, + -2.8488077 + ], + [ + 34.0572734, + -2.8479901 + ], + [ + 34.0566254, + -2.8473348 + ], + [ + 34.0565879, + -2.8472963 + ], + [ + 34.056531, + -2.8472379 + ], + [ + 34.0561334, + -2.8468298 + ], + [ + 34.0557478, + -2.8464615 + ], + [ + 34.0554573, + -2.8461391 + ], + [ + 34.0552542, + -2.8459135 + ], + [ + 34.054943, + -2.8455545 + ], + [ + 34.0546694, + -2.8452116 + ], + [ + 34.0545112, + -2.845016 + ], + [ + 34.0543449, + -2.8448178 + ], + [ + 34.0541223, + -2.844574 + ], + [ + 34.0536475, + -2.8441025 + ], + [ + 34.0533686, + -2.8437784 + ], + [ + 34.0531969, + -2.8435587 + ], + [ + 34.052608, + -2.8425181 + ], + [ + 34.0521631, + -2.8418103 + ], + [ + 34.0520141, + -2.8416079 + ], + [ + 34.0517232, + -2.8412128 + ], + [ + 34.0516934, + -2.8411724 + ], + [ + 34.051318, + -2.8406199 + ], + [ + 34.0511906, + -2.8404686 + ], + [ + 34.0509929, + -2.8402877 + ], + [ + 34.0504655, + -2.8398515 + ], + [ + 34.0502165, + -2.8396565 + ], + [ + 34.0496374, + -2.8391848 + ], + [ + 34.0489205, + -2.8386457 + ], + [ + 34.0486618, + -2.8384857 + ], + [ + 34.0484549, + -2.8383577 + ], + [ + 34.0481865, + -2.8381982 + ], + [ + 34.0479898, + -2.838074 + ], + [ + 34.0478412, + -2.8380079 + ], + [ + 34.0475214, + -2.8378392 + ], + [ + 34.0472342, + -2.8376704 + ], + [ + 34.0466838, + -2.8373563 + ], + [ + 34.0465297, + -2.8372764 + ], + [ + 34.0464667, + -2.8372432 + ], + [ + 34.0462348, + -2.8371211 + ], + [ + 34.0458196, + -2.8368731 + ], + [ + 34.0451223, + -2.8364246 + ], + [ + 34.0450969, + -2.8364071 + ], + [ + 34.044851, + -2.836236 + ], + [ + 34.044206, + -2.8357567 + ], + [ + 34.0439138, + -2.8355514 + ], + [ + 34.043663, + -2.8353705 + ], + [ + 34.0434142, + -2.8351637 + ], + [ + 34.0431151, + -2.8349586 + ], + [ + 34.0429898, + -2.8348629 + ], + [ + 34.0428449, + -2.8347866 + ], + [ + 34.0425996, + -2.8346823 + ], + [ + 34.0422052, + -2.8345567 + ], + [ + 34.0418699, + -2.8345171 + ], + [ + 34.0418267, + -2.834518 + ], + [ + 34.0409642, + -2.8344694 + ], + [ + 34.0403786, + -2.834437 + ], + [ + 34.0398521, + -2.834419 + ], + [ + 34.0396048, + -2.8344098 + ], + [ + 34.0390737, + -2.8343901 + ], + [ + 34.0386396, + -2.8343516 + ], + [ + 34.0384623, + -2.8343275 + ], + [ + 34.038215, + -2.8342881 + ], + [ + 34.037953, + -2.8341961 + ], + [ + 34.0376121, + -2.8340573 + ], + [ + 34.0372158, + -2.8338536 + ], + [ + 34.0370073, + -2.8337481 + ], + [ + 34.0368247, + -2.8336507 + ], + [ + 34.0365785, + -2.8335224 + ], + [ + 34.0363245, + -2.8333949 + ], + [ + 34.0360277, + -2.8332566 + ], + [ + 34.0357491, + -2.833127 + ], + [ + 34.0354049, + -2.8329662 + ], + [ + 34.0352208, + -2.8328804 + ], + [ + 34.0348014, + -2.832652 + ], + [ + 34.0344503, + -2.8324607 + ], + [ + 34.034418, + -2.8324438 + ], + [ + 34.0342331, + -2.8323472 + ], + [ + 34.0342022, + -2.8323311 + ], + [ + 34.0337416, + -2.8320903 + ], + [ + 34.0333922, + -2.8319054 + ], + [ + 34.0333497, + -2.8318804 + ], + [ + 34.0331942, + -2.8317891 + ], + [ + 34.0330494, + -2.831724 + ], + [ + 34.032039, + -2.8312178 + ], + [ + 34.0319946, + -2.8311934 + ], + [ + 34.0308287, + -2.8305553 + ], + [ + 34.0303636, + -2.8302968 + ], + [ + 34.0301491, + -2.8301776 + ], + [ + 34.0298068, + -2.8299874 + ], + [ + 34.0296891, + -2.8299245 + ], + [ + 34.0290982, + -2.8296088 + ], + [ + 34.0287061, + -2.8294406 + ], + [ + 34.0286883, + -2.829433 + ], + [ + 34.0284266, + -2.8293208 + ], + [ + 34.028361, + -2.8292939 + ], + [ + 34.0283313, + -2.8292817 + ], + [ + 34.0275531, + -2.8289628 + ], + [ + 34.0270512, + -2.8287645 + ], + [ + 34.0268032, + -2.8286665 + ], + [ + 34.0261111, + -2.8283801 + ], + [ + 34.0260576, + -2.8283579 + ], + [ + 34.025769, + -2.8282385 + ], + [ + 34.0248717, + -2.8278566 + ], + [ + 34.0244088, + -2.8276834 + ], + [ + 34.024008, + -2.8275683 + ], + [ + 34.0238243, + -2.8274689 + ], + [ + 34.0236058, + -2.8273651 + ], + [ + 34.0231952, + -2.82717 + ], + [ + 34.0231132, + -2.827131 + ], + [ + 34.0226294, + -2.826901 + ], + [ + 34.022315, + -2.8267488 + ], + [ + 34.0218787, + -2.8265302 + ], + [ + 34.0218447, + -2.8265132 + ], + [ + 34.0215495, + -2.8263493 + ], + [ + 34.0213465, + -2.8262117 + ], + [ + 34.021101, + -2.8260053 + ], + [ + 34.0208825, + -2.8258229 + ], + [ + 34.0205988, + -2.8255734 + ], + [ + 34.0202274, + -2.8252467 + ], + [ + 34.0201877, + -2.8252142 + ], + [ + 34.020107, + -2.825148 + ], + [ + 34.0199219, + -2.8249964 + ], + [ + 34.0198959, + -2.824975 + ], + [ + 34.0197645, + -2.8248651 + ], + [ + 34.0195741, + -2.8247124 + ], + [ + 34.0195276, + -2.8246685 + ], + [ + 34.0193314, + -2.8244834 + ], + [ + 34.0191691, + -2.8243481 + ], + [ + 34.0190645, + -2.8242798 + ], + [ + 34.0190175, + -2.824253 + ], + [ + 34.0188803, + -2.8241856 + ], + [ + 34.0187024, + -2.8240963 + ], + [ + 34.018427, + -2.8239674 + ], + [ + 34.0182372, + -2.8238823 + ], + [ + 34.0181984, + -2.8238649 + ], + [ + 34.0181021, + -2.8238217 + ], + [ + 34.0176703, + -2.823628 + ], + [ + 34.01703, + -2.8233314 + ], + [ + 34.0166539, + -2.8231585 + ], + [ + 34.0165145, + -2.823095 + ], + [ + 34.0162983, + -2.8229964 + ], + [ + 34.0159236, + -2.8228254 + ], + [ + 34.0149603, + -2.8224218 + ], + [ + 34.0143236, + -2.822138 + ], + [ + 34.0136886, + -2.821843 + ], + [ + 34.0133009, + -2.8216411 + ], + [ + 34.0126633, + -2.821309 + ], + [ + 34.0124971, + -2.8212137 + ], + [ + 34.0123436, + -2.8211324 + ], + [ + 34.0121764, + -2.8210439 + ], + [ + 34.0115862, + -2.820703 + ], + [ + 34.0112642, + -2.820529 + ], + [ + 34.0111578, + -2.820467 + ] + ] + }, + "id": "way/298273626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299003863", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9485827, + -3.4414908 + ], + [ + 33.9484639, + -3.4407989 + ], + [ + 33.9482425, + -3.4404183 + ], + [ + 33.946327, + -3.4369152 + ], + [ + 33.9438486, + -3.4324975 + ], + [ + 33.9420767, + -3.4293768 + ], + [ + 33.9416331, + -3.4285135 + ], + [ + 33.9412147, + -3.4278334 + ], + [ + 33.9401364, + -3.4262538 + ], + [ + 33.938857, + -3.4243314 + ], + [ + 33.9339963, + -3.4170344 + ], + [ + 33.9318068, + -3.4136966 + ], + [ + 33.9271733, + -3.4067433 + ], + [ + 33.9253226, + -3.4039828 + ], + [ + 33.9199313, + -3.3958593 + ], + [ + 33.919411, + -3.3951364 + ], + [ + 33.919006, + -3.3944857 + ], + [ + 33.918719, + -3.3939609 + ], + [ + 33.9130481, + -3.383167 + ], + [ + 33.9120129, + -3.3812375 + ], + [ + 33.9116347, + -3.3804553 + ] + ] + }, + "id": "way/299003863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299038539", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R366", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0797824, + -2.8703469 + ], + [ + 34.0799714, + -2.8700088 + ] + ] + }, + "id": "way/299038539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299038541", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R366", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1295144, + -3.0186961 + ], + [ + 34.1298719, + -3.0189813 + ] + ] + }, + "id": "way/299038541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299119095", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2083152, + -3.2980874 + ], + [ + 34.2085238, + -3.2985095 + ] + ] + }, + "id": "way/299119095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299119104", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1493434, + -3.4915778 + ], + [ + 34.1538139, + -3.4896944 + ], + [ + 34.16122, + -3.4866092 + ], + [ + 34.1722611, + -3.4824038 + ], + [ + 34.1808366, + -3.4781855 + ], + [ + 34.1868255, + -3.4742435 + ], + [ + 34.1982088, + -3.4665243 + ], + [ + 34.1996767, + -3.4636614 + ], + [ + 34.2004618, + -3.4621303 + ], + [ + 34.2006796, + -3.4617009 + ], + [ + 34.2012139, + -3.4591039 + ], + [ + 34.2012205, + -3.4569507 + ], + [ + 34.2012236, + -3.4559253 + ], + [ + 34.2011223, + -3.4513457 + ], + [ + 34.201068, + -3.4483838 + ], + [ + 34.2006391, + -3.4476345 + ], + [ + 34.1983954, + -3.4437145 + ], + [ + 34.1937595, + -3.430968 + ], + [ + 34.1928991, + -3.42727 + ], + [ + 34.190028, + -3.4183916 + ], + [ + 34.187996, + -3.4113917 + ], + [ + 34.1871605, + -3.4064062 + ], + [ + 34.1865487, + -3.40438 + ], + [ + 34.1876215, + -3.4010288 + ], + [ + 34.1882922, + -3.3989568 + ], + [ + 34.1886183, + -3.3981047 + ], + [ + 34.1888393, + -3.3975508 + ], + [ + 34.1906716, + -3.3932517 + ], + [ + 34.1910168, + -3.3924747 + ], + [ + 34.1913364, + -3.3917518 + ], + [ + 34.1916559, + -3.3910484 + ], + [ + 34.1927248, + -3.3886209 + ], + [ + 34.1930649, + -3.38785 + ], + [ + 34.1930929, + -3.3877864 + ], + [ + 34.1933695, + -3.3871816 + ], + [ + 34.1937914, + -3.3861595 + ], + [ + 34.1941024, + -3.3853708 + ], + [ + 34.194252, + -3.384695 + ], + [ + 34.1940707, + -3.3809742 + ], + [ + 34.1940497, + -3.3797561 + ], + [ + 34.1940409, + -3.3792474 + ], + [ + 34.194045, + -3.3782786 + ], + [ + 34.1940908, + -3.3763775 + ], + [ + 34.1941563, + -3.3741417 + ], + [ + 34.1941666, + -3.3738132 + ], + [ + 34.194091, + -3.3735114 + ], + [ + 34.1938412, + -3.3730049 + ], + [ + 34.1921975, + -3.3706589 + ], + [ + 34.191949, + -3.3703042 + ], + [ + 34.191712, + -3.3699134 + ], + [ + 34.1915152, + -3.3694637 + ], + [ + 34.1914432, + -3.3692443 + ], + [ + 34.1910664, + -3.368097 + ], + [ + 34.1908556, + -3.3673755 + ], + [ + 34.1910435, + -3.3661053 + ], + [ + 34.1911693, + -3.3652557 + ], + [ + 34.1912651, + -3.3646583 + ], + [ + 34.1913722, + -3.3639377 + ], + [ + 34.1913959, + -3.3637776 + ], + [ + 34.191439, + -3.3634875 + ], + [ + 34.1916209, + -3.3622634 + ], + [ + 34.191635, + -3.3620206 + ], + [ + 34.191766, + -3.3597638 + ], + [ + 34.1918174, + -3.3588775 + ], + [ + 34.1916605, + -3.3569731 + ], + [ + 34.1916174, + -3.3565236 + ], + [ + 34.1915794, + -3.3560889 + ], + [ + 34.1938239, + -3.3480268 + ], + [ + 34.1945801, + -3.344357 + ], + [ + 34.1949333, + -3.3397692 + ], + [ + 34.1956371, + -3.3387887 + ], + [ + 34.2018169, + -3.3301789 + ], + [ + 34.2020155, + -3.3266752 + ], + [ + 34.2021024, + -3.3253528 + ], + [ + 34.2020112, + -3.3226001 + ], + [ + 34.2020059, + -3.3213148 + ], + [ + 34.2021076, + -3.3206174 + ], + [ + 34.2026174, + -3.3177803 + ], + [ + 34.2028373, + -3.3168324 + ], + [ + 34.2029929, + -3.3163879 + ], + [ + 34.2031355, + -3.3161113 + ], + [ + 34.2039853, + -3.3145349 + ], + [ + 34.2048114, + -3.3129764 + ], + [ + 34.2054444, + -3.3119803 + ], + [ + 34.2059464, + -3.3114007 + ], + [ + 34.2096713, + -3.3074621 + ], + [ + 34.2101678, + -3.3065391 + ], + [ + 34.2102537, + -3.3063223 + ], + [ + 34.2103177, + -3.3058555 + ], + [ + 34.210436, + -3.3051253 + ], + [ + 34.2104816, + -3.304405 + ], + [ + 34.2104495, + -3.3026136 + ], + [ + 34.210369, + -3.3020887 + ], + [ + 34.2102025, + -3.3017265 + ], + [ + 34.2085238, + -3.2985095 + ] + ] + }, + "id": "way/299119104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299344059", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R364", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1973587, + -3.2179002 + ], + [ + 34.197518, + -3.2179344 + ] + ] + }, + "id": "way/299344059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299634473", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R186", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7216818, + -1.6497228 + ], + [ + 33.7214246, + -1.6499098 + ] + ] + }, + "id": "way/299634473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/299634474", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R186", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7156243, + -1.6674245 + ], + [ + 33.7154261, + -1.667747 + ] + ] + }, + "id": "way/299634474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300112869", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8363395, + -2.0397943 + ], + [ + 33.8363968, + -2.0397698 + ] + ] + }, + "id": "way/300112869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300112870", + "highway": "secondary", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8363968, + -2.0397698 + ], + [ + 33.836619, + -2.0396741 + ], + [ + 33.8399196, + -2.0382523 + ], + [ + 33.8433177, + -2.0367567 + ], + [ + 33.8448207, + -2.0359811 + ], + [ + 33.8476397, + -2.0343855 + ], + [ + 33.8498729, + -2.0331215 + ], + [ + 33.8518069, + -2.0320269 + ], + [ + 33.8526224, + -2.0315653 + ], + [ + 33.8533041, + -2.0312705 + ], + [ + 33.8542705, + -2.0308728 + ], + [ + 33.85513, + -2.0305192 + ], + [ + 33.8559176, + -2.0302105 + ], + [ + 33.8560655, + -2.0301526 + ], + [ + 33.8562509, + -2.030054 + ], + [ + 33.8571091, + -2.0295978 + ], + [ + 33.8590342, + -2.0285743 + ], + [ + 33.8599099, + -2.0281165 + ], + [ + 33.8618309, + -2.0271123 + ], + [ + 33.8631317, + -2.0265717 + ], + [ + 33.8633843, + -2.0264557 + ], + [ + 33.864191, + -2.0261119 + ], + [ + 33.8648453, + -2.0258716 + ], + [ + 33.8662164, + -2.0254951 + ], + [ + 33.8672375, + -2.0252493 + ], + [ + 33.8687771, + -2.0248977 + ], + [ + 33.869069, + -2.024831 + ], + [ + 33.8696311, + -2.0247593 + ], + [ + 33.871092, + -2.0247687 + ], + [ + 33.8736337, + -2.0248071 + ] + ] + }, + "id": "way/300112870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300112871", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8697809, + -2.0980409 + ], + [ + 33.8695763, + -2.0984734 + ] + ] + }, + "id": "way/300112871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300112872", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8695763, + -2.0984734 + ], + [ + 33.8688172, + -2.1000614 + ], + [ + 33.8685074, + -2.1008735 + ], + [ + 33.8682767, + -2.1016777 + ], + [ + 33.8681292, + -2.1023585 + ], + [ + 33.8680165, + -2.1030661 + ], + [ + 33.8679924, + -2.1035727 + ], + [ + 33.8679911, + -2.1043464 + ], + [ + 33.8680476, + -2.1049677 + ], + [ + 33.8682289, + -2.1059374 + ], + [ + 33.8695739, + -2.110261 + ], + [ + 33.8703273, + -2.1127262 + ], + [ + 33.8715103, + -2.1164582 + ], + [ + 33.8717149, + -2.117305 + ], + [ + 33.8718155, + -2.1180243 + ], + [ + 33.871867, + -2.1187946 + ], + [ + 33.8717226, + -2.1223392 + ], + [ + 33.8713163, + -2.1312374 + ], + [ + 33.8712558, + -2.1325626 + ], + [ + 33.8711638, + -2.1338431 + ], + [ + 33.8710003, + -2.1361188 + ], + [ + 33.8703936, + -2.1438345 + ], + [ + 33.8703425, + -2.1446823 + ], + [ + 33.8702831, + -2.145669 + ], + [ + 33.8702225, + -2.148506 + ] + ] + }, + "id": "way/300112872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300326038", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7933639, + -3.1796548 + ], + [ + 33.7934833, + -3.1799671 + ], + [ + 33.7936658, + -3.1805906 + ], + [ + 33.7936732, + -3.1806191 + ], + [ + 33.7939901, + -3.1818339 + ], + [ + 33.7941433, + -3.1823889 + ], + [ + 33.794322, + -3.1830363 + ], + [ + 33.7944384, + -3.1834519 + ], + [ + 33.7944504, + -3.1834946 + ], + [ + 33.7946348, + -3.1841529 + ], + [ + 33.7947159, + -3.1844427 + ], + [ + 33.7947693, + -3.1846332 + ], + [ + 33.7948416, + -3.1848907 + ], + [ + 33.7951496, + -3.1859881 + ], + [ + 33.7952495, + -3.1863755 + ], + [ + 33.7955373, + -3.1874919 + ], + [ + 33.795881, + -3.1887694 + ], + [ + 33.7958976, + -3.1888264 + ], + [ + 33.7959962, + -3.1892231 + ], + [ + 33.7961808, + -3.1898864 + ] + ] + }, + "id": "way/300326038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300326045", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.796245, + -3.1901116 + ], + [ + 33.7961808, + -3.1898864 + ] + ] + }, + "id": "way/300326045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300326064", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.796245, + -3.1901116 + ], + [ + 33.7965287, + -3.191113 + ], + [ + 33.7965981, + -3.1913724 + ], + [ + 33.7968978, + -3.1924922 + ], + [ + 33.7972194, + -3.1936187 + ], + [ + 33.7974943, + -3.1946024 + ], + [ + 33.7977169, + -3.1953749 + ], + [ + 33.7979786, + -3.1963982 + ], + [ + 33.798454, + -3.1980921 + ], + [ + 33.7986524, + -3.1988466 + ], + [ + 33.7987633, + -3.1992822 + ], + [ + 33.7989777, + -3.199956 + ], + [ + 33.7990283, + -3.200107 + ], + [ + 33.7990564, + -3.200191 + ], + [ + 33.7994867, + -3.2011006 + ], + [ + 33.7997786, + -3.2016317 + ], + [ + 33.800227, + -3.2022597 + ], + [ + 33.8006933, + -3.2027766 + ], + [ + 33.802042, + -3.204158 + ], + [ + 33.8035099, + -3.2056007 + ], + [ + 33.8038086, + -3.2058818 + ], + [ + 33.804743, + -3.206784 + ], + [ + 33.8051742, + -3.2072362 + ], + [ + 33.8083456, + -3.2103135 + ], + [ + 33.8110477, + -3.2129466 + ], + [ + 33.8116672, + -3.2135405 + ], + [ + 33.8157404, + -3.217492 + ], + [ + 33.8163741, + -3.2181139 + ], + [ + 33.8168721, + -3.2185864 + ], + [ + 33.817027, + -3.2187376 + ], + [ + 33.8172236, + -3.2189278 + ], + [ + 33.8174353, + -3.2191239 + ], + [ + 33.8178545, + -3.2195462 + ], + [ + 33.8182247, + -3.2199024 + ], + [ + 33.818454, + -3.220134 + ], + [ + 33.8186638, + -3.2203357 + ], + [ + 33.8188465, + -3.2205186 + ], + [ + 33.8190606, + -3.2207166 + ], + [ + 33.8192194, + -3.2208863 + ], + [ + 33.8197551, + -3.2214467 + ], + [ + 33.8206467, + -3.2222992 + ], + [ + 33.8209981, + -3.2226446 + ], + [ + 33.8212368, + -3.222891 + ], + [ + 33.8215426, + -3.2232713 + ], + [ + 33.8217933, + -3.223614 + ], + [ + 33.8226154, + -3.2248646 + ], + [ + 33.8232462, + -3.2259062 + ], + [ + 33.8243294, + -3.2275533 + ], + [ + 33.8262471, + -3.2305874 + ], + [ + 33.8265745, + -3.2311175 + ], + [ + 33.8268716, + -3.2315525 + ], + [ + 33.8278547, + -3.2330869 + ], + [ + 33.8279168, + -3.2331754 + ], + [ + 33.8289551, + -3.2348016 + ], + [ + 33.830337, + -3.2369568 + ], + [ + 33.8304367, + -3.2371128 + ], + [ + 33.8325699, + -3.2403648 + ], + [ + 33.8327442, + -3.2406321 + ] + ] + }, + "id": "way/300326064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300359159", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9980472, + -2.7709858 + ], + [ + 33.9981706, + -2.7707157 + ], + [ + 33.9984809, + -2.7700366 + ], + [ + 33.9986965, + -2.7695633 + ], + [ + 33.998793, + -2.769343 + ], + [ + 33.9993323, + -2.7681668 + ], + [ + 33.9995932, + -2.7676249 + ], + [ + 33.9997104, + -2.7673201 + ], + [ + 34.0000563, + -2.7665715 + ], + [ + 34.0001704, + -2.7662753 + ], + [ + 34.0002976, + -2.765905 + ], + [ + 34.0003914, + -2.7654788 + ], + [ + 34.0004293, + -2.7651755 + ], + [ + 34.000436, + -2.7649492 + ], + [ + 34.0004357, + -2.7647087 + ], + [ + 34.0004045, + -2.7641965 + ], + [ + 34.0003045, + -2.7627175 + ], + [ + 34.0002046, + -2.7610917 + ], + [ + 34.0001438, + -2.7602501 + ], + [ + 34.0001334, + -2.7601282 + ], + [ + 34.0001101, + -2.7598053 + ], + [ + 34.0000739, + -2.7591516 + ], + [ + 34.0000685, + -2.758956 + ], + [ + 34.0000202, + -2.758147 + ], + [ + 34.0000001, + -2.7578817 + ], + [ + 33.9999294, + -2.7567608 + ], + [ + 33.9998512, + -2.7556313 + ], + [ + 33.999803, + -2.7549883 + ], + [ + 33.9997668, + -2.7543935 + ], + [ + 33.9997373, + -2.7539809 + ], + [ + 33.9996903, + -2.7531424 + ], + [ + 33.9996474, + -2.7524646 + ], + [ + 33.9995978, + -2.751701 + ], + [ + 33.9995401, + -2.7507928 + ], + [ + 33.9994904, + -2.7498184 + ], + [ + 33.9994355, + -2.7490326 + ], + [ + 33.9993913, + -2.7483307 + ], + [ + 33.999288, + -2.7468759 + ], + [ + 33.9992478, + -2.7461392 + ], + [ + 33.9992062, + -2.7454667 + ], + [ + 33.9991258, + -2.7443093 + ], + [ + 33.9990627, + -2.7437092 + ], + [ + 33.9990051, + -2.7431734 + ], + [ + 33.9988978, + -2.7423723 + ], + [ + 33.9988066, + -2.7417132 + ], + [ + 33.9986738, + -2.7407862 + ], + [ + 33.9986148, + -2.7403951 + ], + [ + 33.9985571, + -2.7399396 + ], + [ + 33.9984699, + -2.7393556 + ], + [ + 33.9984176, + -2.7389698 + ], + [ + 33.9983626, + -2.7385224 + ], + [ + 33.9983412, + -2.7383 + ], + [ + 33.9983285, + -2.7380321 + ], + [ + 33.9983184, + -2.7378178 + ], + [ + 33.9982835, + -2.7372632 + ], + [ + 33.9982728, + -2.7369042 + ], + [ + 33.9982701, + -2.7362478 + ], + [ + 33.998276, + -2.7360382 + ], + [ + 33.9982914, + -2.735497 + ], + [ + 33.9982875, + -2.7349725 + ], + [ + 33.9983036, + -2.7347153 + ], + [ + 33.9983116, + -2.7339571 + ], + [ + 33.9983465, + -2.7331185 + ], + [ + 33.9983915, + -2.7312304 + ], + [ + 33.9984559, + -2.7294863 + ], + [ + 33.9984886, + -2.7288043 + ] + ] + }, + "id": "way/300359159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/300359160", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9984938, + -2.7285592 + ], + [ + 33.9984886, + -2.7288043 + ] + ] + }, + "id": "way/300359160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306187041", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2264924, + -1.8634542 + ], + [ + 35.2263631, + -1.8635431 + ] + ] + }, + "id": "way/306187041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306187042", + "highway": "secondary", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2263631, + -1.8635431 + ], + [ + 35.2260116, + -1.8638735 + ], + [ + 35.2240849, + -1.865654 + ], + [ + 35.222183, + -1.8671454 + ], + [ + 35.2218275, + -1.8674333 + ], + [ + 35.2215044, + -1.867709 + ], + [ + 35.2210547, + -1.8680924 + ], + [ + 35.2203796, + -1.868728 + ], + [ + 35.2197751, + -1.8692899 + ], + [ + 35.21935, + -1.8694719 + ], + [ + 35.2187771, + -1.8696705 + ], + [ + 35.2183842, + -1.8698252 + ], + [ + 35.2182366, + -1.8698971 + ], + [ + 35.2180941, + -1.8700182 + ] + ] + }, + "id": "way/306187042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/315336738", + "bridge": "yes", + "highway": "primary", + "lane_markings": "no", + "layer": "1", + "maxweight:signed": "no", + "old_ref": "B144", + "ref": "T17", + "smoothness": "intermediate", + "source": "survey", + "source:date": "2014..2015", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8365644, + -2.3037384 + ], + [ + 34.8365305, + -2.3035282 + ] + ] + }, + "id": "way/315336738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/315336740", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8365305, + -2.3035282 + ], + [ + 34.8365115, + -2.3033915 + ], + [ + 34.8364956, + -2.3032224 + ], + [ + 34.8364834, + -2.3031704 + ], + [ + 34.836454, + -2.3030965 + ], + [ + 34.8364107, + -2.3030337 + ] + ] + }, + "id": "way/315336740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/315336745", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8381354, + -2.3047412 + ], + [ + 34.8379555, + -2.3046199 + ], + [ + 34.8377638, + -2.3045555 + ], + [ + 34.8375696, + -2.3044944 + ], + [ + 34.8373599, + -2.3044682 + ], + [ + 34.8371604, + -2.3044462 + ], + [ + 34.8370053, + -2.3044039 + ], + [ + 34.8368872, + -2.3043425 + ], + [ + 34.8367674, + -2.3042628 + ], + [ + 34.8367416, + -2.3042456 + ], + [ + 34.8366471, + -2.3041119 + ], + [ + 34.8365968, + -2.3039256 + ], + [ + 34.8365644, + -2.3037384 + ] + ] + }, + "id": "way/315336745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/322208666", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "C12", + "source": "survey", + "surface": "gravel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2153821, + -1.6532923 + ], + [ + 35.2151108, + -1.6534279 + ] + ] + }, + "id": "way/322208666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/325191241", + "highway": "secondary", + "lanes": "1", + "mapillary": "1033812528879160", + "maxspeed": "50", + "old_ref": "B144", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2211206, + -1.8498728 + ], + [ + 35.2209599, + -1.8496084 + ], + [ + 35.220789, + -1.8493877 + ], + [ + 35.2207633, + -1.8492632 + ], + [ + 35.2207619, + -1.8490866 + ], + [ + 35.2207839, + -1.8488663 + ], + [ + 35.2217915, + -1.8445073 + ], + [ + 35.2219183, + -1.844214 + ], + [ + 35.2220649, + -1.8440355 + ], + [ + 35.2232829, + -1.8431245 + ], + [ + 35.2237159, + -1.8428619 + ], + [ + 35.2245096, + -1.8425045 + ], + [ + 35.2272576, + -1.8415238 + ], + [ + 35.22782, + -1.8412605 + ], + [ + 35.228194, + -1.8410045 + ], + [ + 35.2285478, + -1.8406368 + ], + [ + 35.2289818, + -1.8397956 + ], + [ + 35.2293369, + -1.83866 + ], + [ + 35.2293758, + -1.8369708 + ], + [ + 35.2292624, + -1.8335736 + ], + [ + 35.2292006, + -1.8322978 + ], + [ + 35.2291351, + -1.8318466 + ], + [ + 35.2290433, + -1.8315418 + ], + [ + 35.2288703, + -1.8310967 + ], + [ + 35.2286157, + -1.8306833 + ], + [ + 35.2283118, + -1.8303137 + ], + [ + 35.22746, + -1.8293409 + ], + [ + 35.2270619, + -1.828969 + ], + [ + 35.2251156, + -1.8273632 + ], + [ + 35.2247181, + -1.8269624 + ], + [ + 35.2232737, + -1.8253265 + ], + [ + 35.2228593, + -1.8247068 + ], + [ + 35.2226329, + -1.8241948 + ], + [ + 35.2224995, + -1.823665 + ], + [ + 35.2224554, + -1.8231993 + ], + [ + 35.2224874, + -1.8218297 + ], + [ + 35.2227107, + -1.8202605 + ], + [ + 35.2227031, + -1.8199202 + ], + [ + 35.2226066, + -1.8195056 + ], + [ + 35.2224312, + -1.8187254 + ], + [ + 35.2222969, + -1.8181282 + ], + [ + 35.2220694, + -1.8163516 + ], + [ + 35.2219431, + -1.8142393 + ], + [ + 35.2218055, + -1.8131018 + ], + [ + 35.2216977, + -1.8124056 + ], + [ + 35.2214856, + -1.811846 + ], + [ + 35.2209423, + -1.8109059 + ], + [ + 35.2207675, + -1.8104831 + ], + [ + 35.2206626, + -1.8100675 + ], + [ + 35.220604, + -1.8096127 + ], + [ + 35.2205685, + -1.8089459 + ], + [ + 35.2206019, + -1.8086351 + ], + [ + 35.2206531, + -1.8084612 + ], + [ + 35.2209116, + -1.8077492 + ], + [ + 35.2209754, + -1.8074153 + ], + [ + 35.220936, + -1.8069935 + ], + [ + 35.2205692, + -1.80493 + ], + [ + 35.2204828, + -1.8045891 + ], + [ + 35.2203469, + -1.8042711 + ], + [ + 35.2201218, + -1.8039032 + ], + [ + 35.21993, + -1.8036413 + ], + [ + 35.21955, + -1.8032698 + ], + [ + 35.2192259, + -1.8029447 + ], + [ + 35.219002, + -1.8026411 + ], + [ + 35.2187875, + -1.8022124 + ], + [ + 35.2186839, + -1.8019612 + ], + [ + 35.218336, + -1.8010765 + ], + [ + 35.2180072, + -1.8003347 + ], + [ + 35.2179239, + -1.7999883 + ], + [ + 35.2179048, + -1.7996417 + ], + [ + 35.2179751, + -1.7990463 + ], + [ + 35.2180809, + -1.798591 + ], + [ + 35.2184039, + -1.7976024 + ], + [ + 35.2183832, + -1.7973477 + ], + [ + 35.2182894, + -1.7971163 + ], + [ + 35.2181252, + -1.7968959 + ], + [ + 35.2178035, + -1.7966673 + ], + [ + 35.217237, + -1.7964212 + ], + [ + 35.2168995, + -1.7963598 + ], + [ + 35.2160209, + -1.7962756 + ], + [ + 35.2155949, + -1.7962057 + ], + [ + 35.2149797, + -1.7960516 + ], + [ + 35.2145322, + -1.7959147 + ], + [ + 35.2134871, + -1.7957443 + ], + [ + 35.2124848, + -1.7954226 + ], + [ + 35.2104751, + -1.7948702 + ], + [ + 35.2099145, + -1.794647 + ], + [ + 35.2095208, + -1.7945323 + ], + [ + 35.2081194, + -1.7944171 + ], + [ + 35.2077918, + -1.794367 + ], + [ + 35.2071555, + -1.7941537 + ], + [ + 35.2065704, + -1.7939128 + ], + [ + 35.2061506, + -1.7936907 + ], + [ + 35.204568, + -1.7927834 + ], + [ + 35.2037771, + -1.7922225 + ], + [ + 35.2030223, + -1.7914311 + ], + [ + 35.202498, + -1.7908068 + ], + [ + 35.2022622, + -1.7904756 + ], + [ + 35.2021092, + -1.7902429 + ], + [ + 35.2018813, + -1.7900486 + ], + [ + 35.2015865, + -1.7898909 + ], + [ + 35.2012801, + -1.7898313 + ], + [ + 35.1986409, + -1.7900151 + ], + [ + 35.1975556, + -1.7901107 + ], + [ + 35.1967962, + -1.7902364 + ], + [ + 35.1959191, + -1.7904834 + ], + [ + 35.1954331, + -1.7906904 + ], + [ + 35.1948811, + -1.7910556 + ], + [ + 35.1947032, + -1.7911699 + ], + [ + 35.194634, + -1.7911992 + ], + [ + 35.1943988, + -1.7912989 + ], + [ + 35.1941267, + -1.7913106 + ], + [ + 35.1928016, + -1.7911664 + ], + [ + 35.1921419, + -1.791164 + ], + [ + 35.1914276, + -1.7912121 + ], + [ + 35.1905217, + -1.7913044 + ], + [ + 35.190125, + -1.7912785 + ], + [ + 35.1896828, + -1.7911608 + ], + [ + 35.1891008, + -1.7909136 + ], + [ + 35.1884585, + -1.7905499 + ], + [ + 35.1860685, + -1.7889945 + ], + [ + 35.1849845, + -1.7883717 + ], + [ + 35.1839072, + -1.7878567 + ], + [ + 35.1838538, + -1.7878312 + ], + [ + 35.1834656, + -1.7877139 + ], + [ + 35.1831794, + -1.7876937 + ], + [ + 35.1823411, + -1.7877601 + ], + [ + 35.1812096, + -1.7878811 + ], + [ + 35.180768, + -1.7879155 + ], + [ + 35.1804514, + -1.7878851 + ], + [ + 35.1801359, + -1.7877601 + ], + [ + 35.1798322, + -1.7874887 + ], + [ + 35.1795691, + -1.7871655 + ], + [ + 35.179173, + -1.7863666 + ], + [ + 35.1787959, + -1.7856939 + ], + [ + 35.1779701, + -1.7845055 + ], + [ + 35.1775819, + -1.7838138 + ], + [ + 35.1774603, + -1.7834248 + ], + [ + 35.1772981, + -1.7825478 + ], + [ + 35.177286, + -1.782432 + ], + [ + 35.1772072, + -1.7816762 + ], + [ + 35.1772206, + -1.7811785 + ], + [ + 35.1772348, + -1.7806489 + ], + [ + 35.1773122, + -1.7796855 + ], + [ + 35.1774132, + -1.7789673 + ], + [ + 35.1774928, + -1.7784043 + ], + [ + 35.1776022, + -1.777852 + ], + [ + 35.1777286, + -1.7774197 + ], + [ + 35.1780695, + -1.7762447 + ], + [ + 35.178307, + -1.775479 + ], + [ + 35.1787052, + -1.7741772 + ], + [ + 35.1787464, + -1.773476 + ], + [ + 35.1786964, + -1.7730043 + ], + [ + 35.1785729, + -1.772273 + ], + [ + 35.1785701, + -1.7718432 + ], + [ + 35.1786038, + -1.7715521 + ], + [ + 35.1786945, + -1.7713085 + ], + [ + 35.1788936, + -1.7710024 + ], + [ + 35.1790726, + -1.7708174 + ], + [ + 35.1792, + -1.7706065 + ], + [ + 35.1793767, + -1.770311 + ], + [ + 35.1796871, + -1.7699335 + ], + [ + 35.1798293, + -1.7697914 + ], + [ + 35.18101, + -1.7689244 + ], + [ + 35.1811556, + -1.7688367 + ], + [ + 35.1821582, + -1.7682327 + ], + [ + 35.1823881, + -1.7680177 + ], + [ + 35.1826157, + -1.7677283 + ], + [ + 35.1827284, + -1.7674681 + ], + [ + 35.1828289, + -1.7673103 + ], + [ + 35.1841039, + -1.7655568 + ], + [ + 35.1846778, + -1.7647189 + ], + [ + 35.1849031, + -1.764354 + ], + [ + 35.1853512, + -1.7633625 + ], + [ + 35.185897, + -1.7622467 + ], + [ + 35.1864733, + -1.7614456 + ], + [ + 35.1867466, + -1.7608941 + ], + [ + 35.1870317, + -1.7601158 + ], + [ + 35.1872333, + -1.7595246 + ], + [ + 35.1874707, + -1.7586024 + ], + [ + 35.1876622, + -1.7577333 + ], + [ + 35.1876753, + -1.7571425 + ], + [ + 35.1877245, + -1.7565622 + ], + [ + 35.1878381, + -1.7559436 + ], + [ + 35.1880377, + -1.7552081 + ], + [ + 35.188117, + -1.7550057 + ], + [ + 35.188199, + -1.7548434 + ], + [ + 35.1884396, + -1.7543098 + ], + [ + 35.1886308, + -1.7536902 + ], + [ + 35.1891873, + -1.7525574 + ], + [ + 35.189332, + -1.7522349 + ], + [ + 35.1894149, + -1.7520114 + ], + [ + 35.1894659, + -1.7516944 + ], + [ + 35.1896156, + -1.7506288 + ], + [ + 35.1896714, + -1.7503612 + ], + [ + 35.1897766, + -1.7499837 + ], + [ + 35.1899459, + -1.7496116 + ], + [ + 35.1901716, + -1.7492338 + ], + [ + 35.1906315, + -1.7486711 + ], + [ + 35.1909485, + -1.7483569 + ], + [ + 35.1912628, + -1.7479994 + ], + [ + 35.1922625, + -1.7466486 + ], + [ + 35.19332, + -1.7450497 + ], + [ + 35.1942225, + -1.7434536 + ], + [ + 35.1950245, + -1.7414548 + ], + [ + 35.195468, + -1.7402672 + ], + [ + 35.1957362, + -1.7394493 + ], + [ + 35.1963998, + -1.7376228 + ], + [ + 35.1967442, + -1.7366489 + ], + [ + 35.1969826, + -1.7358229 + ], + [ + 35.1972136, + -1.7350652 + ], + [ + 35.197327, + -1.7347725 + ], + [ + 35.1974374, + -1.7345853 + ], + [ + 35.1975424, + -1.7343301 + ], + [ + 35.1976467, + -1.7341054 + ], + [ + 35.1977183, + -1.7339118 + ], + [ + 35.1977708, + -1.7336795 + ], + [ + 35.1978058, + -1.7333836 + ], + [ + 35.1978319, + -1.7329585 + ], + [ + 35.1978406, + -1.7326366 + ], + [ + 35.1978519, + -1.7324111 + ], + [ + 35.1979031, + -1.7319398 + ], + [ + 35.1979522, + -1.7315992 + ], + [ + 35.1980526, + -1.7311965 + ], + [ + 35.1985621, + -1.7298052 + ], + [ + 35.1991714, + -1.7285325 + ], + [ + 35.2000259, + -1.7264095 + ], + [ + 35.2001989, + -1.7259213 + ], + [ + 35.2005457, + -1.7248136 + ], + [ + 35.2006477, + -1.7243276 + ], + [ + 35.2007164, + -1.7239199 + ], + [ + 35.2007733, + -1.7232157 + ], + [ + 35.2009786, + -1.721792 + ], + [ + 35.2011064, + -1.7206721 + ], + [ + 35.2010686, + -1.7200903 + ], + [ + 35.2009236, + -1.7184242 + ], + [ + 35.2009061, + -1.7177232 + ], + [ + 35.2009271, + -1.7170283 + ], + [ + 35.2009792, + -1.7166074 + ], + [ + 35.2010701, + -1.7162212 + ], + [ + 35.2017443, + -1.7136666 + ], + [ + 35.2019978, + -1.7128033 + ], + [ + 35.2020983, + -1.7124803 + ], + [ + 35.2023129, + -1.7117256 + ], + [ + 35.2024457, + -1.7112162 + ], + [ + 35.2025838, + -1.7105754 + ], + [ + 35.2026455, + -1.7103073 + ], + [ + 35.2026804, + -1.7101679 + ], + [ + 35.2027485, + -1.7099882 + ], + [ + 35.2028351, + -1.7097614 + ], + [ + 35.2028959, + -1.7096666 + ], + [ + 35.2030473, + -1.7094178 + ], + [ + 35.2032694, + -1.7091739 + ], + [ + 35.2035018, + -1.7089403 + ], + [ + 35.2037339, + -1.7087426 + ], + [ + 35.204036, + -1.7084933 + ], + [ + 35.2044292, + -1.7082295 + ], + [ + 35.2049509, + -1.7078649 + ], + [ + 35.2054565, + -1.7074869 + ], + [ + 35.2055839, + -1.7073676 + ], + [ + 35.2056952, + -1.707255 + ], + [ + 35.2058373, + -1.7070646 + ], + [ + 35.2059701, + -1.7068595 + ], + [ + 35.2061652, + -1.7065371 + ], + [ + 35.2064958, + -1.705881 + ], + [ + 35.2068901, + -1.7051262 + ], + [ + 35.207102, + -1.7047067 + ], + [ + 35.2075124, + -1.7039077 + ], + [ + 35.2077511, + -1.7033313 + ], + [ + 35.2080086, + -1.7027013 + ], + [ + 35.2082728, + -1.7020203 + ], + [ + 35.2085799, + -1.7011691 + ], + [ + 35.2086456, + -1.7008969 + ], + [ + 35.20871, + -1.7005377 + ], + [ + 35.2087542, + -1.7003145 + ], + [ + 35.2087858, + -1.7002039 + ], + [ + 35.2088106, + -1.7001322 + ], + [ + 35.2088508, + -1.7000692 + ], + [ + 35.2089326, + -1.6999586 + ], + [ + 35.2091297, + -1.6997588 + ], + [ + 35.2093416, + -1.6995484 + ], + [ + 35.209453, + -1.6994358 + ], + [ + 35.209579, + -1.6992923 + ], + [ + 35.2097359, + -1.6990765 + ], + [ + 35.2098982, + -1.6988097 + ], + [ + 35.2100819, + -1.6984706 + ], + [ + 35.2101892, + -1.6982226 + ], + [ + 35.2102952, + -1.6979089 + ], + [ + 35.2103367, + -1.6977266 + ], + [ + 35.2103636, + -1.6974867 + ], + [ + 35.2103797, + -1.6970403 + ], + [ + 35.2103797, + -1.6963861 + ], + [ + 35.2103797, + -1.6956515 + ], + [ + 35.2103998, + -1.6954008 + ], + [ + 35.2104279, + -1.6952265 + ], + [ + 35.2104776, + -1.6950523 + ], + [ + 35.2106197, + -1.6945322 + ], + [ + 35.2106935, + -1.6943244 + ], + [ + 35.2109167, + -1.6937502 + ], + [ + 35.2114445, + -1.6919892 + ], + [ + 35.2118951, + -1.6902546 + ], + [ + 35.2121419, + -1.6891312 + ], + [ + 35.2123032, + -1.6885176 + ], + [ + 35.2125818, + -1.6873751 + ], + [ + 35.2128446, + -1.6862303 + ], + [ + 35.2129936, + -1.6854633 + ], + [ + 35.2131236, + -1.6842571 + ], + [ + 35.2132013, + -1.6833696 + ], + [ + 35.2132952, + -1.6824259 + ], + [ + 35.2134347, + -1.6809728 + ], + [ + 35.21355, + -1.6796617 + ], + [ + 35.213576, + -1.6786263 + ], + [ + 35.2135742, + -1.6777743 + ], + [ + 35.2136037, + -1.6770745 + ], + [ + 35.2136251, + -1.6766321 + ], + [ + 35.2136573, + -1.6763024 + ], + [ + 35.2136935, + -1.6760718 + ], + [ + 35.2137619, + -1.6758385 + ], + [ + 35.2138692, + -1.6754927 + ], + [ + 35.2142313, + -1.6746276 + ], + [ + 35.2146471, + -1.6736186 + ], + [ + 35.2148992, + -1.6731521 + ], + [ + 35.2153444, + -1.672329 + ], + [ + 35.2158031, + -1.6715984 + ], + [ + 35.2159792, + -1.6712351 + ], + [ + 35.2161156, + -1.6709858 + ], + [ + 35.2163717, + -1.6703437 + ], + [ + 35.2164562, + -1.6700796 + ], + [ + 35.2165595, + -1.6698397 + ], + [ + 35.2166252, + -1.6695769 + ], + [ + 35.2166882, + -1.6693128 + ], + [ + 35.2167781, + -1.6689294 + ], + [ + 35.2169001, + -1.6684267 + ], + [ + 35.2170101, + -1.6679079 + ], + [ + 35.2171214, + -1.6673771 + ], + [ + 35.217226, + -1.6669039 + ], + [ + 35.2173189, + -1.666366 + ], + [ + 35.2173541, + -1.6661657 + ], + [ + 35.2174159, + -1.665832 + ], + [ + 35.2174509, + -1.6656131 + ], + [ + 35.2174909, + -1.6654105 + ], + [ + 35.2175331, + -1.6651625 + ], + [ + 35.2177461, + -1.6638569 + ] + ] + }, + "id": "way/325191241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/340047746", + "highway": "primary", + "lanes:backward": "1", + "lanes:forward": "1", + "ref": "C727", + "source": "Africover", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6258968, + -1.1617119 + ], + [ + 34.6258539, + -1.1622663 + ], + [ + 34.6258217, + -1.1627275 + ], + [ + 34.6258043, + -1.1629233 + ], + [ + 34.6257788, + -1.1631405 + ], + [ + 34.6257305, + -1.163717 + ], + [ + 34.625704, + -1.1640791 + ], + [ + 34.625693, + -1.1642293 + ], + [ + 34.6256581, + -1.1646436 + ], + [ + 34.625646, + -1.1648675 + ], + [ + 34.6256179, + -1.165495 + ], + [ + 34.6256232, + -1.1656894 + ], + [ + 34.6256635, + -1.1666441 + ], + [ + 34.6256715, + -1.1668787 + ], + [ + 34.6257211, + -1.1674379 + ], + [ + 34.6257721, + -1.1682812 + ], + [ + 34.6258242, + -1.1692616 + ], + [ + 34.62587, + -1.1699546 + ], + [ + 34.625921, + -1.1707805 + ], + [ + 34.6259576, + -1.1713852 + ], + [ + 34.6259665, + -1.1715327 + ], + [ + 34.6261315, + -1.1739623 + ], + [ + 34.6262096, + -1.1753965 + ], + [ + 34.6262214, + -1.1756209 + ], + [ + 34.62626, + -1.176399 + ], + [ + 34.6262911, + -1.1767552 + ], + [ + 34.6262951, + -1.1768008 + ], + [ + 34.6263058, + -1.1769403 + ], + [ + 34.62633, + -1.1774686 + ], + [ + 34.6263434, + -1.1776764 + ], + [ + 34.6263917, + -1.1786646 + ], + [ + 34.6263944, + -1.1788375 + ], + [ + 34.6264292, + -1.1794825 + ], + [ + 34.6264594, + -1.1800671 + ], + [ + 34.6264695, + -1.1802253 + ], + [ + 34.6264896, + -1.1806342 + ], + [ + 34.6265231, + -1.1813543 + ], + [ + 34.6265285, + -1.181491 + ], + [ + 34.6265261, + -1.1816576 + ], + [ + 34.6265244, + -1.1820501 + ], + [ + 34.6264829, + -1.1824564 + ], + [ + 34.6264145, + -1.1830276 + ], + [ + 34.6263394, + -1.1836336 + ], + [ + 34.6262898, + -1.18393 + ], + [ + 34.6262079, + -1.1846017 + ], + [ + 34.6261731, + -1.1848565 + ], + [ + 34.626157, + -1.1849423 + ], + [ + 34.6261168, + -1.1852896 + ], + [ + 34.6260484, + -1.1858607 + ], + [ + 34.6260068, + -1.1861517 + ], + [ + 34.6259773, + -1.1863367 + ], + [ + 34.6259293, + -1.1866921 + ], + [ + 34.625925, + -1.186743 + ], + [ + 34.6258928, + -1.1870608 + ], + [ + 34.6258593, + -1.1872793 + ], + [ + 34.6258512, + -1.1873423 + ], + [ + 34.6258204, + -1.187463 + ], + [ + 34.6257587, + -1.187636 + ], + [ + 34.6257258, + -1.1877064 + ], + [ + 34.6256608, + -1.1878317 + ], + [ + 34.6255857, + -1.1879672 + ], + [ + 34.6254972, + -1.1880811 + ], + [ + 34.6254663, + -1.1881261 + ], + [ + 34.6252558, + -1.1883292 + ], + [ + 34.6251069, + -1.1884391 + ], + [ + 34.6249069, + -1.1885515 + ], + [ + 34.6248682, + -1.1885732 + ], + [ + 34.6247185, + -1.1886416 + ], + [ + 34.6243666, + -1.1888025 + ], + [ + 34.6242875, + -1.1888374 + ], + [ + 34.6239991, + -1.1889567 + ], + [ + 34.6237122, + -1.1891015 + ], + [ + 34.6234372, + -1.1892342 + ], + [ + 34.6233688, + -1.1892678 + ], + [ + 34.6232669, + -1.1893294 + ], + [ + 34.6231408, + -1.1894072 + ], + [ + 34.6230721, + -1.1894536 + ], + [ + 34.6229719, + -1.1895212 + ], + [ + 34.6227787, + -1.1896553 + ], + [ + 34.622481, + -1.1898859 + ], + [ + 34.6224046, + -1.1899529 + ], + [ + 34.6222007, + -1.1901634 + ], + [ + 34.6220344, + -1.1903458 + ], + [ + 34.6218722, + -1.1905469 + ], + [ + 34.6217448, + -1.1907051 + ], + [ + 34.6215892, + -1.1909143 + ], + [ + 34.6213076, + -1.1912884 + ], + [ + 34.6210224, + -1.1916877 + ], + [ + 34.6208757, + -1.1918931 + ], + [ + 34.6207403, + -1.1920982 + ], + [ + 34.6207027, + -1.1921492 + ], + [ + 34.6206276, + -1.192298 + ], + [ + 34.6204251, + -1.1926748 + ], + [ + 34.6203534, + -1.1928196 + ], + [ + 34.620173, + -1.1931843 + ], + [ + 34.6200402, + -1.1934404 + ], + [ + 34.6199859, + -1.1935429 + ], + [ + 34.6198243, + -1.1938761 + ], + [ + 34.6197237, + -1.1940746 + ], + [ + 34.6196392, + -1.1942435 + ], + [ + 34.6194604, + -1.1945765 + ], + [ + 34.6193241, + -1.1948469 + ], + [ + 34.6189941, + -1.1955227 + ], + [ + 34.6188989, + -1.1957171 + ], + [ + 34.6187085, + -1.1960925 + ], + [ + 34.6185918, + -1.1963271 + ], + [ + 34.6184751, + -1.1965712 + ], + [ + 34.6182659, + -1.1969949 + ], + [ + 34.6180607, + -1.1973944 + ], + [ + 34.6180259, + -1.1974668 + ], + [ + 34.6178488, + -1.1978342 + ], + [ + 34.6176893, + -1.1982003 + ], + [ + 34.6176144, + -1.1983832 + ], + [ + 34.6175699, + -1.1984865 + ], + [ + 34.6174224, + -1.1988506 + ], + [ + 34.6172373, + -1.1992992 + ], + [ + 34.6172011, + -1.1993869 + ], + [ + 34.6171714, + -1.1994603 + ], + [ + 34.6171196, + -1.1995881 + ], + [ + 34.617067, + -1.1997181 + ], + [ + 34.6170241, + -1.199828 + ], + [ + 34.6168511, + -1.2002504 + ], + [ + 34.6166003, + -1.2008685 + ], + [ + 34.6164943, + -1.2011702 + ], + [ + 34.6163951, + -1.2014946 + ], + [ + 34.6162824, + -1.2018955 + ], + [ + 34.6162087, + -1.2021208 + ], + [ + 34.6161494, + -1.2023021 + ], + [ + 34.6160705, + -1.2025726 + ], + [ + 34.6160223, + -1.2027188 + ], + [ + 34.6159552, + -1.2029454 + ], + [ + 34.615923, + -1.2031076 + ], + [ + 34.6159021, + -1.2032158 + ], + [ + 34.6158935, + -1.2032565 + ], + [ + 34.6158613, + -1.2035045 + ], + [ + 34.6158278, + -1.2037391 + ], + [ + 34.6157876, + -1.2040583 + ], + [ + 34.6157581, + -1.2043117 + ], + [ + 34.6157433, + -1.2044431 + ], + [ + 34.6157178, + -1.2046268 + ], + [ + 34.6156695, + -1.2049432 + ], + [ + 34.6156064, + -1.2054471 + ], + [ + 34.6155408, + -1.2060132 + ], + [ + 34.6154808, + -1.2065892 + ], + [ + 34.6154737, + -1.2066326 + ], + [ + 34.6154456, + -1.2069155 + ], + [ + 34.6154228, + -1.207417 + ], + [ + 34.6154107, + -1.2077723 + ], + [ + 34.6153985, + -1.2080859 + ], + [ + 34.6153839, + -1.2083636 + ], + [ + 34.6153584, + -1.2086103 + ], + [ + 34.615341, + -1.2087256 + ], + [ + 34.6153222, + -1.2088007 + ], + [ + 34.615294, + -1.2089468 + ], + [ + 34.6152551, + -1.2091091 + ], + [ + 34.6151881, + -1.2093933 + ], + [ + 34.6150915, + -1.2097647 + ], + [ + 34.6150312, + -1.2099618 + ], + [ + 34.6149454, + -1.2101851 + ], + [ + 34.6149065, + -1.2102702 + ], + [ + 34.6147791, + -1.2105518 + ], + [ + 34.6147623, + -1.2105907 + ], + [ + 34.614731, + -1.2106645 + ], + [ + 34.6146128, + -1.2109433 + ], + [ + 34.6143512, + -1.2115708 + ], + [ + 34.6142453, + -1.2118242 + ], + [ + 34.6139181, + -1.2125482 + ], + [ + 34.6137719, + -1.2128821 + ], + [ + 34.6135412, + -1.2133608 + ], + [ + 34.6134581, + -1.2135418 + ], + [ + 34.6131577, + -1.2141331 + ], + [ + 34.6129216, + -1.2145809 + ], + [ + 34.6125528, + -1.2152594 + ], + [ + 34.6124209, + -1.2155112 + ] + ] + }, + "id": "way/340047746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/340047747", + "highway": "primary", + "ref": "C727", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6004723, + -1.2347365 + ], + [ + 34.600574, + -1.2351319 + ], + [ + 34.6008795, + -1.2362921 + ], + [ + 34.6010475, + -1.236881 + ], + [ + 34.6011091, + -1.2371213 + ], + [ + 34.6011746, + -1.2373989 + ], + [ + 34.6012245, + -1.2376322 + ], + [ + 34.6013137, + -1.2379751 + ], + [ + 34.6014047, + -1.2383148 + ], + [ + 34.6014371, + -1.238439 + ], + [ + 34.6015839, + -1.2390022 + ], + [ + 34.6016757, + -1.239366 + ], + [ + 34.6019064, + -1.2402348 + ], + [ + 34.6019715, + -1.2405427 + ], + [ + 34.6020091, + -1.2408189 + ], + [ + 34.6020171, + -1.2410335 + ], + [ + 34.6020278, + -1.2412587 + ], + [ + 34.6020278, + -1.2416985 + ], + [ + 34.6020332, + -1.2420981 + ], + [ + 34.6020895, + -1.2432511 + ], + [ + 34.6020922, + -1.2433866 + ], + [ + 34.6021068, + -1.2438008 + ], + [ + 34.6021378, + -1.2446777 + ], + [ + 34.6021458, + -1.2449754 + ], + [ + 34.6021686, + -1.2454085 + ], + [ + 34.6021861, + -1.2460936 + ], + [ + 34.6021878, + -1.246166 + ], + [ + 34.6021968, + -1.2465629 + ], + [ + 34.602254, + -1.2476651 + ], + [ + 34.6023296, + -1.2482295 + ], + [ + 34.6023811, + -1.2488105 + ], + [ + 34.6023878, + -1.2488465 + ], + [ + 34.602394, + -1.2488798 + ], + [ + 34.6024516, + -1.2491265 + ], + [ + 34.6025106, + -1.2492753 + ], + [ + 34.6025793, + -1.2494597 + ], + [ + 34.6026742, + -1.2496521 + ], + [ + 34.6028157, + -1.2498509 + ], + [ + 34.6029988, + -1.2500999 + ], + [ + 34.6030618, + -1.2501817 + ], + [ + 34.6032777, + -1.2504378 + ], + [ + 34.6035065, + -1.2506679 + ], + [ + 34.6038361, + -1.2510513 + ], + [ + 34.603947, + -1.2511578 + ], + [ + 34.6040556, + -1.2512637 + ], + [ + 34.6043042, + -1.2514814 + ], + [ + 34.6045116, + -1.2516445 + ], + [ + 34.6049716, + -1.2519475 + ], + [ + 34.6052055, + -1.2520981 + ], + [ + 34.6056005, + -1.2523202 + ], + [ + 34.6058728, + -1.2524583 + ], + [ + 34.6062845, + -1.252634 + ], + [ + 34.6066909, + -1.2528217 + ], + [ + 34.6072662, + -1.253063 + ], + [ + 34.6080494, + -1.2533821 + ], + [ + 34.6083136, + -1.2534813 + ], + [ + 34.6087226, + -1.2536449 + ], + [ + 34.6090276, + -1.2538009 + ], + [ + 34.6091153, + -1.2538723 + ], + [ + 34.609243, + -1.2540257 + ], + [ + 34.6093047, + -1.2541196 + ], + [ + 34.609379, + -1.2542433 + ], + [ + 34.6094763, + -1.2544199 + ], + [ + 34.6095702, + -1.2546103 + ], + [ + 34.609648, + -1.2547685 + ], + [ + 34.6097563, + -1.2549772 + ], + [ + 34.6098532, + -1.2551748 + ], + [ + 34.610179, + -1.2558504 + ], + [ + 34.6105807, + -1.2566326 + ], + [ + 34.6108603, + -1.2571967 + ], + [ + 34.6111366, + -1.2577987 + ], + [ + 34.611343, + -1.2582586 + ] + ] + }, + "id": "way/340047747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/340047748", + "highway": "primary", + "ref": "C727", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.611343, + -1.2582586 + ], + [ + 34.6113981, + -1.2583966 + ], + [ + 34.6115872, + -1.2588472 + ], + [ + 34.6117213, + -1.2592011 + ], + [ + 34.6118597, + -1.2595906 + ], + [ + 34.6119761, + -1.2599654 + ], + [ + 34.6120298, + -1.2601665 + ], + [ + 34.6120854, + -1.2604029 + ], + [ + 34.6121318, + -1.2606486 + ], + [ + 34.6122175, + -1.2610407 + ], + [ + 34.6123167, + -1.261484 + ], + [ + 34.6124375, + -1.2621213 + ], + [ + 34.6124938, + -1.2624458 + ], + [ + 34.6125414, + -1.2628163 + ], + [ + 34.6125475, + -1.2629741 + ], + [ + 34.6125501, + -1.263135 + ], + [ + 34.612526, + -1.2633978 + ], + [ + 34.6124938, + -1.2637142 + ], + [ + 34.6124454, + -1.2642038 + ], + [ + 34.6123382, + -1.265299 + ], + [ + 34.6123123, + -1.2655338 + ], + [ + 34.6122444, + -1.266149 + ], + [ + 34.6122015, + -1.266499 + ], + [ + 34.6121103, + -1.2674509 + ], + [ + 34.6120593, + -1.2678652 + ], + [ + 34.6119936, + -1.2683546 + ], + [ + 34.6119332, + -1.2686831 + ], + [ + 34.6118179, + -1.269328 + ], + [ + 34.6116543, + -1.2702518 + ], + [ + 34.6115309, + -1.2709007 + ], + [ + 34.6115108, + -1.2710026 + ], + [ + 34.6114209, + -1.271539 + ], + [ + 34.6112613, + -1.2723582 + ], + [ + 34.611118, + -1.2731596 + ], + [ + 34.6110588, + -1.2735394 + ], + [ + 34.6109758, + -1.2742567 + ] + ] + }, + "id": "way/340047748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/345697159", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "T17", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3100533, + -1.9732489 + ], + [ + 34.3101818, + -1.9732762 + ] + ] + }, + "id": "way/345697159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/345697166", + "highway": "primary", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4673527, + -2.073702 + ], + [ + 34.4673715, + -2.0739084 + ], + [ + 34.4673796, + -2.0742649 + ], + [ + 34.4675526, + -2.0750476 + ], + [ + 34.4676223, + -2.0752031 + ], + [ + 34.4677618, + -2.0753907 + ], + [ + 34.468134, + -2.0757517 + ], + [ + 34.4687831, + -2.0763012 + ], + [ + 34.4695636, + -2.0767622 + ], + [ + 34.4705171, + -2.0772139 + ], + [ + 34.4709496, + -2.077401 + ], + [ + 34.4714672, + -2.0776529 + ], + [ + 34.4718722, + -2.0778326 + ], + [ + 34.4721378, + -2.0780416 + ], + [ + 34.4723189, + -2.0781945 + ], + [ + 34.472465, + -2.0783606 + ], + [ + 34.4727493, + -2.0788351 + ], + [ + 34.4732268, + -2.0797089 + ], + [ + 34.473849, + -2.0808427 + ], + [ + 34.4744177, + -2.0819497 + ], + [ + 34.4746234, + -2.0824212 + ], + [ + 34.4747993, + -2.0830854 + ], + [ + 34.4749587, + -2.0836542 + ], + [ + 34.4750943, + -2.0841709 + ], + [ + 34.4751625, + -2.0844396 + ], + [ + 34.4751848, + -2.0846972 + ], + [ + 34.4751733, + -2.0849248 + ], + [ + 34.4751338, + -2.0851422 + ], + [ + 34.4750713, + -2.0854045 + ], + [ + 34.474981, + -2.0856594 + ], + [ + 34.4745062, + -2.0864931 + ], + [ + 34.4739644, + -2.087324 + ], + [ + 34.4737203, + -2.0877475 + ], + [ + 34.4735111, + -2.0882085 + ], + [ + 34.4732241, + -2.0892405 + ], + [ + 34.4729156, + -2.0901224 + ], + [ + 34.4727011, + -2.0907174 + ], + [ + 34.4726314, + -2.0910337 + ], + [ + 34.4726099, + -2.0913822 + ], + [ + 34.4727762, + -2.0924409 + ], + [ + 34.4728585, + -2.0927623 + ], + [ + 34.4730739, + -2.0934595 + ], + [ + 34.4732474, + -2.0938774 + ], + [ + 34.4733938, + -2.0942841 + ], + [ + 34.4736218, + -2.095158 + ], + [ + 34.4737934, + -2.096072 + ], + [ + 34.4738793, + -2.096978 + ], + [ + 34.4739115, + -2.0979483 + ], + [ + 34.4739233, + -2.0980883 + ], + [ + 34.4739582, + -2.0982893 + ], + [ + 34.4740643, + -2.0985621 + ], + [ + 34.4742977, + -2.0991893 + ], + [ + 34.4744705, + -2.0996376 + ], + [ + 34.4745766, + -2.1000524 + ], + [ + 34.4747356, + -2.1008199 + ], + [ + 34.4748288, + -2.1011031 + ], + [ + 34.4751453, + -2.1018188 + ], + [ + 34.4754591, + -2.1024943 + ], + [ + 34.4758346, + -2.1031268 + ], + [ + 34.4759771, + -2.1034013 + ], + [ + 34.4763093, + -2.1038506 + ], + [ + 34.4769893, + -2.1045823 + ], + [ + 34.4776169, + -2.1052685 + ], + [ + 34.4781829, + -2.1058542 + ], + [ + 34.4784603, + -2.1061563 + ], + [ + 34.4786911, + -2.1064371 + ], + [ + 34.4789713, + -2.1067406 + ], + [ + 34.4791646, + -2.1070078 + ], + [ + 34.4792115, + -2.1070831 + ], + [ + 34.4797158, + -2.107839 + ], + [ + 34.4804078, + -2.108879 + ], + [ + 34.4805721, + -2.1091342 + ], + [ + 34.4807813, + -2.1094666 + ], + [ + 34.4810441, + -2.1098043 + ], + [ + 34.4813016, + -2.1101474 + ], + [ + 34.4818488, + -2.1107853 + ], + [ + 34.4820795, + -2.1110212 + ], + [ + 34.4824389, + -2.1113804 + ], + [ + 34.482691, + -2.1116109 + ], + [ + 34.4834045, + -2.1123507 + ], + [ + 34.4837639, + -2.1127366 + ], + [ + 34.4843326, + -2.1133156 + ], + [ + 34.4845471, + -2.1135032 + ], + [ + 34.485046, + -2.1139267 + ], + [ + 34.4855878, + -2.114377 + ], + [ + 34.4861618, + -2.1148541 + ], + [ + 34.4866446, + -2.1152401 + ], + [ + 34.486945, + -2.1154814 + ], + [ + 34.4874546, + -2.115862 + ], + [ + 34.4879226, + -2.1162711 + ], + [ + 34.4884065, + -2.1166485 + ], + [ + 34.488616, + -2.1168326 + ], + [ + 34.4892624, + -2.1173791 + ], + [ + 34.4897613, + -2.117749 + ], + [ + 34.4902495, + -2.1181456 + ], + [ + 34.4908235, + -2.1185906 + ], + [ + 34.4912634, + -2.1189712 + ], + [ + 34.4916067, + -2.1192392 + ], + [ + 34.4919446, + -2.1195287 + ], + [ + 34.4923148, + -2.1198396 + ], + [ + 34.492642, + -2.120113 + ], + [ + 34.4929746, + -2.1203918 + ], + [ + 34.4935164, + -2.1208099 + ], + [ + 34.4938168, + -2.1210244 + ], + [ + 34.494095, + -2.1212238 + ], + [ + 34.4945571, + -2.1215551 + ], + [ + 34.4950614, + -2.1219357 + ], + [ + 34.4953618, + -2.1221716 + ], + [ + 34.4957802, + -2.1225039 + ], + [ + 34.4960645, + -2.1228202 + ], + [ + 34.4965098, + -2.1233348 + ], + [ + 34.4968102, + -2.123635 + ], + [ + 34.4970998, + -2.1238816 + ], + [ + 34.4974861, + -2.1241872 + ], + [ + 34.4978026, + -2.1244499 + ], + [ + 34.4985804, + -2.1251361 + ], + [ + 34.4989667, + -2.1255435 + ], + [ + 34.4996855, + -2.1262296 + ], + [ + 34.4999537, + -2.1265191 + ], + [ + 34.5003453, + -2.1269587 + ], + [ + 34.5007262, + -2.1273232 + ], + [ + 34.5012197, + -2.1278111 + ], + [ + 34.501606, + -2.1281649 + ], + [ + 34.5020995, + -2.1286527 + ], + [ + 34.5025072, + -2.129044 + ], + [ + 34.5027218, + -2.1292638 + ], + [ + 34.5030704, + -2.1296123 + ], + [ + 34.5033816, + -2.1298964 + ], + [ + 34.5036659, + -2.1301859 + ], + [ + 34.503859, + -2.1303574 + ], + [ + 34.5042345, + -2.1307219 + ], + [ + 34.5045349, + -2.1310114 + ], + [ + 34.5048246, + -2.1312955 + ], + [ + 34.5051894, + -2.1316332 + ], + [ + 34.5055273, + -2.1319656 + ], + [ + 34.5057687, + -2.1322283 + ], + [ + 34.5060048, + -2.1324749 + ], + [ + 34.5062301, + -2.1327 + ], + [ + 34.5064178, + -2.132893 + ], + [ + 34.506788, + -2.1331932 + ], + [ + 34.5070133, + -2.1333487 + ], + [ + 34.5073727, + -2.1335202 + ], + [ + 34.5075558, + -2.133588 + ], + [ + 34.5078354, + -2.133672 + ], + [ + 34.5082176, + -2.1337775 + ], + [ + 34.5084081, + -2.1338184 + ], + [ + 34.5087165, + -2.1338847 + ], + [ + 34.5090974, + -2.1339491 + ], + [ + 34.5095131, + -2.1340107 + ], + [ + 34.5099503, + -2.1340724 + ], + [ + 34.5107469, + -2.134134 + ], + [ + 34.51097, + -2.1341298 + ], + [ + 34.5113182, + -2.1341233 + ], + [ + 34.5117984, + -2.1340884 + ], + [ + 34.5126137, + -2.1339866 + ], + [ + 34.5135954, + -2.1338847 + ], + [ + 34.5141694, + -2.1338472 + ], + [ + 34.5147541, + -2.1338794 + ], + [ + 34.5152208, + -2.1339598 + ], + [ + 34.5155588, + -2.1340563 + ], + [ + 34.5162937, + -2.1342707 + ], + [ + 34.5169482, + -2.1344851 + ], + [ + 34.517785, + -2.1347532 + ], + [ + 34.5183644, + -2.1349515 + ], + [ + 34.5191583, + -2.1352464 + ], + [ + 34.5198235, + -2.1355037 + ], + [ + 34.5199608, + -2.1355578 + ], + [ + 34.5211163, + -2.1360129 + ], + [ + 34.522157, + -2.136549 + ], + [ + 34.5229778, + -2.1369618 + ], + [ + 34.5240829, + -2.1375461 + ], + [ + 34.5244691, + -2.1377605 + ], + [ + 34.5249848, + -2.1380296 + ], + [ + 34.5254246, + -2.1382761 + ], + [ + 34.5259879, + -2.1385897 + ], + [ + 34.5262883, + -2.1386916 + ], + [ + 34.5267604, + -2.1388524 + ], + [ + 34.5271627, + -2.1389275 + ], + [ + 34.5275329, + -2.1389328 + ], + [ + 34.5279191, + -2.138906 + ], + [ + 34.528477, + -2.1388471 + ], + [ + 34.5289008, + -2.1388149 + ], + [ + 34.529405, + -2.1388095 + ], + [ + 34.5297591, + -2.1388256 + ], + [ + 34.5302312, + -2.1388739 + ], + [ + 34.5308481, + -2.1389382 + ], + [ + 34.531465, + -2.139024 + ], + [ + 34.5322696, + -2.1391848 + ], + [ + 34.5330528, + -2.1393188 + ], + [ + 34.5342384, + -2.1395493 + ], + [ + 34.5350001, + -2.1396726 + ], + [ + 34.5355473, + -2.1397905 + ], + [ + 34.5361267, + -2.1399406 + ], + [ + 34.5366202, + -2.1400586 + ], + [ + 34.5368991, + -2.1401229 + ], + [ + 34.5371083, + -2.1401497 + ], + [ + 34.5373283, + -2.1401604 + ], + [ + 34.5375536, + -2.1401122 + ], + [ + 34.5379559, + -2.1400103 + ], + [ + 34.5384387, + -2.1398656 + ], + [ + 34.5392219, + -2.1396619 + ], + [ + 34.5398066, + -2.1395225 + ], + [ + 34.5402894, + -2.1394475 + ], + [ + 34.5407347, + -2.1393938 + ], + [ + 34.5411585, + -2.139351 + ], + [ + 34.5415769, + -2.1393081 + ], + [ + 34.5424245, + -2.1392116 + ], + [ + 34.5427356, + -2.1391526 + ], + [ + 34.5431701, + -2.1389811 + ], + [ + 34.5433772, + -2.1388693 + ], + [ + 34.5439372, + -2.1385576 + ], + [ + 34.5445059, + -2.1382413 + ], + [ + 34.5449297, + -2.1380001 + ], + [ + 34.5461957, + -2.1373032 + ], + [ + 34.5472042, + -2.136735 + ], + [ + 34.5479659, + -2.1363061 + ], + [ + 34.5485131, + -2.1359791 + ], + [ + 34.5492641, + -2.1355449 + ], + [ + 34.5501761, + -2.1350356 + ], + [ + 34.5512919, + -2.1344352 + ], + [ + 34.5528583, + -2.1335293 + ], + [ + 34.5537971, + -2.1330093 + ], + [ + 34.5543335, + -2.1327037 + ], + [ + 34.5550731, + -2.1322779 + ], + [ + 34.5560716, + -2.1317173 + ], + [ + 34.5570211, + -2.1311705 + ], + [ + 34.5833925, + -2.1161122 + ], + [ + 34.5842294, + -2.1156405 + ], + [ + 34.5848463, + -2.1152706 + ], + [ + 34.585431, + -2.1149007 + ], + [ + 34.5860318, + -2.114563 + ], + [ + 34.5866756, + -2.1141824 + ], + [ + 34.5874856, + -2.1137267 + ], + [ + 34.5879899, + -2.1134372 + ], + [ + 34.5890179, + -2.112838 + ], + [ + 34.5890842, + -2.1127993 + ], + [ + 34.5896582, + -2.1124723 + ], + [ + 34.5902054, + -2.112156 + ], + [ + 34.5909993, + -2.1116923 + ], + [ + 34.5916645, + -2.111309 + ], + [ + 34.5919381, + -2.1111428 + ], + [ + 34.5927481, + -2.1106764 + ], + [ + 34.5932309, + -2.1104084 + ], + [ + 34.5938317, + -2.1100653 + ], + [ + 34.5941643, + -2.1098348 + ], + [ + 34.5948509, + -2.1094381 + ], + [ + 34.5954464, + -2.1090682 + ], + [ + 34.5960526, + -2.1087626 + ], + [ + 34.5965997, + -2.1084356 + ], + [ + 34.5970557, + -2.1081515 + ], + [ + 34.5987348, + -2.1071758 + ], + [ + 34.5994938, + -2.106747 + ], + [ + 34.599754, + -2.1065915 + ], + [ + 34.6016155, + -2.1055033 + ], + [ + 34.6023933, + -2.1050476 + ], + [ + 34.6030049, + -2.1046884 + ], + [ + 34.6037344, + -2.1042703 + ], + [ + 34.604205, + -2.1039874 + ], + [ + 34.6055154, + -2.1032042 + ], + [ + 34.6065373, + -2.1026037 + ], + [ + 34.6070335, + -2.1023196 + ], + [ + 34.6087287, + -2.1013306 + ], + [ + 34.6093536, + -2.100958 + ], + [ + 34.6100517, + -2.1005372 + ], + [ + 34.6106894, + -2.1001753 + ], + [ + 34.6117301, + -2.0995213 + ], + [ + 34.6136505, + -2.0983741 + ], + [ + 34.6151901, + -2.0974091 + ], + [ + 34.6159412, + -2.0969802 + ], + [ + 34.6176095, + -2.0959831 + ], + [ + 34.6188594, + -2.0952165 + ], + [ + 34.6195943, + -2.0947501 + ], + [ + 34.6210749, + -2.0938656 + ], + [ + 34.6220029, + -2.0933134 + ], + [ + 34.6226038, + -2.0929275 + ], + [ + 34.6230168, + -2.0926755 + ], + [ + 34.6235103, + -2.092386 + ], + [ + 34.6240039, + -2.0921126 + ], + [ + 34.625227, + -2.0913514 + ], + [ + 34.625699, + -2.0910458 + ], + [ + 34.6265922, + -2.0905271 + ], + [ + 34.6278313, + -2.0897892 + ], + [ + 34.6285502, + -2.0893504 + ], + [ + 34.6290275, + -2.0890785 + ], + [ + 34.6294667, + -2.0888258 + ], + [ + 34.630189, + -2.0884016 + ], + [ + 34.6312458, + -2.0877636 + ], + [ + 34.632192, + -2.0871485 + ] + ] + }, + "id": "way/345697166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/345720481", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9941298, + -2.7885939 + ], + [ + 33.9940781, + -2.7892398 + ] + ] + }, + "id": "way/345720481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/345720482", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9940781, + -2.7892398 + ], + [ + 33.9940542, + -2.7894891 + ], + [ + 33.9940301, + -2.7896712 + ], + [ + 33.9939563, + -2.7900633 + ], + [ + 33.9938479, + -2.7904871 + ], + [ + 33.9936855, + -2.7909077 + ], + [ + 33.9935392, + -2.7911795 + ], + [ + 33.9933862, + -2.7914567 + ], + [ + 33.9927464, + -2.7924164 + ] + ] + }, + "id": "way/345720482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/345763168", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4084472, + -1.3175848 + ], + [ + 34.4080068, + -1.3177684 + ], + [ + 34.4067562, + -1.3183353 + ], + [ + 34.4055543, + -1.3188642 + ], + [ + 34.4050451, + -1.3191308 + ], + [ + 34.4041095, + -1.3196084 + ], + [ + 34.4033546, + -1.319971 + ], + [ + 34.4028524, + -1.3202725 + ], + [ + 34.4023394, + -1.3205885 + ], + [ + 34.4016082, + -1.3210989 + ], + [ + 34.4012166, + -1.3213773 + ], + [ + 34.400779, + -1.3216999 + ], + [ + 34.4003836, + -1.3220599 + ], + [ + 34.4000948, + -1.3223544 + ], + [ + 34.3997866, + -1.322598 + ], + [ + 34.3994659, + -1.3229296 + ], + [ + 34.398938, + -1.3234358 + ], + [ + 34.3988434, + -1.3235306 + ], + [ + 34.3987401, + -1.3236389 + ], + [ + 34.3983034, + -1.3242162 + ], + [ + 34.3978596, + -1.3247529 + ], + [ + 34.3974998, + -1.3252063 + ], + [ + 34.3972837, + -1.3255011 + ], + [ + 34.3970586, + -1.325808 + ], + [ + 34.3965905, + -1.3264356 + ], + [ + 34.3960168, + -1.3271817 + ], + [ + 34.3958736, + -1.327383 + ], + [ + 34.3955659, + -1.327749 + ], + [ + 34.3952656, + -1.3280884 + ], + [ + 34.3944572, + -1.3289647 + ], + [ + 34.3932581, + -1.3299934 + ], + [ + 34.3922226, + -1.3308412 + ], + [ + 34.3912705, + -1.3314897 + ], + [ + 34.3906948, + -1.3317916 + ], + [ + 34.3902426, + -1.3320449 + ], + [ + 34.3896371, + -1.3323571 + ], + [ + 34.3893737, + -1.332486 + ], + [ + 34.3889236, + -1.332691 + ], + [ + 34.3878459, + -1.3331204 + ], + [ + 34.3876111, + -1.3331784 + ], + [ + 34.3867626, + -1.3334309 + ], + [ + 34.3863459, + -1.333529 + ], + [ + 34.3855655, + -1.3337287 + ], + [ + 34.3848116, + -1.3338788 + ], + [ + 34.3843773, + -1.3339405 + ], + [ + 34.383293, + -1.3340267 + ], + [ + 34.3830429, + -1.3340529 + ], + [ + 34.3829066, + -1.3340619 + ], + [ + 34.3819888, + -1.3340803 + ], + [ + 34.3815259, + -1.3340839 + ], + [ + 34.3808005, + -1.3340864 + ], + [ + 34.3804022, + -1.3340772 + ], + [ + 34.3795847, + -1.3340445 + ], + [ + 34.378986, + -1.334029 + ], + [ + 34.3777672, + -1.3339596 + ], + [ + 34.3772295, + -1.3339506 + ], + [ + 34.3765753, + -1.3338915 + ], + [ + 34.3753415, + -1.3338727 + ], + [ + 34.3747005, + -1.3338298 + ], + [ + 34.3745835, + -1.3338352 + ], + [ + 34.3732082, + -1.3338604 + ], + [ + 34.3730537, + -1.3338728 + ], + [ + 34.372344, + -1.3339352 + ], + [ + 34.3721507, + -1.3339693 + ], + [ + 34.3718998, + -1.3340143 + ], + [ + 34.3711557, + -1.3341492 + ], + [ + 34.3709295, + -1.3341926 + ], + [ + 34.3700504, + -1.3344862 + ], + [ + 34.3692744, + -1.334774 + ], + [ + 34.3687603, + -1.3350415 + ], + [ + 34.3683165, + -1.3352789 + ], + [ + 34.3679594, + -1.3354582 + ], + [ + 34.3674942, + -1.335747 + ], + [ + 34.3665213, + -1.3365104 + ], + [ + 34.3661703, + -1.3368124 + ], + [ + 34.3657815, + -1.3372039 + ], + [ + 34.3654383, + -1.3375793 + ], + [ + 34.3651938, + -1.3378921 + ], + [ + 34.3650052, + -1.3381222 + ], + [ + 34.3648256, + -1.3383873 + ], + [ + 34.3644698, + -1.3388396 + ], + [ + 34.3642543, + -1.3392132 + ], + [ + 34.363791, + -1.340012 + ], + [ + 34.3631187, + -1.3413031 + ], + [ + 34.3626576, + -1.3421223 + ], + [ + 34.3625152, + -1.3423623 + ], + [ + 34.3622232, + -1.3429063 + ], + [ + 34.36141, + -1.3439315 + ], + [ + 34.360999, + -1.344476 + ], + [ + 34.3601958, + -1.3452845 + ], + [ + 34.3597739, + -1.3457398 + ], + [ + 34.3593281, + -1.3461332 + ], + [ + 34.3587766, + -1.3466123 + ], + [ + 34.3581372, + -1.3470422 + ], + [ + 34.357759, + -1.3472862 + ], + [ + 34.3570616, + -1.347726 + ], + [ + 34.3562624, + -1.3481845 + ], + [ + 34.3558762, + -1.3484128 + ], + [ + 34.3557606, + -1.3484367 + ], + [ + 34.3551841, + -1.3486876 + ], + [ + 34.3536797, + -1.3492306 + ], + [ + 34.3527884, + -1.349473 + ], + [ + 34.3523758, + -1.3495893 + ], + [ + 34.3511836, + -1.3497746 + ], + [ + 34.350914, + -1.3498122 + ], + [ + 34.3504224, + -1.3498402 + ], + [ + 34.3497204, + -1.3498845 + ], + [ + 34.3489264, + -1.3498994 + ], + [ + 34.3485554, + -1.3498734 + ], + [ + 34.3481958, + -1.349875 + ], + [ + 34.3473306, + -1.3497915 + ], + [ + 34.3466905, + -1.3497138 + ], + [ + 34.3463302, + -1.34967 + ], + [ + 34.3459002, + -1.3495927 + ], + [ + 34.3451822, + -1.3494636 + ], + [ + 34.3441804, + -1.3492972 + ], + [ + 34.3436054, + -1.3491933 + ], + [ + 34.3431559, + -1.3491451 + ], + [ + 34.3427069, + -1.3490503 + ], + [ + 34.3420062, + -1.3489286 + ], + [ + 34.3419315, + -1.3489268 + ], + [ + 34.3418608, + -1.3489252 + ], + [ + 34.3413935, + -1.3488401 + ], + [ + 34.3409631, + -1.3487999 + ], + [ + 34.3400211, + -1.3488027 + ], + [ + 34.3399084, + -1.3488148 + ], + [ + 34.3394183, + -1.3488674 + ], + [ + 34.339335, + -1.3488763 + ], + [ + 34.3389562, + -1.3489314 + ], + [ + 34.3387519, + -1.3489612 + ], + [ + 34.3385491, + -1.3489997 + ], + [ + 34.3383801, + -1.3490426 + ], + [ + 34.3380461, + -1.3491431 + ], + [ + 34.3374896, + -1.3493027 + ], + [ + 34.3369129, + -1.3495118 + ], + [ + 34.3367532, + -1.3495963 + ], + [ + 34.3360555, + -1.3499655 + ], + [ + 34.3360116, + -1.3499888 + ], + [ + 34.3355718, + -1.3502465 + ], + [ + 34.3351935, + -1.3505281 + ], + [ + 34.334695, + -1.3508872 + ], + [ + 34.3342844, + -1.3512136 + ], + [ + 34.333963, + -1.3515056 + ], + [ + 34.3338118, + -1.351643 + ], + [ + 34.3333838, + -1.3519968 + ], + [ + 34.3331267, + -1.3521817 + ], + [ + 34.3323511, + -1.3527396 + ], + [ + 34.3317138, + -1.3531344 + ], + [ + 34.3314873, + -1.3532427 + ], + [ + 34.3311656, + -1.3533965 + ], + [ + 34.3307547, + -1.3535847 + ], + [ + 34.3302798, + -1.3538022 + ], + [ + 34.3301929, + -1.3538311 + ], + [ + 34.3301326, + -1.3538512 + ], + [ + 34.3292587, + -1.3541422 + ], + [ + 34.3283956, + -1.3543111 + ], + [ + 34.3283233, + -1.3543193 + ], + [ + 34.3282517, + -1.3543275 + ], + [ + 34.3278685, + -1.3543867 + ], + [ + 34.3274905, + -1.3544572 + ], + [ + 34.3266611, + -1.3544963 + ], + [ + 34.3263893, + -1.3545 + ], + [ + 34.3258542, + -1.3544913 + ], + [ + 34.325362, + -1.3544685 + ], + [ + 34.3249382, + -1.3544336 + ], + [ + 34.3245721, + -1.3544001 + ], + [ + 34.3238195, + -1.3543177 + ], + [ + 34.322963, + -1.354224 + ], + [ + 34.3228993, + -1.3542181 + ], + [ + 34.3214888, + -1.3541052 + ], + [ + 34.3210398, + -1.354042 + ], + [ + 34.3207559, + -1.354011 + ], + [ + 34.3201518, + -1.3539467 + ], + [ + 34.3192975, + -1.3539473 + ], + [ + 34.3188556, + -1.3539635 + ], + [ + 34.3182022, + -1.3540184 + ], + [ + 34.3174696, + -1.3541481 + ], + [ + 34.3170569, + -1.3542706 + ], + [ + 34.3169879, + -1.3542911 + ], + [ + 34.3169278, + -1.354309 + ], + [ + 34.3161793, + -1.3545467 + ], + [ + 34.3151891, + -1.3549561 + ], + [ + 34.3143048, + -1.355463 + ], + [ + 34.3138701, + -1.3557784 + ], + [ + 34.3135151, + -1.3560963 + ], + [ + 34.3133765, + -1.3562074 + ], + [ + 34.3125943, + -1.3569716 + ], + [ + 34.3120607, + -1.3574574 + ], + [ + 34.3116668, + -1.357816 + ], + [ + 34.3109927, + -1.3583572 + ], + [ + 34.310957, + -1.3583805 + ], + [ + 34.310351, + -1.3587763 + ], + [ + 34.309904, + -1.3590353 + ], + [ + 34.309834, + -1.3590759 + ], + [ + 34.3085572, + -1.3596819 + ], + [ + 34.3075025, + -1.3599829 + ], + [ + 34.3066635, + -1.3601821 + ], + [ + 34.3066442, + -1.3601867 + ], + [ + 34.3055552, + -1.360369 + ], + [ + 34.3052522, + -1.3603801 + ], + [ + 34.3046516, + -1.3604021 + ], + [ + 34.3045763, + -1.3604039 + ], + [ + 34.3043067, + -1.3604101 + ], + [ + 34.3042087, + -1.3604124 + ], + [ + 34.3039983, + -1.3603992 + ], + [ + 34.303557, + -1.3603825 + ], + [ + 34.3031588, + -1.3603302 + ], + [ + 34.3028829, + -1.3603027 + ], + [ + 34.302866, + -1.3603002 + ], + [ + 34.3022346, + -1.3602055 + ], + [ + 34.302122, + -1.3601651 + ], + [ + 34.3020819, + -1.3601507 + ], + [ + 34.3014969, + -1.3600202 + ], + [ + 34.3005234, + -1.3596836 + ], + [ + 34.299871, + -1.3595068 + ], + [ + 34.2994856, + -1.3593745 + ], + [ + 34.2972096, + -1.3582395 + ], + [ + 34.2955477, + -1.3576503 + ], + [ + 34.2921681, + -1.3564157 + ], + [ + 34.2902803, + -1.3557631 + ], + [ + 34.289629, + -1.3555779 + ], + [ + 34.2889849, + -1.3554666 + ], + [ + 34.2883947, + -1.3553915 + ], + [ + 34.2879667, + -1.3553536 + ], + [ + 34.2877841, + -1.3553485 + ], + [ + 34.2876506, + -1.3553468 + ], + [ + 34.2866171, + -1.3553889 + ], + [ + 34.2856704, + -1.3555478 + ], + [ + 34.2849601, + -1.3557303 + ], + [ + 34.2840821, + -1.3560397 + ], + [ + 34.2833921, + -1.3563576 + ], + [ + 34.282806, + -1.3567034 + ], + [ + 34.282053, + -1.357273 + ] + ] + }, + "id": "way/345763168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/359025384", + "highway": "secondary", + "maxspeed": "50", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3321735, + -1.121301 + ], + [ + 34.3324605, + -1.1213345 + ], + [ + 34.3327904, + -1.1213868 + ], + [ + 34.3330157, + -1.1214445 + ], + [ + 34.333245, + -1.1215303 + ], + [ + 34.3338324, + -1.1218266 + ], + [ + 34.334114, + -1.1219714 + ], + [ + 34.33525, + -1.1226646 + ], + [ + 34.3354686, + -1.1227572 + ], + [ + 34.3356067, + -1.1228121 + ], + [ + 34.3357475, + -1.122847 + ], + [ + 34.3359433, + -1.1228591 + ], + [ + 34.336127, + -1.122914 + ], + [ + 34.3367587, + -1.1231272 + ], + [ + 34.3376452, + -1.1234249 + ], + [ + 34.3380046, + -1.123567 + ], + [ + 34.3383962, + -1.1237038 + ], + [ + 34.3386792, + -1.1237507 + ], + [ + 34.3388723, + -1.1237655 + ], + [ + 34.3390265, + -1.1237574 + ], + [ + 34.3392009, + -1.1236917 + ], + [ + 34.3393403, + -1.1235818 + ], + [ + 34.3396018, + -1.1232492 + ], + [ + 34.3398848, + -1.1229449 + ], + [ + 34.3401786, + -1.1226943 + ], + [ + 34.3404534, + -1.1225145 + ], + [ + 34.3407364, + -1.1223884 + ], + [ + 34.3422923, + -1.1218637 + ], + [ + 34.3427534, + -1.1216898 + ], + [ + 34.3431424, + -1.1215906 + ], + [ + 34.3436775, + -1.1215249 + ], + [ + 34.3441562, + -1.1215262 + ], + [ + 34.3449002, + -1.1215943 + ], + [ + 34.3454276, + -1.1216617 + ], + [ + 34.3460405, + -1.1217126 + ], + [ + 34.3464656, + -1.12172 + ], + [ + 34.3466601, + -1.1216375 + ], + [ + 34.3469296, + -1.1215196 + ], + [ + 34.3476592, + -1.1211093 + ], + [ + 34.3481246, + -1.1209041 + ], + [ + 34.3489788, + -1.1206038 + ], + [ + 34.349176, + -1.1205086 + ], + [ + 34.3493101, + -1.1203932 + ], + [ + 34.3501765, + -1.1193903 + ], + [ + 34.350556, + -1.1189572 + ], + [ + 34.3507384, + -1.1188043 + ], + [ + 34.3509556, + -1.1186434 + ], + [ + 34.3512453, + -1.1185295 + ], + [ + 34.3515886, + -1.118386 + ], + [ + 34.351818, + -1.118272 + ], + [ + 34.3520325, + -1.1181312 + ], + [ + 34.3523155, + -1.1178885 + ], + [ + 34.3528841, + -1.1174219 + ], + [ + 34.3535225, + -1.1169821 + ], + [ + 34.353902, + -1.1167662 + ], + [ + 34.3542672, + -1.1165929 + ], + [ + 34.3547001, + -1.1164533 + ], + [ + 34.3551844, + -1.1163784 + ], + [ + 34.3554752, + -1.1163854 + ], + [ + 34.3557638, + -1.1164253 + ], + [ + 34.3559701, + -1.1164974 + ], + [ + 34.3561283, + -1.1165893 + ], + [ + 34.3564127, + -1.1167685 + ], + [ + 34.3572481, + -1.117379 + ], + [ + 34.3574144, + -1.1174916 + ], + [ + 34.3575793, + -1.1176432 + ], + [ + 34.3577684, + -1.1178792 + ], + [ + 34.3579683, + -1.1181822 + ], + [ + 34.3584645, + -1.1189921 + ], + [ + 34.3587434, + -1.1194386 + ], + [ + 34.358907, + -1.1196732 + ], + [ + 34.3591337, + -1.1199253 + ], + [ + 34.359363, + -1.1200902 + ], + [ + 34.3596312, + -1.1202498 + ], + [ + 34.3599598, + -1.1203637 + ], + [ + 34.3601047, + -1.1203901 + ], + [ + 34.3602696, + -1.1204201 + ], + [ + 34.3604842, + -1.1204375 + ], + [ + 34.3606572, + -1.1204308 + ], + [ + 34.3608798, + -1.1204053 + ], + [ + 34.3611038, + -1.1203772 + ], + [ + 34.3612687, + -1.1203812 + ], + [ + 34.3615222, + -1.1204026 + ], + [ + 34.3621029, + -1.1205246 + ], + [ + 34.3630336, + -1.1207633 + ], + [ + 34.3632039, + -1.1208009 + ], + [ + 34.3634038, + -1.1208183 + ], + [ + 34.3635486, + -1.1208009 + ], + [ + 34.3637649, + -1.1206933 + ], + [ + 34.3638717, + -1.1206287 + ], + [ + 34.3639929, + -1.1205554 + ], + [ + 34.3641243, + -1.120476 + ], + [ + 34.3646719, + -1.1201158 + ], + [ + 34.3652223, + -1.1197537 + ], + [ + 34.3654369, + -1.1196129 + ], + [ + 34.3657239, + -1.1194158 + ], + [ + 34.3661842, + -1.1191164 + ], + [ + 34.3666962, + -1.1187762 + ], + [ + 34.3674432, + -1.118268 + ], + [ + 34.3677865, + -1.1180387 + ], + [ + 34.3680668, + -1.1178483 + ], + [ + 34.3685107, + -1.1175386 + ], + [ + 34.3688178, + -1.1173281 + ], + [ + 34.3689077, + -1.1172731 + ], + [ + 34.3690659, + -1.1171765 + ], + [ + 34.3692403, + -1.117076 + ], + [ + 34.3693851, + -1.1169996 + ], + [ + 34.3695554, + -1.1169245 + ], + [ + 34.3698049, + -1.1168279 + ], + [ + 34.3701375, + -1.1167059 + ], + [ + 34.3707772, + -1.116478 + ], + [ + 34.3712626, + -1.116301 + ], + [ + 34.3714839, + -1.1162232 + ], + [ + 34.3716368, + -1.1161696 + ], + [ + 34.3717682, + -1.1161119 + ], + [ + 34.372007, + -1.11601 + ], + [ + 34.372298, + -1.115884 + ], + [ + 34.3725085, + -1.1157767 + ], + [ + 34.3726614, + -1.1156909 + ], + [ + 34.3728532, + -1.1155769 + ], + [ + 34.3730731, + -1.1154321 + ], + [ + 34.3732931, + -1.1152886 + ], + [ + 34.37356, + -1.1150929 + ], + [ + 34.3737544, + -1.114944 + ], + [ + 34.3739194, + -1.1148274 + ], + [ + 34.3741339, + -1.1146906 + ], + [ + 34.3744075, + -1.1145324 + ], + [ + 34.3744853, + -1.1144855 + ], + [ + 34.3746503, + -1.1143876 + ], + [ + 34.3748488, + -1.1142656 + ], + [ + 34.3750928, + -1.1141328 + ], + [ + 34.3753369, + -1.1140068 + ], + [ + 34.3755233, + -1.1139183 + ], + [ + 34.3756886, + -1.1138455 + ], + [ + 34.3757969, + -1.1137949 + ], + [ + 34.3763602, + -1.1135435 + ], + [ + 34.3768363, + -1.113327 + ], + [ + 34.3772802, + -1.1131285 + ], + [ + 34.3776074, + -1.1129877 + ], + [ + 34.3779872, + -1.1128292 + ], + [ + 34.3786548, + -1.1125573 + ], + [ + 34.3788922, + -1.1124621 + ], + [ + 34.379131, + -1.1123684 + ], + [ + 34.3793347, + -1.1122476 + ], + [ + 34.3794568, + -1.1121685 + ], + [ + 34.3796405, + -1.1120491 + ], + [ + 34.3797827, + -1.1119392 + ], + [ + 34.3799436, + -1.1118172 + ], + [ + 34.3801528, + -1.1116455 + ], + [ + 34.3802762, + -1.1115503 + ], + [ + 34.3804103, + -1.1114498 + ], + [ + 34.3805981, + -1.1113251 + ], + [ + 34.3807966, + -1.111199 + ], + [ + 34.3814792, + -1.1107887 + ], + [ + 34.3819016, + -1.1105286 + ], + [ + 34.3822154, + -1.1103315 + ], + [ + 34.3823951, + -1.1102216 + ], + [ + 34.3829933, + -1.109877 + ], + [ + 34.3834506, + -1.1096195 + ], + [ + 34.383688, + -1.1094734 + ], + [ + 34.3840085, + -1.109283 + ], + [ + 34.3842673, + -1.1091153 + ], + [ + 34.3845235, + -1.1089424 + ], + [ + 34.3847378, + -1.108792 + ], + [ + 34.3849567, + -1.1086528 + ], + [ + 34.3851567, + -1.1085236 + ], + [ + 34.3855689, + -1.1082544 + ], + [ + 34.3863058, + -1.1077664 + ], + [ + 34.3866296, + -1.1075509 + ], + [ + 34.3872164, + -1.1071845 + ], + [ + 34.3880332, + -1.1066616 + ], + [ + 34.388241, + -1.1065235 + ], + [ + 34.3884261, + -1.1064122 + ], + [ + 34.3885387, + -1.1063358 + ], + [ + 34.3888284, + -1.1061534 + ], + [ + 34.3897216, + -1.1055688 + ], + [ + 34.3901615, + -1.1052899 + ], + [ + 34.3904092, + -1.1051279 + ], + [ + 34.3905531, + -1.1050284 + ], + [ + 34.3906738, + -1.1049426 + ], + [ + 34.3908079, + -1.104842 + ], + [ + 34.3909635, + -1.1047214 + ], + [ + 34.3910855, + -1.1046154 + ], + [ + 34.3912598, + -1.1044599 + ], + [ + 34.3914315, + -1.1043339 + ], + [ + 34.3916126, + -1.1042145 + ], + [ + 34.3917574, + -1.1041354 + ], + [ + 34.3919773, + -1.1040375 + ], + [ + 34.3922818, + -1.1039182 + ], + [ + 34.3924816, + -1.1038686 + ], + [ + 34.3926989, + -1.1038284 + ], + [ + 34.3928504, + -1.1037989 + ], + [ + 34.3929456, + -1.1037814 + ], + [ + 34.3930516, + -1.103756 + ], + [ + 34.3931468, + -1.1037318 + ], + [ + 34.3932742, + -1.1036943 + ], + [ + 34.3933412, + -1.1036621 + ], + [ + 34.3934177, + -1.1036272 + ], + [ + 34.3935102, + -1.1035763 + ], + [ + 34.3936899, + -1.1034717 + ], + [ + 34.3939585, + -1.1033062 + ], + [ + 34.3941513, + -1.1031727 + ], + [ + 34.3942881, + -1.1030788 + ], + [ + 34.3944209, + -1.1029977 + ], + [ + 34.3946998, + -1.1028106 + ], + [ + 34.3948621, + -1.102694 + ], + [ + 34.3949747, + -1.1026109 + ], + [ + 34.3950753, + -1.102521 + ], + [ + 34.3952201, + -1.1023923 + ], + [ + 34.3953368, + -1.102281 + ], + [ + 34.3954924, + -1.1021241 + ], + [ + 34.3955997, + -1.1020169 + ], + [ + 34.3957217, + -1.1018935 + ], + [ + 34.3959939, + -1.1015945 + ], + [ + 34.3964151, + -1.1011346 + ], + [ + 34.3967614, + -1.1007575 + ], + [ + 34.3968724, + -1.1006385 + ], + [ + 34.3969465, + -1.1005559 + ], + [ + 34.3970454, + -1.100436 + ], + [ + 34.3971165, + -1.1003582 + ], + [ + 34.3971942, + -1.1002912 + ], + [ + 34.3973042, + -1.1002201 + ], + [ + 34.3974115, + -1.1001692 + ], + [ + 34.3975389, + -1.1001209 + ], + [ + 34.3976435, + -1.10009 + ], + [ + 34.3978028, + -1.1000567 + ], + [ + 34.3979546, + -1.100027 + ], + [ + 34.3981846, + -1.1000047 + ], + [ + 34.3985796, + -1.0999667 + ], + [ + 34.3987928, + -1.0999452 + ], + [ + 34.3990145, + -1.0999154 + ], + [ + 34.3991046, + -1.0998902 + ], + [ + 34.3992126, + -1.0998447 + ], + [ + 34.3993333, + -1.0997964 + ], + [ + 34.3994634, + -1.0997267 + ], + [ + 34.3995854, + -1.0996315 + ], + [ + 34.3997021, + -1.0995282 + ], + [ + 34.3998255, + -1.0993982 + ], + [ + 34.3999613, + -1.0992423 + ], + [ + 34.4000468, + -1.0991313 + ], + [ + 34.4001111, + -1.0990348 + ], + [ + 34.4001648, + -1.0989195 + ], + [ + 34.4002379, + -1.098713 + ], + [ + 34.4002667, + -1.0986218 + ], + [ + 34.4003431, + -1.0983362 + ], + [ + 34.4004169, + -1.0980922 + ], + [ + 34.4005121, + -1.0977482 + ], + [ + 34.4006395, + -1.0973426 + ], + [ + 34.4007106, + -1.0971066 + ], + [ + 34.4007839, + -1.0969559 + ], + [ + 34.4008608, + -1.0968371 + ], + [ + 34.4010097, + -1.09664 + ], + [ + 34.4011062, + -1.0965193 + ], + [ + 34.4015488, + -1.0960138 + ], + [ + 34.401879, + -1.0956583 + ], + [ + 34.4021215, + -1.0953903 + ], + [ + 34.4023494, + -1.0951838 + ], + [ + 34.4026163, + -1.0949975 + ], + [ + 34.4032676, + -1.0945705 + ], + [ + 34.4036101, + -1.094323 + ], + [ + 34.4039279, + -1.0940642 + ], + [ + 34.4041009, + -1.0939234 + ], + [ + 34.4043222, + -1.093721 + ], + [ + 34.4044704, + -1.0935353 + ], + [ + 34.4045596, + -1.0933093 + ], + [ + 34.4046588, + -1.0930318 + ], + [ + 34.4047822, + -1.0924565 + ], + [ + 34.4049016, + -1.0920154 + ], + [ + 34.4049686, + -1.0918853 + ], + [ + 34.4050303, + -1.0918156 + ], + [ + 34.405206, + -1.0916896 + ], + [ + 34.4054581, + -1.0915635 + ], + [ + 34.4057277, + -1.0914576 + ], + [ + 34.4061515, + -1.0913128 + ], + [ + 34.4074488, + -1.0908633 + ], + [ + 34.4080706, + -1.0907067 + ], + [ + 34.408945, + -1.0904573 + ], + [ + 34.409405, + -1.0903058 + ], + [ + 34.4097242, + -1.0902133 + ], + [ + 34.4099441, + -1.0901556 + ], + [ + 34.410148, + -1.0901261 + ], + [ + 34.4103545, + -1.0901181 + ], + [ + 34.4105342, + -1.0901288 + ], + [ + 34.410785, + -1.0901503 + ], + [ + 34.4111323, + -1.0901851 + ], + [ + 34.4113791, + -1.090228 + ], + [ + 34.4115937, + -1.090279 + ], + [ + 34.411878, + -1.0903621 + ], + [ + 34.4121046, + -1.0904439 + ], + [ + 34.4124198, + -1.0906249 + ], + [ + 34.41257, + -1.0906879 + ], + [ + 34.4127457, + -1.0907268 + ], + [ + 34.4128972, + -1.0906933 + ], + [ + 34.4130447, + -1.0906249 + ], + [ + 34.413254, + -1.090515 + ], + [ + 34.4134068, + -1.0904372 + ], + [ + 34.4136536, + -1.0903299 + ], + [ + 34.4139446, + -1.090228 + ], + [ + 34.4141793, + -1.090161 + ], + [ + 34.4143215, + -1.0901395 + ], + [ + 34.4143829, + -1.0901365 + ], + [ + 34.4144851, + -1.0901315 + ], + [ + 34.4146863, + -1.0901368 + ], + [ + 34.4149357, + -1.0901301 + ], + [ + 34.4151092, + -1.0901178 + ], + [ + 34.4152468, + -1.0900859 + ], + [ + 34.4154547, + -1.0900269 + ], + [ + 34.4157994, + -1.0899223 + ], + [ + 34.4160461, + -1.0898445 + ], + [ + 34.4164127, + -1.0896994 + ], + [ + 34.4167113, + -1.089563 + ], + [ + 34.4169742, + -1.0894369 + ], + [ + 34.417178, + -1.0893404 + ], + [ + 34.4173349, + -1.0892693 + ], + [ + 34.4175509, + -1.0891982 + ], + [ + 34.4178553, + -1.0891272 + ], + [ + 34.4183113, + -1.0890267 + ], + [ + 34.4187364, + -1.0889408 + ], + [ + 34.4190435, + -1.0888778 + ], + [ + 34.4193184, + -1.0888121 + ], + [ + 34.4196497, + -1.0887464 + ], + [ + 34.4199166, + -1.0887021 + ], + [ + 34.4202626, + -1.0886699 + ], + [ + 34.4204825, + -1.0886458 + ], + [ + 34.4208138, + -1.0885801 + ], + [ + 34.4212148, + -1.0884688 + ], + [ + 34.4216238, + -1.0883213 + ], + [ + 34.4219363, + -1.0881953 + ], + [ + 34.4222662, + -1.0880612 + ], + [ + 34.4226739, + -1.087899 + ], + [ + 34.4228978, + -1.0878373 + ], + [ + 34.4231392, + -1.087793 + ], + [ + 34.4235845, + -1.0877448 + ], + [ + 34.423905, + -1.0876938 + ], + [ + 34.4242363, + -1.087612 + ], + [ + 34.4244924, + -1.0875088 + ], + [ + 34.4247875, + -1.0874015 + ], + [ + 34.4251147, + -1.0872781 + ], + [ + 34.4253185, + -1.0872138 + ], + [ + 34.4255707, + -1.0871521 + ], + [ + 34.4258603, + -1.0870877 + ], + [ + 34.4263794, + -1.0869872 + ], + [ + 34.4266319, + -1.086948 + ], + [ + 34.4267911, + -1.0869322 + ], + [ + 34.4271577, + -1.0869319 + ], + [ + 34.427467, + -1.0869376 + ], + [ + 34.4278774, + -1.086951 + ], + [ + 34.4281241, + -1.0869778 + ], + [ + 34.4284299, + -1.0870167 + ], + [ + 34.4287249, + -1.0870314 + ], + [ + 34.4289878, + -1.0870395 + ], + [ + 34.4292989, + -1.0870126 + ], + [ + 34.4295511, + -1.0869778 + ], + [ + 34.429889, + -1.0869376 + ], + [ + 34.4300946, + -1.0869131 + ], + [ + 34.4303477, + -1.0868705 + ], + [ + 34.4305649, + -1.0868356 + ], + [ + 34.4307902, + -1.0867981 + ], + [ + 34.4312167, + -1.0866694 + ], + [ + 34.4314286, + -1.0866131 + ], + [ + 34.4317532, + -1.0865246 + ], + [ + 34.4319785, + -1.0864656 + ], + [ + 34.4324066, + -1.0863607 + ], + [ + 34.4326919, + -1.0862644 + ], + [ + 34.4329011, + -1.0862054 + ], + [ + 34.4331335, + -1.086122 + ], + [ + 34.433502, + -1.0859909 + ], + [ + 34.4338426, + -1.0858702 + ], + [ + 34.4340786, + -1.0857871 + ], + [ + 34.4343133, + -1.0857241 + ], + [ + 34.4345041, + -1.0857036 + ], + [ + 34.4348229, + -1.0857066 + ], + [ + 34.4350281, + -1.0856852 + ], + [ + 34.4352266, + -1.0856302 + ], + [ + 34.4355002, + -1.085527 + ], + [ + 34.4357094, + -1.0854197 + ], + [ + 34.4359401, + -1.0853245 + ], + [ + 34.4361292, + -1.0852548 + ], + [ + 34.4364095, + -1.085173 + ], + [ + 34.4367474, + -1.0850764 + ], + [ + 34.4372839, + -1.084937 + ], + [ + 34.4375119, + -1.0848699 + ], + [ + 34.4377801, + -1.0848002 + ], + [ + 34.4381636, + -1.0846929 + ], + [ + 34.4385083, + -1.0845937 + ], + [ + 34.4387913, + -1.0845012 + ], + [ + 34.4390126, + -1.08441 + ], + [ + 34.4392472, + -1.0843255 + ], + [ + 34.4394779, + -1.0842236 + ], + [ + 34.4396791, + -1.0841405 + ], + [ + 34.4398454, + -1.0840761 + ], + [ + 34.4401029, + -1.0839984 + ], + [ + 34.440296, + -1.0839474 + ], + [ + 34.4404784, + -1.0839287 + ], + [ + 34.4406635, + -1.0839179 + ], + [ + 34.4408807, + -1.0838965 + ], + [ + 34.4411194, + -1.0838616 + ], + [ + 34.441326, + -1.0838428 + ], + [ + 34.4414788, + -1.0838214 + ], + [ + 34.4416183, + -1.0838053 + ], + [ + 34.441739, + -1.0838026 + ], + [ + 34.4419375, + -1.0838267 + ], + [ + 34.4420502, + -1.0838509 + ], + [ + 34.4422621, + -1.0839072 + ], + [ + 34.4425316, + -1.0839836 + ], + [ + 34.442718, + -1.0840359 + ], + [ + 34.4430681, + -1.0841392 + ], + [ + 34.4432303, + -1.0841834 + ], + [ + 34.4434556, + -1.0842236 + ], + [ + 34.4436702, + -1.0842639 + ], + [ + 34.4439386, + -1.0843013 + ], + [ + 34.4442254, + -1.0843229 + ], + [ + 34.4444293, + -1.0843336 + ], + [ + 34.4446452, + -1.0843255 + ] + ] + }, + "id": "way/359025384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/359025395", + "highway": "secondary", + "maxspeed": "50", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2896256, + -1.1017795 + ], + [ + 34.2896427, + -1.101805 + ], + [ + 34.2896772, + -1.1018412 + ], + [ + 34.2897228, + -1.1018781 + ], + [ + 34.2897738, + -1.1019123 + ], + [ + 34.2898301, + -1.1019364 + ], + [ + 34.2898985, + -1.1019599 + ], + [ + 34.2899582, + -1.1019699 + ], + [ + 34.2900293, + -1.1019726 + ], + [ + 34.2901184, + -1.1019579 + ], + [ + 34.2902344, + -1.101929 + ], + [ + 34.2903357, + -1.1019116 + ], + [ + 34.2904557, + -1.1018928 + ], + [ + 34.2905825, + -1.1018781 + ], + [ + 34.2907654, + -1.1018745 + ] + ] + }, + "id": "way/359025395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/359588175", + "highway": "secondary", + "ref": "R198", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2697839, + -1.8884682 + ], + [ + 34.2700481, + -1.8885393 + ], + [ + 34.2703137, + -1.8885808 + ], + [ + 34.2705604, + -1.8885996 + ], + [ + 34.2707174, + -1.8885755 + ], + [ + 34.2708541, + -1.8884977 + ], + [ + 34.2709628, + -1.8883891 + ], + [ + 34.2712471, + -1.8880701 + ], + [ + 34.2725038, + -1.8863782 + ], + [ + 34.2725753, + -1.886283 + ], + [ + 34.273065, + -1.8856312 + ], + [ + 34.274036, + -1.8843386 + ], + [ + 34.2743784, + -1.8838828 + ], + [ + 34.2755937, + -1.882621 + ], + [ + 34.2759436, + -1.8821912 + ], + [ + 34.2761207, + -1.8820063 + ], + [ + 34.2764938, + -1.8817184 + ], + [ + 34.2771533, + -1.8812235 + ], + [ + 34.2773545, + -1.8810653 + ], + [ + 34.2774805, + -1.8808991 + ], + [ + 34.278135, + -1.8797383 + ], + [ + 34.2782235, + -1.8795373 + ], + [ + 34.2784622, + -1.8787599 + ], + [ + 34.278599, + -1.8784811 + ], + [ + 34.2788216, + -1.878213 + ], + [ + 34.2791194, + -1.877961 + ], + [ + 34.2797953, + -1.8774878 + ], + [ + 34.2801493, + -1.8772291 + ], + [ + 34.2809108, + -1.8767447 + ], + [ + 34.2818481, + -1.8761286 + ], + [ + 34.2824088, + -1.8758079 + ], + [ + 34.2828332, + -1.8755342 + ], + [ + 34.2836255, + -1.8749666 + ], + [ + 34.2838588, + -1.8747173 + ], + [ + 34.2848284, + -1.8736517 + ], + [ + 34.2848987, + -1.8735712 + ], + [ + 34.2860119, + -1.8722961 + ], + [ + 34.286445, + -1.8717976 + ], + [ + 34.2870225, + -1.87118 + ], + [ + 34.2871955, + -1.8710205 + ], + [ + 34.2874101, + -1.8708971 + ], + [ + 34.2878768, + -1.8706559 + ], + [ + 34.2881289, + -1.8705621 + ], + [ + 34.2883368, + -1.8704991 + ], + [ + 34.288613, + -1.8704441 + ], + [ + 34.2889671, + -1.8703771 + ], + [ + 34.289383, + -1.8702951 + ], + [ + 34.2895143, + -1.8702591 + ], + [ + 34.2896873, + -1.8701814 + ], + [ + 34.2898495, + -1.870109 + ], + [ + 34.2900279, + -1.8700339 + ], + [ + 34.2903712, + -1.8698892 + ], + [ + 34.2907548, + -1.8697498 + ], + [ + 34.2913301, + -1.8695219 + ], + [ + 34.2915219, + -1.8694509 + ], + [ + 34.2918304, + -1.8693396 + ], + [ + 34.2921858, + -1.8691761 + ], + [ + 34.2923279, + -1.8690957 + ], + [ + 34.2924795, + -1.8690313 + ], + [ + 34.2927986, + -1.8690487 + ], + [ + 34.2929877, + -1.8690756 + ], + [ + 34.2934652, + -1.8691453 + ], + [ + 34.2937911, + -1.8691707 + ], + [ + 34.2939708, + -1.8691949 + ], + [ + 34.2940694, + -1.8691929 + ], + [ + 34.2941035, + -1.8691922 + ], + [ + 34.2942403, + -1.8691774 + ], + [ + 34.2944026, + -1.8691627 + ], + [ + 34.2946145, + -1.8691158 + ], + [ + 34.2947593, + -1.8690608 + ], + [ + 34.295155, + -1.8689241 + ], + [ + 34.295506, + -1.8688017 + ], + [ + 34.295937, + -1.8686653 + ], + [ + 34.2961424, + -1.8686003 + ], + [ + 34.2962503, + -1.8685662 + ], + [ + 34.2968515, + -1.8683584 + ], + [ + 34.2973208, + -1.8681842 + ], + [ + 34.297514, + -1.8681038 + ], + [ + 34.2979652, + -1.8678605 + ], + [ + 34.2985868, + -1.8675274 + ], + [ + 34.2988551, + -1.8673129 + ], + [ + 34.2992064, + -1.8669644 + ], + [ + 34.2994988, + -1.8665838 + ], + [ + 34.2997751, + -1.8661763 + ], + [ + 34.3001559, + -1.8655704 + ], + [ + 34.3003195, + -1.8653613 + ], + [ + 34.3004662, + -1.865281 + ], + [ + 34.300805, + -1.8651817 + ], + [ + 34.3009606, + -1.8651388 + ], + [ + 34.3010384, + -1.8650396 + ], + [ + 34.3011457, + -1.8648118 + ], + [ + 34.3019477, + -1.8632998 + ], + [ + 34.3023312, + -1.8625626 + ], + [ + 34.3025753, + -1.8619219 + ], + [ + 34.3027416, + -1.8611069 + ], + [ + 34.3028274, + -1.8601204 + ], + [ + 34.3029159, + -1.8595279 + ], + [ + 34.303093, + -1.8589623 + ], + [ + 34.3032485, + -1.8585655 + ], + [ + 34.3034121, + -1.8579409 + ], + [ + 34.3035731, + -1.8572171 + ], + [ + 34.3038976, + -1.8552065 + ], + [ + 34.3039164, + -1.8543325 + ], + [ + 34.3039271, + -1.8535819 + ], + [ + 34.3039378, + -1.8532924 + ], + [ + 34.303911, + -1.8518823 + ], + [ + 34.303903, + -1.8514936 + ], + [ + 34.3038896, + -1.850818 + ], + [ + 34.3039566, + -1.8502684 + ], + [ + 34.304039, + -1.8497872 + ], + [ + 34.304139, + -1.8494937 + ], + [ + 34.3052709, + -1.8473035 + ], + [ + 34.3054332, + -1.8470313 + ], + [ + 34.3056357, + -1.8466788 + ], + [ + 34.3058999, + -1.846176 + ], + [ + 34.3060671, + -1.8458837 + ], + [ + 34.3064178, + -1.8450727 + ], + [ + 34.3074435, + -1.8419177 + ], + [ + 34.3080161, + -1.8406518 + ], + [ + 34.3081543, + -1.840395 + ], + [ + 34.3099272, + -1.8374568 + ], + [ + 34.3102035, + -1.8369635 + ], + [ + 34.3106595, + -1.8362102 + ], + [ + 34.3108338, + -1.835851 + ], + [ + 34.3109599, + -1.8354435 + ], + [ + 34.3111262, + -1.8352183 + ], + [ + 34.3113445, + -1.8350501 + ], + [ + 34.3116172, + -1.8349432 + ], + [ + 34.3118128, + -1.8348939 + ], + [ + 34.312081, + -1.8348483 + ], + [ + 34.3124405, + -1.8348269 + ], + [ + 34.3131539, + -1.8348108 + ], + [ + 34.3147311, + -1.8347572 + ], + [ + 34.3150851, + -1.8347947 + ], + [ + 34.3159407, + -1.8349234 + ], + [ + 34.3164825, + -1.8350226 + ], + [ + 34.3169546, + -1.8350494 + ], + [ + 34.3183896, + -1.8351834 + ], + [ + 34.3193761, + -1.8353243 + ], + [ + 34.3196442, + -1.8353637 + ], + [ + 34.3197843, + -1.8353765 + ], + [ + 34.32053, + -1.8353523 + ], + [ + 34.3207875, + -1.8353282 + ], + [ + 34.3210611, + -1.8352129 + ], + [ + 34.3213543, + -1.8350159 + ], + [ + 34.3222815, + -1.8345427 + ], + [ + 34.3225765, + -1.8344033 + ], + [ + 34.3230271, + -1.8342612 + ], + [ + 34.3231948, + -1.8342492 + ], + [ + 34.3233436, + -1.8342478 + ], + [ + 34.3238184, + -1.8342693 + ], + [ + 34.3240853, + -1.8342639 + ], + [ + 34.324332, + -1.8342197 + ], + [ + 34.3244648, + -1.834162 + ], + [ + 34.324784, + -1.8340387 + ], + [ + 34.3259642, + -1.8335535 + ], + [ + 34.3265721, + -1.8334017 + ], + [ + 34.3268386, + -1.8334034 + ], + [ + 34.327772, + -1.8334007 + ], + [ + 34.3282199, + -1.8333873 + ], + [ + 34.3306527, + -1.8334999 + ], + [ + 34.331519, + -1.8334704 + ], + [ + 34.3318972, + -1.8334677 + ], + [ + 34.3322298, + -1.8334275 + ], + [ + 34.3325302, + -1.8333578 + ], + [ + 34.3327045, + -1.8332774 + ], + [ + 34.3329111, + -1.833138 + ], + [ + 34.333021, + -1.8330629 + ], + [ + 34.3332972, + -1.8328577 + ], + [ + 34.3337157, + -1.8325669 + ], + [ + 34.3342629, + -1.8321058 + ], + [ + 34.3348235, + -1.8315536 + ], + [ + 34.3350944, + -1.8312238 + ], + [ + 34.3355228, + -1.8306199 + ], + [ + 34.3359782, + -1.8300671 + ], + [ + 34.3362491, + -1.8297628 + ], + [ + 34.3365468, + -1.8293888 + ], + [ + 34.3366313, + -1.8292213 + ], + [ + 34.3366554, + -1.8291583 + ], + [ + 34.3367568, + -1.8287701 + ], + [ + 34.3368995, + -1.828039 + ], + [ + 34.3370149, + -1.8273098 + ], + [ + 34.3370668, + -1.8265486 + ], + [ + 34.3370673, + -1.826544 + ], + [ + 34.337107, + -1.8261437 + ], + [ + 34.3371516, + -1.8257549 + ], + [ + 34.3371988, + -1.8254251 + ], + [ + 34.3373635, + -1.825007 + ], + [ + 34.3374628, + -1.824696 + ], + [ + 34.337495, + -1.824377 + ], + [ + 34.3374923, + -1.8240472 + ], + [ + 34.3376076, + -1.8233797 + ], + [ + 34.3377686, + -1.8228677 + ], + [ + 34.3378758, + -1.8226934 + ], + [ + 34.3380448, + -1.8224977 + ], + [ + 34.3387066, + -1.8218305 + ], + [ + 34.3397373, + -1.8208114 + ], + [ + 34.3400559, + -1.8204046 + ], + [ + 34.3403783, + -1.8200219 + ], + [ + 34.3405125, + -1.8199026 + ], + [ + 34.3406439, + -1.8198289 + ], + [ + 34.3419106, + -1.8194362 + ], + [ + 34.3424299, + -1.8192432 + ], + [ + 34.342491, + -1.8192205 + ], + [ + 34.3435572, + -1.8188242 + ], + [ + 34.3438652, + -1.8186507 + ], + [ + 34.3442755, + -1.8184121 + ], + [ + 34.3448828, + -1.8180637 + ], + [ + 34.3453324, + -1.8177687 + ], + [ + 34.3456569, + -1.8174818 + ], + [ + 34.346621, + -1.8166524 + ], + [ + 34.3470114, + -1.8163559 + ], + [ + 34.3474006, + -1.8160479 + ], + [ + 34.3474654, + -1.8160043 + ], + [ + 34.3477591, + -1.8158066 + ], + [ + 34.3487924, + -1.8151709 + ], + [ + 34.3495958, + -1.8147514 + ], + [ + 34.3500356, + -1.8144793 + ], + [ + 34.3512735, + -1.8137983 + ], + [ + 34.3514948, + -1.8137246 + ], + [ + 34.3516651, + -1.8136696 + ], + [ + 34.3522753, + -1.8134672 + ], + [ + 34.3526494, + -1.8133519 + ], + [ + 34.3530303, + -1.8132514 + ], + [ + 34.3532006, + -1.8131911 + ], + [ + 34.3534487, + -1.8131294 + ], + [ + 34.3538082, + -1.8130262 + ], + [ + 34.3543285, + -1.8128815 + ], + [ + 34.3553022, + -1.8124632 + ], + [ + 34.3554819, + -1.8123962 + ], + [ + 34.3556911, + -1.8123212 + ], + [ + 34.3562247, + -1.8120985 + ], + [ + 34.3577643, + -1.8118014 + ], + [ + 34.3587826, + -1.8117918 + ], + [ + 34.3591096, + -1.8118098 + ], + [ + 34.3596312, + -1.8118547 + ], + [ + 34.3601487, + -1.8119465 + ], + [ + 34.3604419, + -1.8120106 + ], + [ + 34.3609543, + -1.8121942 + ], + [ + 34.3611586, + -1.8122411 + ], + [ + 34.3614067, + -1.8122883 + ], + [ + 34.3618948, + -1.8123812 + ], + [ + 34.3638021, + -1.8127916 + ], + [ + 34.3641213, + -1.8128493 + ], + [ + 34.3643318, + -1.8128453 + ], + [ + 34.3645222, + -1.8128198 + ], + [ + 34.3650211, + -1.8126737 + ], + [ + 34.3650869, + -1.8126563 + ], + [ + 34.3659076, + -1.81249 + ], + [ + 34.3663931, + -1.812348 + ], + [ + 34.3677717, + -1.8118091 + ], + [ + 34.3679971, + -1.8117099 + ], + [ + 34.3682814, + -1.8115732 + ], + [ + 34.3684154, + -1.8114338 + ], + [ + 34.3685603, + -1.8112488 + ], + [ + 34.3686112, + -1.8111362 + ], + [ + 34.3688607, + -1.8108467 + ], + [ + 34.3690752, + -1.810541 + ], + [ + 34.3692899, + -1.8101765 + ], + [ + 34.3694186, + -1.8099942 + ], + [ + 34.369542, + -1.8098306 + ], + [ + 34.3697003, + -1.8096135 + ], + [ + 34.3698653, + -1.8093435 + ], + [ + 34.3705022, + -1.8081417 + ], + [ + 34.3708026, + -1.8074795 + ], + [ + 34.3708831, + -1.8071658 + ], + [ + 34.3709274, + -1.8069058 + ], + [ + 34.3709431, + -1.8067096 + ], + [ + 34.3712895, + -1.8027987 + ], + [ + 34.371323, + -1.8026579 + ], + [ + 34.3713887, + -1.8025293 + ], + [ + 34.371618, + -1.8021164 + ], + [ + 34.3718648, + -1.8018041 + ], + [ + 34.372243, + -1.8014636 + ], + [ + 34.3725648, + -1.8012277 + ], + [ + 34.3727982, + -1.8011151 + ], + [ + 34.3750388, + -1.8004117 + ], + [ + 34.3757168, + -1.8002608 + ], + [ + 34.3758437, + -1.8002326 + ], + [ + 34.3772877, + -1.7999113 + ], + [ + 34.3774012, + -1.7998861 + ], + [ + 34.3786173, + -1.7996155 + ], + [ + 34.3788533, + -1.799527 + ], + [ + 34.3803947, + -1.7989382 + ], + [ + 34.381097, + -1.7987291 + ], + [ + 34.3814564, + -1.7985843 + ], + [ + 34.38162, + -1.7984422 + ], + [ + 34.3818051, + -1.7981661 + ], + [ + 34.3820867, + -1.7976889 + ], + [ + 34.382481, + -1.7968552 + ], + [ + 34.3829182, + -1.796126 + ], + [ + 34.3832374, + -1.7956461 + ], + [ + 34.3834251, + -1.7954584 + ], + [ + 34.383688, + -1.7952252 + ], + [ + 34.3840608, + -1.7948257 + ], + [ + 34.3843478, + -1.7944316 + ], + [ + 34.3845463, + -1.7941099 + ], + [ + 34.3847126, + -1.7937963 + ], + [ + 34.385021, + -1.7930403 + ], + [ + 34.3852678, + -1.792614 + ], + [ + 34.3857211, + -1.7919572 + ], + [ + 34.3860081, + -1.7915577 + ], + [ + 34.3863702, + -1.7911502 + ], + [ + 34.3874189, + -1.7899653 + ], + [ + 34.3877408, + -1.7895497 + ], + [ + 34.3883578, + -1.7886132 + ], + [ + 34.3886662, + -1.7882924 + ], + [ + 34.3893152, + -1.7876838 + ], + [ + 34.3898581, + -1.7872365 + ], + [ + 34.3902583, + -1.7869522 + ], + [ + 34.3904433, + -1.7867511 + ], + [ + 34.3905755, + -1.7864869 + ], + [ + 34.3908149, + -1.7856262 + ], + [ + 34.3914929, + -1.7851895 + ], + [ + 34.392317, + -1.7847309 + ], + [ + 34.3926251, + -1.7845659 + ], + [ + 34.392727, + -1.7845002 + ], + [ + 34.3929684, + -1.7843756 + ], + [ + 34.3932742, + -1.7842254 + ], + [ + 34.3952604, + -1.7831544 + ], + [ + 34.395479, + -1.7830177 + ], + [ + 34.3956372, + -1.782877 + ], + [ + 34.3963936, + -1.7822684 + ], + [ + 34.398306, + -1.7810432 + ], + [ + 34.398762, + -1.780818 + ], + [ + 34.3991026, + -1.780566 + ], + [ + 34.3992823, + -1.7803676 + ], + [ + 34.3994594, + -1.780129 + ], + [ + 34.399928, + -1.7793371 + ], + [ + 34.4013907, + -1.77723 + ], + [ + 34.4015905, + -1.7770549 + ], + [ + 34.40284, + -1.7762221 + ], + [ + 34.403598, + -1.7757068 + ], + [ + 34.4039533, + -1.7755155 + ], + [ + 34.4042926, + -1.7753411 + ], + [ + 34.4053119, + -1.7751398 + ], + [ + 34.4060335, + -1.7749548 + ], + [ + 34.4063768, + -1.774861 + ], + [ + 34.4072701, + -1.7744107 + ], + [ + 34.4071112, + -1.7739519 + ], + [ + 34.4067711, + -1.7731408 + ], + [ + 34.4062844, + -1.7721923 + ], + [ + 34.4062236, + -1.7714079 + ], + [ + 34.4059658, + -1.7693689 + ], + [ + 34.4058103, + -1.7673019 + ], + [ + 34.4056761, + -1.7658972 + ], + [ + 34.4056609, + -1.7657396 + ], + [ + 34.4051712, + -1.7606581 + ], + [ + 34.4047089, + -1.75535 + ], + [ + 34.4042466, + -1.7503094 + ], + [ + 34.4036383, + -1.7435177 + ], + [ + 34.4035817, + -1.7429071 + ], + [ + 34.4035614, + -1.742688 + ], + [ + 34.4033627, + -1.7405425 + ], + [ + 34.4031759, + -1.7385258 + ], + [ + 34.4030722, + -1.7374034 + ], + [ + 34.4028696, + -1.7352104 + ], + [ + 34.4028596, + -1.7351026 + ], + [ + 34.4028, + -1.7345052 + ] + ] + }, + "id": "way/359588175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/361405500", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9909966, + -1.4930067 + ], + [ + 33.9908825, + -1.4931555 + ], + [ + 33.9906974, + -1.4933942 + ], + [ + 33.9905808, + -1.4935792 + ], + [ + 33.990393, + -1.4939277 + ], + [ + 33.9903394, + -1.4940765 + ], + [ + 33.9902951, + -1.4941912 + ], + [ + 33.9902522, + -1.4943212 + ], + [ + 33.9901875, + -1.4944858 + ], + [ + 33.9901134, + -1.495067 + ], + [ + 33.9901013, + -1.4954525 + ], + [ + 33.9901402, + -1.4958654 + ], + [ + 33.990285, + -1.4964841 + ], + [ + 33.9904573, + -1.4969158 + ], + [ + 33.9908811, + -1.4976652 + ], + [ + 33.9911131, + -1.4982685 + ], + [ + 33.9911641, + -1.4985447 + ], + [ + 33.9912352, + -1.4990139 + ], + [ + 33.9912506, + -1.499522 + ], + [ + 33.991254, + -1.4996319 + ], + [ + 33.9911467, + -1.5002875 + ], + [ + 33.9909013, + -1.5010195 + ], + [ + 33.9907618, + -1.5013292 + ], + [ + 33.9904467, + -1.5019178 + ], + [ + 33.9899483, + -1.5026822 + ], + [ + 33.9897794, + -1.5029412 + ], + [ + 33.9889793, + -1.5042175 + ], + [ + 33.9886606, + -1.5047259 + ], + [ + 33.9884142, + -1.5052833 + ], + [ + 33.9882868, + -1.5056707 + ], + [ + 33.9881795, + -1.5061668 + ], + [ + 33.9881343, + -1.5070575 + ], + [ + 33.9880414, + -1.5077899 + ], + [ + 33.987922, + -1.5081871 + ], + [ + 33.9877262, + -1.5086362 + ], + [ + 33.9876858, + -1.5086999 + ], + [ + 33.9874821, + -1.509021 + ], + [ + 33.9871415, + -1.5094205 + ], + [ + 33.9849568, + -1.5113322 + ], + [ + 33.9846967, + -1.5116486 + ], + [ + 33.9845357, + -1.5119168 + ], + [ + 33.9843962, + -1.5122037 + ], + [ + 33.984297, + -1.5124584 + ], + [ + 33.9842474, + -1.5126943 + ], + [ + 33.9838974, + -1.5142106 + ], + [ + 33.9837096, + -1.5150914 + ], + [ + 33.9836653, + -1.515263 + ], + [ + 33.9835286, + -1.5156035 + ], + [ + 33.9833126, + -1.5159829 + ], + [ + 33.9831021, + -1.516251 + ], + [ + 33.9828969, + -1.5164615 + ], + [ + 33.9825992, + -1.5166908 + ], + [ + 33.9823953, + -1.5168221 + ], + [ + 33.9820654, + -1.5169763 + ], + [ + 33.9817811, + -1.517093 + ], + [ + 33.9800799, + -1.5176202 + ], + [ + 33.9796963, + -1.5177784 + ], + [ + 33.9794496, + -1.5179205 + ], + [ + 33.9791438, + -1.5181645 + ], + [ + 33.9785618, + -1.5186927 + ], + [ + 33.978264, + -1.5188992 + ], + [ + 33.9770812, + -1.5195641 + ], + [ + 33.9766762, + -1.5198323 + ], + [ + 33.9763838, + -1.5201031 + ], + [ + 33.9761478, + -1.5204329 + ], + [ + 33.9759386, + -1.5209021 + ], + [ + 33.9756435, + -1.5215912 + ], + [ + 33.9752197, + -1.5223634 + ], + [ + 33.9748415, + -1.5231114 + ], + [ + 33.9747691, + -1.5233367 + ], + [ + 33.9746967, + -1.5236531 + ], + [ + 33.9746766, + -1.5239168 + ], + [ + 33.9746913, + -1.5241232 + ], + [ + 33.9747463, + -1.5244329 + ], + [ + 33.9749529, + -1.5250818 + ], + [ + 33.9751768, + -1.5258271 + ], + [ + 33.9752251, + -1.5261207 + ], + [ + 33.9752474, + -1.526545 + ], + [ + 33.9751948, + -1.5275403 + ] + ] + }, + "id": "way/361405500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/361459873", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2469415, + -1.3323088 + ], + [ + 34.2477721, + -1.3332638 + ], + [ + 34.2479595, + -1.3334544 + ], + [ + 34.2484435, + -1.3340169 + ], + [ + 34.2485046, + -1.334088 + ], + [ + 34.2487434, + -1.3344017 + ], + [ + 34.2488399, + -1.3345626 + ], + [ + 34.2489472, + -1.33476 + ], + [ + 34.248974, + -1.3348093 + ], + [ + 34.2490545, + -1.3350667 + ], + [ + 34.2491254, + -1.3358159 + ], + [ + 34.2491403, + -1.3359731 + ], + [ + 34.2491452, + -1.3361396 + ], + [ + 34.2491336, + -1.3363941 + ], + [ + 34.2490974, + -1.336571 + ], + [ + 34.2490232, + -1.3367154 + ], + [ + 34.2489469, + -1.3368457 + ], + [ + 34.2488426, + -1.3370457 + ], + [ + 34.2485807, + -1.3374034 + ], + [ + 34.248495, + -1.3375021 + ], + [ + 34.2482901, + -1.3379493 + ], + [ + 34.2481613, + -1.3382899 + ], + [ + 34.2480072, + -1.3387187 + ], + [ + 34.247671, + -1.3396912 + ], + [ + 34.2476618, + -1.3397179 + ], + [ + 34.2476437, + -1.3397664 + ], + [ + 34.2472055, + -1.3408468 + ], + [ + 34.2470922, + -1.3410355 + ], + [ + 34.2469254, + -1.3412845 + ], + [ + 34.2468336, + -1.3414299 + ], + [ + 34.2467156, + -1.3416712 + ], + [ + 34.2466351, + -1.341883 + ], + [ + 34.2465571, + -1.3420593 + ], + [ + 34.2465439, + -1.3421941 + ], + [ + 34.2465225, + -1.3424274 + ], + [ + 34.2465292, + -1.3428332 + ], + [ + 34.2465259, + -1.3430529 + ], + [ + 34.2465253, + -1.343089 + ], + [ + 34.2465253, + -1.3434322 + ], + [ + 34.2464608, + -1.3436314 + ], + [ + 34.2463876, + -1.3438417 + ], + [ + 34.2460054, + -1.3446021 + ], + [ + 34.2458591, + -1.3448896 + ], + [ + 34.245672, + -1.3452576 + ], + [ + 34.2448985, + -1.346813 + ], + [ + 34.244822, + -1.3470395 + ], + [ + 34.2447978, + -1.3473291 + ], + [ + 34.2448296, + -1.3476949 + ], + [ + 34.2450528, + -1.3490247 + ], + [ + 34.2451488, + -1.3495965 + ], + [ + 34.2453245, + -1.3505205 + ], + [ + 34.2454366, + -1.3511103 + ], + [ + 34.2455026, + -1.3513669 + ], + [ + 34.2461499, + -1.3538813 + ], + [ + 34.2463857, + -1.354685 + ], + [ + 34.2466888, + -1.3557703 + ], + [ + 34.2467961, + -1.3560599 + ], + [ + 34.246847, + -1.3561645 + ], + [ + 34.2470428, + -1.3563576 + ], + [ + 34.2474264, + -1.3565828 + ], + [ + 34.2480996, + -1.3568858 + ], + [ + 34.2490894, + -1.357095 + ], + [ + 34.2497036, + -1.3572264 + ], + [ + 34.2500735, + -1.3573516 + ], + [ + 34.2503312, + -1.3575106 + ], + [ + 34.2505538, + -1.357709 + ], + [ + 34.2508623, + -1.3580094 + ], + [ + 34.2518788, + -1.3590417 + ], + [ + 34.2522222, + -1.3593742 + ], + [ + 34.252477, + -1.3595646 + ], + [ + 34.2527023, + -1.3596397 + ], + [ + 34.2536759, + -1.3597952 + ], + [ + 34.2539173, + -1.3598488 + ], + [ + 34.2541485, + -1.3599221 + ], + [ + 34.2543599, + -1.3600473 + ], + [ + 34.2547109, + -1.3602897 + ], + [ + 34.2551872, + -1.3606908 + ], + [ + 34.2557682, + -1.3611748 + ], + [ + 34.2577294, + -1.3628085 + ], + [ + 34.2577721, + -1.3628455 + ], + [ + 34.2580909, + -1.3631068 + ], + [ + 34.258292, + -1.3632409 + ], + [ + 34.2589653, + -1.3635251 + ], + [ + 34.259145, + -1.3636163 + ], + [ + 34.2594924, + -1.3638724 + ], + [ + 34.2597538, + -1.3641445 + ], + [ + 34.2599527, + -1.3644275 + ], + [ + 34.2601278, + -1.3649154 + ], + [ + 34.2603507, + -1.3662864 + ], + [ + 34.2603861, + -1.3665003 + ], + [ + 34.2604371, + -1.3668089 + ], + [ + 34.260576, + -1.3676485 + ], + [ + 34.2607202, + -1.3679502 + ], + [ + 34.260845, + -1.3682234 + ], + [ + 34.2608764, + -1.3682921 + ], + [ + 34.2609872, + -1.3684425 + ], + [ + 34.2610014, + -1.3684617 + ], + [ + 34.2611768, + -1.3686997 + ], + [ + 34.2612077, + -1.3687295 + ], + [ + 34.261606, + -1.3691132 + ] + ] + }, + "id": "way/361459873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/361473953", + "highway": "secondary", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1308051, + -1.4051991 + ], + [ + 34.1309751, + -1.4052775 + ], + [ + 34.1315255, + -1.4054707 + ], + [ + 34.1326734, + -1.40583 + ], + [ + 34.13288, + -1.4058863 + ], + [ + 34.1332313, + -1.4060043 + ], + [ + 34.1339529, + -1.4062241 + ], + [ + 34.1342077, + -1.4063421 + ], + [ + 34.1343605, + -1.4064708 + ], + [ + 34.1347468, + -1.4067819 + ], + [ + 34.1351706, + -1.407117 + ], + [ + 34.1365761, + -1.4082888 + ], + [ + 34.1382524, + -1.4096912 + ], + [ + 34.1398698, + -1.4110185 + ], + [ + 34.1406396, + -1.4116727 + ], + [ + 34.1407764, + -1.4117934 + ], + [ + 34.1410124, + -1.4119328 + ], + [ + 34.1429551, + -1.4128807 + ], + [ + 34.1455132, + -1.4141423 + ], + [ + 34.1467202, + -1.4146839 + ], + [ + 34.1473263, + -1.4149119 + ], + [ + 34.1480237, + -1.415129 + ], + [ + 34.1509149, + -1.4158434 + ], + [ + 34.1512185, + -1.4159225 + ], + [ + 34.1536188, + -1.4165314 + ], + [ + 34.1539353, + -1.4165931 + ], + [ + 34.1549063, + -1.4167218 + ], + [ + 34.1552335, + -1.4167513 + ], + [ + 34.1566451, + -1.4167204 + ], + [ + 34.1595116, + -1.4166226 + ], + [ + 34.1603082, + -1.4165636 + ], + [ + 34.161019, + -1.4164537 + ], + [ + 34.1616554, + -1.4163343 + ], + [ + 34.1620839, + -1.416207 + ], + [ + 34.1625747, + -1.416022 + ], + [ + 34.163087, + -1.415845 + ], + [ + 34.1634357, + -1.4157404 + ], + [ + 34.1636664, + -1.4156975 + ], + [ + 34.1639721, + -1.415668 + ], + [ + 34.1643208, + -1.4156895 + ], + [ + 34.1645622, + -1.4157243 + ], + [ + 34.1650906, + -1.4158611 + ], + [ + 34.1656995, + -1.4160354 + ], + [ + 34.1662681, + -1.4162794 + ], + [ + 34.1670433, + -1.4166226 + ], + [ + 34.1674225, + -1.4167997 + ], + [ + 34.167826, + -1.4169882 + ], + [ + 34.1685737, + -1.4173796 + ], + [ + 34.168773, + -1.4174839 + ], + [ + 34.1699351, + -1.4181226 + ], + [ + 34.1700205, + -1.4181762 + ], + [ + 34.1704337, + -1.4183773 + ], + [ + 34.1706771, + -1.4185036 + ], + [ + 34.1709341, + -1.4186253 + ], + [ + 34.1709974, + -1.4186592 + ], + [ + 34.1730568, + -1.4197383 + ], + [ + 34.1731559, + -1.41979 + ], + [ + 34.1736361, + -1.4200279 + ], + [ + 34.1741068, + -1.4203336 + ], + [ + 34.1745762, + -1.4206634 + ], + [ + 34.1747739, + -1.4208246 + ], + [ + 34.1753312, + -1.4212381 + ], + [ + 34.1760039, + -1.4217691 + ], + [ + 34.176221, + -1.4219377 + ], + [ + 34.1769976, + -1.4225284 + ], + [ + 34.1776011, + -1.4229375 + ], + [ + 34.1779184, + -1.4231976 + ], + [ + 34.1786438, + -1.4237175 + ], + [ + 34.1796415, + -1.4244404 + ], + [ + 34.18066, + -1.4252427 + ], + [ + 34.1811924, + -1.4256972 + ], + [ + 34.1821421, + -1.426403 + ], + [ + 34.1826264, + -1.4267817 + ], + [ + 34.182826, + -1.4269304 + ], + [ + 34.1828466, + -1.4269458 + ], + [ + 34.1831261, + -1.4271191 + ], + [ + 34.1835732, + -1.4273548 + ], + [ + 34.1841322, + -1.4276364 + ], + [ + 34.184241, + -1.4276923 + ], + [ + 34.1846124, + -1.4278776 + ], + [ + 34.1851503, + -1.4280859 + ], + [ + 34.185631, + -1.4282738 + ], + [ + 34.185916, + -1.4283483 + ], + [ + 34.1868635, + -1.4285413 + ], + [ + 34.186964, + -1.4285802 + ], + [ + 34.1870137, + -1.4286459 + ], + [ + 34.1870566, + -1.4287616 + ] + ] + }, + "id": "way/361473953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/361475621", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5466321, + -1.4288215 + ], + [ + 34.5459026, + -1.4297895 + ], + [ + 34.5452642, + -1.4306248 + ], + [ + 34.5450496, + -1.4310899 + ], + [ + 34.5446902, + -1.4317147 + ], + [ + 34.5441042, + -1.43254 + ], + [ + 34.5439644, + -1.4327691 + ], + [ + 34.5438193, + -1.4330607 + ], + [ + 34.543743, + -1.4332244 + ], + [ + 34.5434684, + -1.4337869 + ], + [ + 34.5433146, + -1.4341561 + ], + [ + 34.542995, + -1.4349824 + ], + [ + 34.5429583, + -1.4350988 + ], + [ + 34.5428673, + -1.435373 + ], + [ + 34.5426304, + -1.4360276 + ], + [ + 34.542487, + -1.4365432 + ], + [ + 34.5423811, + -1.4368797 + ], + [ + 34.5423212, + -1.4372466 + ], + [ + 34.5421609, + -1.4381013 + ], + [ + 34.5420768, + -1.438439 + ], + [ + 34.5420437, + -1.4386036 + ], + [ + 34.542003, + -1.4388062 + ], + [ + 34.5419043, + -1.4392512 + ], + [ + 34.5418455, + -1.4394832 + ], + [ + 34.5417707, + -1.4398125 + ], + [ + 34.541589, + -1.4405857 + ], + [ + 34.5415628, + -1.4406745 + ], + [ + 34.5415383, + -1.4407692 + ], + [ + 34.5415191, + -1.4408787 + ], + [ + 34.5414582, + -1.4410874 + ], + [ + 34.5413314, + -1.4414572 + ], + [ + 34.5412288, + -1.4416531 + ], + [ + 34.5411614, + -1.4417578 + ], + [ + 34.5407829, + -1.4424409 + ], + [ + 34.5407521, + -1.4424749 + ], + [ + 34.5405626, + -1.4428274 + ], + [ + 34.5402575, + -1.443341 + ], + [ + 34.5401518, + -1.443544 + ], + [ + 34.5400346, + -1.4437475 + ], + [ + 34.5398099, + -1.4442165 + ], + [ + 34.5387903, + -1.4463353 + ], + [ + 34.5387859, + -1.4463494 + ], + [ + 34.5387775, + -1.4463697 + ], + [ + 34.5387598, + -1.4464124 + ], + [ + 34.538683, + -1.4465876 + ], + [ + 34.5385531, + -1.4468299 + ], + [ + 34.5384058, + -1.4470793 + ] + ] + }, + "id": "way/361475621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/362700341", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "source": "Yahoo, Landsat", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3242534, + -2.2331867 + ], + [ + 34.3234982, + -2.2327874 + ], + [ + 34.3220176, + -2.2319619 + ], + [ + 34.3202125, + -2.2309166 + ], + [ + 34.3165566, + -2.2286009 + ], + [ + 34.3102615, + -2.2246021 + ], + [ + 34.3092744, + -2.2240071 + ], + [ + 34.3041729, + -2.2207802 + ], + [ + 34.3011044, + -2.2188719 + ], + [ + 34.2992859, + -2.2177247 + ], + [ + 34.297977, + -2.2168939 + ], + [ + 34.2973976, + -2.2166151 + ], + [ + 34.2964535, + -2.2162185 + ], + [ + 34.2951124, + -2.2156663 + ], + [ + 34.2927788, + -2.2146532 + ], + [ + 34.2924409, + -2.2144388 + ], + [ + 34.2921083, + -2.2141815 + ], + [ + 34.2918669, + -2.2139617 + ], + [ + 34.2915397, + -2.2135919 + ], + [ + 34.2913358, + -2.2132381 + ], + [ + 34.2910622, + -2.2128039 + ], + [ + 34.290617, + -2.2120695 + ], + [ + 34.290331, + -2.2115891 + ], + [ + 34.2897726, + -2.2107575 + ], + [ + 34.2891478, + -2.2099923 + ], + [ + 34.2882603, + -2.2091741 + ], + [ + 34.2881011, + -2.2090409 + ], + [ + 34.2877417, + -2.2088747 + ], + [ + 34.2873876, + -2.2087943 + ], + [ + 34.2868619, + -2.2087407 + ], + [ + 34.2863845, + -2.2086656 + ], + [ + 34.2858909, + -2.2085423 + ], + [ + 34.2855101, + -2.2083386 + ], + [ + 34.2852204, + -2.2080921 + ], + [ + 34.2849307, + -2.2077812 + ], + [ + 34.2847161, + -2.2074327 + ], + [ + 34.2844211, + -2.206886 + ], + [ + 34.2841475, + -2.2063124 + ], + [ + 34.2838524, + -2.2055458 + ], + [ + 34.2834448, + -2.2043451 + ], + [ + 34.283139, + -2.203541 + ], + [ + 34.2825543, + -2.2025654 + ], + [ + 34.2817774, + -2.2013935 + ], + [ + 34.2813526, + -2.2008179 + ], + [ + 34.2802637, + -2.1996815 + ], + [ + 34.2787133, + -2.1980841 + ], + [ + 34.2775278, + -2.1969584 + ], + [ + 34.276235, + -2.1960954 + ], + [ + 34.2748349, + -2.1951358 + ], + [ + 34.2740356, + -2.194766 + ], + [ + 34.2712729, + -2.1936831 + ], + [ + 34.2695348, + -2.1928576 + ], + [ + 34.2687677, + -2.1925842 + ], + [ + 34.26836, + -2.1925253 + ], + [ + 34.2679362, + -2.1926057 + ], + [ + 34.2674051, + -2.1928217 + ], + [ + 34.2668545, + -2.1930951 + ], + [ + 34.2665477, + -2.1932483 + ], + [ + 34.2654257, + -2.1938064 + ], + [ + 34.2645474, + -2.1942952 + ], + [ + 34.263238, + -2.1951888 + ], + [ + 34.2615901, + -2.1963312 + ], + [ + 34.2604946, + -2.1969229 + ], + [ + 34.2601424, + -2.197069 + ], + [ + 34.2597028, + -2.1971639 + ], + [ + 34.2592802, + -2.19718 + ], + [ + 34.2589062, + -2.197148 + ], + [ + 34.2584307, + -2.1970752 + ], + [ + 34.2577561, + -2.1969378 + ], + [ + 34.2566951, + -2.19668 + ], + [ + 34.2561205, + -2.1965096 + ], + [ + 34.2557348, + -2.1964056 + ], + [ + 34.2550423, + -2.1960786 + ], + [ + 34.2547687, + -2.1959885 + ], + [ + 34.2545374, + -2.1959629 + ], + [ + 34.2538328, + -2.1959618 + ], + [ + 34.2513424, + -2.1960679 + ], + [ + 34.2509615, + -2.1960357 + ], + [ + 34.2505807, + -2.1959419 + ], + [ + 34.2492627, + -2.195495 + ], + [ + 34.2475256, + -2.1949891 + ], + [ + 34.2473647, + -2.1949181 + ], + [ + 34.246327, + -2.1944631 + ], + [ + 34.243741, + -2.1932697 + ], + [ + 34.243277, + -2.1930339 + ], + [ + 34.242982, + -2.1928382 + ], + [ + 34.2419282, + -2.1920509 + ], + [ + 34.2391709, + -2.1897727 + ], + [ + 34.2382586, + -2.1889706 + ], + [ + 34.2378214, + -2.1886758 + ], + [ + 34.2373792, + -2.1884754 + ], + [ + 34.2354211, + -2.1877839 + ], + [ + 34.2336455, + -2.1870013 + ], + [ + 34.2327121, + -2.1864277 + ], + [ + 34.2321328, + -2.1860203 + ], + [ + 34.2309043, + -2.1846319 + ], + [ + 34.2300675, + -2.1835277 + ], + [ + 34.2295203, + -2.1827879 + ], + [ + 34.2284367, + -2.1815094 + ], + [ + 34.2279807, + -2.181027 + ], + [ + 34.2274416, + -2.1806383 + ], + [ + 34.2266637, + -2.1803703 + ], + [ + 34.2254269, + -2.1799676 + ], + [ + 34.2246062, + -2.179772 + ], + [ + 34.2236946, + -2.1797538 + ], + [ + 34.2233936, + -2.1797532 + ], + [ + 34.2219571, + -2.1798812 + ], + [ + 34.2215709, + -2.1798758 + ], + [ + 34.2212222, + -2.1797874 + ], + [ + 34.2207429, + -2.1795863 + ], + [ + 34.2201679, + -2.1792265 + ], + [ + 34.2195552, + -2.1788519 + ], + [ + 34.2190054, + -2.1786123 + ], + [ + 34.2184233, + -2.178466 + ], + [ + 34.2175811, + -2.1784392 + ], + [ + 34.2160201, + -2.178608 + ], + [ + 34.2139622, + -2.1790142 + ], + [ + 34.2109748, + -2.1798356 + ], + [ + 34.2043605, + -2.1824623 + ], + [ + 34.2035991, + -2.1827712 + ], + [ + 34.2032638, + -2.1828757 + ], + [ + 34.2017564, + -2.1830151 + ], + [ + 34.2012307, + -2.1831196 + ], + [ + 34.1988888, + -2.1836898 + ], + [ + 34.1980734, + -2.1838131 + ], + [ + 34.1965767, + -2.1837327 + ], + [ + 34.1961422, + -2.1836201 + ], + [ + 34.1955682, + -2.1833682 + ], + [ + 34.1951555, + -2.1832777 + ], + [ + 34.1945919, + -2.1832288 + ], + [ + 34.193857, + -2.1830734 + ], + [ + 34.1923066, + -2.1826606 + ], + [ + 34.1898551, + -2.1819048 + ], + [ + 34.1888734, + -2.181626 + ], + [ + 34.1875323, + -2.1814866 + ], + [ + 34.1864272, + -2.1811275 + ], + [ + 34.185738, + -2.1810365 + ], + [ + 34.1817575, + -2.1814786 + ], + [ + 34.1799336, + -2.181559 + ], + [ + 34.1792792, + -2.1815939 + ], + [ + 34.1785815, + -2.1817546 + ], + [ + 34.178099, + -2.1819262 + ], + [ + 34.1770441, + -2.1824215 + ], + [ + 34.1752183, + -2.1834674 + ], + [ + 34.1742872, + -2.1838735 + ], + [ + 34.1738825, + -2.1840517 + ], + [ + 34.1722813, + -2.1847512 + ], + [ + 34.1719007, + -2.1848738 + ], + [ + 34.1713961, + -2.1849871 + ], + [ + 34.1683787, + -2.1853998 + ], + [ + 34.1680729, + -2.1854293 + ], + [ + 34.1642266, + -2.1860806 + ], + [ + 34.1629571, + -2.1862337 + ], + [ + 34.1620138, + -2.1862441 + ], + [ + 34.160257, + -2.1860514 + ], + [ + 34.1591468, + -2.185824 + ], + [ + 34.1587257, + -2.1856605 + ], + [ + 34.1580498, + -2.1853121 + ], + [ + 34.157728, + -2.1852156 + ], + [ + 34.157449, + -2.185237 + ], + [ + 34.1571432, + -2.1853496 + ], + [ + 34.1568455, + -2.1854836 + ], + [ + 34.1565287, + -2.1855285 + ], + [ + 34.1561306, + -2.1855145 + ], + [ + 34.1546488, + -2.1851807 + ], + [ + 34.1539604, + -2.185097 + ], + [ + 34.1531987, + -2.185046 + ], + [ + 34.1518817, + -2.1849629 + ], + [ + 34.1498796, + -2.1849445 + ], + [ + 34.1492082, + -2.1849863 + ], + [ + 34.1483359, + -2.1851357 + ], + [ + 34.1469267, + -2.1854488 + ], + [ + 34.1459691, + -2.1857114 + ], + [ + 34.1451457, + -2.1858803 + ], + [ + 34.144502, + -2.1858803 + ], + [ + 34.143649, + -2.1857041 + ], + [ + 34.1429178, + -2.1854293 + ], + [ + 34.1421378, + -2.1850774 + ], + [ + 34.1402297, + -2.1842012 + ], + [ + 34.139564, + -2.1839559 + ], + [ + 34.1386901, + -2.1836992 + ], + [ + 34.1381022, + -2.1836047 + ], + [ + 34.1374773, + -2.1835672 + ], + [ + 34.136627, + -2.1836021 + ], + [ + 34.1355093, + -2.1836917 + ], + [ + 34.1351074, + -2.1837254 + ], + [ + 34.1346668, + -2.1838001 + ] + ] + }, + "id": "way/362700341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/364653651", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8353084, + -2.0402407 + ], + [ + 33.8361489, + -2.0398793 + ], + [ + 33.8363395, + -2.0397943 + ] + ] + }, + "id": "way/364653651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/364653655", + "highway": "secondary", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.832022, + -2.0416506 + ], + [ + 33.8325695, + -2.0414201 + ], + [ + 33.8348765, + -2.0404256 + ], + [ + 33.8351484, + -2.0403092 + ], + [ + 33.8353084, + -2.0402407 + ] + ] + }, + "id": "way/364653655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/364744973", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4752922, + -1.2444598 + ], + [ + 34.4752886, + -1.2445403 + ], + [ + 34.4752975, + -1.2446738 + ] + ] + }, + "id": "way/364744973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/364747094", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R182", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2142708, + -1.3128301 + ], + [ + 34.2143808, + -1.3130533 + ] + ] + }, + "id": "way/364747094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/364748316", + "highway": "secondary", + "ref": "R196", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6730158, + -1.8365049 + ], + [ + 34.6731291, + -1.8368133 + ], + [ + 34.6734223, + -1.8373744 + ], + [ + 34.6737839, + -1.8382454 + ], + [ + 34.6739144, + -1.838623 + ], + [ + 34.6741035, + -1.8392344 + ], + [ + 34.6742229, + -1.839627 + ] + ] + }, + "id": "way/364748316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/364753541", + "highway": "secondary", + "oneway": "yes", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8016754, + -1.4944914 + ], + [ + 33.8017067, + -1.4943531 + ] + ] + }, + "id": "way/364753541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/395034591", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8598907, + -3.278985 + ], + [ + 33.8611679, + -3.2811888 + ], + [ + 33.8621432, + -3.2828141 + ], + [ + 33.8633662, + -3.2849269 + ], + [ + 33.8635647, + -3.2853151 + ], + [ + 33.8637069, + -3.2857168 + ], + [ + 33.8638544, + -3.286239 + ], + [ + 33.8639322, + -3.2866862 + ], + [ + 33.8639885, + -3.2870905 + ], + [ + 33.8640636, + -3.2875618 + ], + [ + 33.8644659, + -3.2905154 + ], + [ + 33.8645652, + -3.2913268 + ], + [ + 33.8646269, + -3.291857 + ], + [ + 33.8648817, + -3.2935681 + ], + [ + 33.8650212, + -3.2947356 + ], + [ + 33.8652062, + -3.2960906 + ], + [ + 33.865276, + -3.2966288 + ], + [ + 33.8653672, + -3.2970894 + ], + [ + 33.8656059, + -3.2977963 + ], + [ + 33.8657555, + -3.2980899 + ], + [ + 33.8668456, + -3.2997587 + ], + [ + 33.8669719, + -3.2999745 + ], + [ + 33.8671478, + -3.3002284 + ], + [ + 33.8673807, + -3.3005597 + ], + [ + 33.8676625, + -3.3010563 + ], + [ + 33.8679773, + -3.3017761 + ], + [ + 33.8694042, + -3.3051295 + ], + [ + 33.870061, + -3.3066811 + ], + [ + 33.8703174, + -3.3072757 + ], + [ + 33.8705587, + -3.307878 + ], + [ + 33.8709679, + -3.3088993 + ], + [ + 33.8717129, + -3.3106537 + ] + ] + }, + "id": "way/395034591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/395034594", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8598217, + -3.2788764 + ], + [ + 33.8598907, + -3.278985 + ] + ] + }, + "id": "way/395034594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/395034718", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8717129, + -3.3106537 + ], + [ + 33.8717361, + -3.3107044 + ], + [ + 33.871762, + -3.3107601 + ] + ] + }, + "id": "way/395034718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/395034719", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.871762, + -3.3107601 + ], + [ + 33.8721723, + -3.3117792 + ], + [ + 33.8723868, + -3.312305 + ], + [ + 33.8731745, + -3.3136947 + ], + [ + 33.8734489, + -3.3140953 + ], + [ + 33.8764983, + -3.3184925 + ], + [ + 33.877525, + -3.3200452 + ], + [ + 33.8779038, + -3.3207258 + ], + [ + 33.8783276, + -3.3216147 + ], + [ + 33.8791236, + -3.3235123 + ], + [ + 33.8800042, + -3.3254952 + ], + [ + 33.8819628, + -3.3299058 + ], + [ + 33.8823337, + -3.330741 + ], + [ + 33.8836299, + -3.3339235 + ], + [ + 33.8837731, + -3.3342751 + ], + [ + 33.8844419, + -3.3355297 + ], + [ + 33.8847499, + -3.3360534 + ], + [ + 33.8851493, + -3.3367261 + ], + [ + 33.885433, + -3.3371659 + ], + [ + 33.8866245, + -3.3392906 + ], + [ + 33.88775, + -3.3411776 + ], + [ + 33.8924309, + -3.3490253 + ], + [ + 33.8926205, + -3.3493432 + ], + [ + 33.89377, + -3.3513042 + ], + [ + 33.8969265, + -3.3566889 + ], + [ + 33.8977042, + -3.3579848 + ], + [ + 33.8979691, + -3.3584747 + ], + [ + 33.8981346, + -3.3587634 + ], + [ + 33.8983602, + -3.3591136 + ], + [ + 33.9066152, + -3.3729413 + ], + [ + 33.9099723, + -3.3776842 + ], + [ + 33.9107801, + -3.378892 + ], + [ + 33.9113604, + -3.3799436 + ] + ] + }, + "id": "way/395034719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/416342867", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8146209, + -2.4385077 + ], + [ + 34.8148121, + -2.4385012 + ], + [ + 34.8149205, + -2.4385188 + ], + [ + 34.8149905, + -2.4385856 + ], + [ + 34.8151217, + -2.4387713 + ], + [ + 34.8152792, + -2.4390339 + ], + [ + 34.8154098, + -2.4393517 + ], + [ + 34.8154755, + -2.4395712 + ], + [ + 34.8154847, + -2.4401078 + ], + [ + 34.8154951, + -2.440958 + ], + [ + 34.8155095, + -2.4414946 + ], + [ + 34.8153566, + -2.4426361 + ], + [ + 34.8153432, + -2.443223 + ], + [ + 34.8153807, + -2.4436169 + ], + [ + 34.8154612, + -2.4439948 + ], + [ + 34.8156761, + -2.4446143 + ], + [ + 34.815748, + -2.4448946 + ], + [ + 34.8158187, + -2.4452657 + ], + [ + 34.8157972, + -2.4454961 + ], + [ + 34.8157275, + -2.4457534 + ], + [ + 34.8153359, + -2.4462947 + ], + [ + 34.8149335, + -2.4470558 + ], + [ + 34.8146546, + -2.4478061 + ], + [ + 34.8144239, + -2.448267 + ], + [ + 34.814322, + -2.4484653 + ], + [ + 34.814145, + -2.4487226 + ], + [ + 34.8140001, + -2.4488994 + ], + [ + 34.8138204, + -2.4491889 + ], + [ + 34.8136246, + -2.4495962 + ], + [ + 34.8134878, + -2.4500223 + ], + [ + 34.8134074, + -2.4503947 + ], + [ + 34.8133698, + -2.4506949 + ], + [ + 34.8133188, + -2.4519651 + ], + [ + 34.8134047, + -2.4526082 + ], + [ + 34.8135005, + -2.4528313 + ], + [ + 34.8136172, + -2.453066 + ], + [ + 34.813809, + -2.4534275 + ], + [ + 34.814391, + -2.454293 + ], + [ + 34.8153084, + -2.4556973 + ], + [ + 34.8165858, + -2.4574532 + ], + [ + 34.8180808, + -2.459497 + ], + [ + 34.8194282, + -2.4614292 + ], + [ + 34.8200807, + -2.4623866 + ], + [ + 34.8206466, + -2.463295 + ], + [ + 34.820762, + -2.4635657 + ], + [ + 34.821285, + -2.4663928 + ], + [ + 34.8214406, + -2.4671378 + ], + [ + 34.821623, + -2.4681185 + ], + [ + 34.8217651, + -2.4690712 + ], + [ + 34.8225154, + -2.4772449 + ], + [ + 34.8226699, + -2.478456 + ], + [ + 34.8227676, + -2.4792092 + ], + [ + 34.8228909, + -2.4798228 + ], + [ + 34.8233684, + -2.4819451 + ], + [ + 34.823583, + -2.4828187 + ], + [ + 34.8238309, + -2.4836351 + ], + [ + 34.8242071, + -2.4846659 + ], + [ + 34.8246091, + -2.4858012 + ], + [ + 34.8249589, + -2.4864691 + ], + [ + 34.8250479, + -2.4866043 + ], + [ + 34.8251876, + -2.4867445 + ], + [ + 34.8254613, + -2.4869552 + ], + [ + 34.82622, + -2.4876638 + ], + [ + 34.8268374, + -2.4882742 + ], + [ + 34.8275207, + -2.4889529 + ], + [ + 34.8278852, + -2.4892429 + ], + [ + 34.828433, + -2.4897491 + ], + [ + 34.8290203, + -2.4902525 + ], + [ + 34.8293182, + -2.4905379 + ], + [ + 34.8294807, + -2.490758 + ], + [ + 34.8296245, + -2.4910419 + ], + [ + 34.8298637, + -2.4917174 + ], + [ + 34.8300651, + -2.4924937 + ], + [ + 34.8301799, + -2.4929324 + ], + [ + 34.8302439, + -2.4931224 + ], + [ + 34.8302599, + -2.4933343 + ], + [ + 34.8302664, + -2.4935648 + ], + [ + 34.8302882, + -2.493707 + ] + ] + }, + "id": "way/416342867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/416380899", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5975743, + -1.7355451 + ], + [ + 34.5987294, + -1.7350549 + ], + [ + 34.5990872, + -1.7349054 + ], + [ + 34.6008084, + -1.7341726 + ], + [ + 34.6012691, + -1.7339468 + ], + [ + 34.6022222, + -1.7335378 + ], + [ + 34.6029261, + -1.7332308 + ], + [ + 34.6033278, + -1.7330634 + ], + [ + 34.604571, + -1.7324782 + ], + [ + 34.6047454, + -1.7324019 + ], + [ + 34.6054746, + -1.7320829 + ], + [ + 34.6057225, + -1.7319719 + ], + [ + 34.6070172, + -1.7313924 + ], + [ + 34.6080819, + -1.7309638 + ], + [ + 34.6082161, + -1.7309098 + ], + [ + 34.6086205, + -1.7307371 + ] + ] + }, + "id": "way/416380899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/416457017", + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed": "50", + "old_ref": "B144", + "source": "survey", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.9267569, + -2.2869474 + ], + [ + 34.9267942, + -2.287104 + ] + ] + }, + "id": "way/416457017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/416457018", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "old_ref": "B144", + "source": "survey", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.9267942, + -2.287104 + ], + [ + 34.9269238, + -2.2877328 + ], + [ + 34.9269512, + -2.2880376 + ], + [ + 34.9269436, + -2.2883156 + ], + [ + 34.9269018, + -2.2887127 + ], + [ + 34.9268095, + -2.2895422 + ], + [ + 34.9267092, + -2.2904954 + ], + [ + 34.9266761, + -2.2906962 + ], + [ + 34.9266489, + -2.2908612 + ], + [ + 34.9265357, + -2.291253 + ], + [ + 34.9264251, + -2.2915187 + ], + [ + 34.9261746, + -2.2919493 + ], + [ + 34.9258757, + -2.2923259 + ], + [ + 34.9254262, + -2.2928238 + ], + [ + 34.9247524, + -2.2935211 + ], + [ + 34.9242374, + -2.2939621 + ], + [ + 34.923661, + -2.2943682 + ], + [ + 34.9226688, + -2.2950099 + ], + [ + 34.9217174, + -2.2955916 + ], + [ + 34.9211895, + -2.2958525 + ], + [ + 34.9206616, + -2.2960935 + ], + [ + 34.920099, + -2.2963182 + ], + [ + 34.9196586, + -2.2964546 + ], + [ + 34.9192672, + -2.2965169 + ], + [ + 34.9188827, + -2.2965239 + ], + [ + 34.9184983, + -2.2964957 + ], + [ + 34.916698, + -2.2962726 + ], + [ + 34.9145381, + -2.2961613 + ], + [ + 34.914093, + -2.2961899 + ], + [ + 34.9136676, + -2.2962736 + ], + [ + 34.9132236, + -2.2964635 + ], + [ + 34.9127267, + -2.2968071 + ], + [ + 34.9115492, + -2.2978324 + ], + [ + 34.9102842, + -2.2989481 + ], + [ + 34.909785, + -2.299361 + ], + [ + 34.9097196, + -2.2994151 + ], + [ + 34.9090704, + -2.2998853 + ], + [ + 34.9077456, + -2.3007076 + ], + [ + 34.9065744, + -2.3013954 + ], + [ + 34.9061697, + -2.3016036 + ], + [ + 34.9055951, + -2.3017952 + ], + [ + 34.9046516, + -2.302051 + ], + [ + 34.9037879, + -2.3022447 + ], + [ + 34.9031941, + -2.3023263 + ], + [ + 34.9026317, + -2.3023828 + ], + [ + 34.9014022, + -2.3024296 + ], + [ + 34.8998252, + -2.3024423 + ], + [ + 34.8988658, + -2.3024789 + ], + [ + 34.8986553, + -2.3024709 + ], + [ + 34.8970198, + -2.3022917 + ], + [ + 34.8956031, + -2.3020251 + ], + [ + 34.8939754, + -2.3017188 + ], + [ + 34.8910162, + -2.3010261 + ], + [ + 34.889888, + -2.3007643 + ], + [ + 34.8867434, + -2.2999317 + ], + [ + 34.8857679, + -2.2997339 + ], + [ + 34.8850116, + -2.2995805 + ], + [ + 34.88186, + -2.2988676 + ], + [ + 34.8807555, + -2.298669 + ], + [ + 34.8802614, + -2.2986183 + ], + [ + 34.8794836, + -2.2985781 + ], + [ + 34.8773915, + -2.2985406 + ], + [ + 34.8736069, + -2.2985031 + ], + [ + 34.869321, + -2.2982608 + ], + [ + 34.8688204, + -2.2982618 + ], + [ + 34.8685509, + -2.2982967 + ], + [ + 34.8682059, + -2.2984093 + ], + [ + 34.8606062, + -2.3017915 + ], + [ + 34.8594072, + -2.3021694 + ], + [ + 34.8586401, + -2.3023329 + ], + [ + 34.8579133, + -2.3024133 + ], + [ + 34.8572776, + -2.3024213 + ], + [ + 34.8568738, + -2.3024087 + ], + [ + 34.8561158, + -2.302385 + ], + [ + 34.8549105, + -2.3023161 + ], + [ + 34.8545819, + -2.3023248 + ], + [ + 34.8540616, + -2.3024213 + ], + [ + 34.8535278, + -2.3025982 + ], + [ + 34.8529807, + -2.3028849 + ], + [ + 34.8525138, + -2.3032357 + ], + [ + 34.8520123, + -2.3036983 + ], + [ + 34.8516154, + -2.3042052 + ], + [ + 34.850866, + -2.3053218 + ], + [ + 34.8506677, + -2.3056281 + ], + [ + 34.850141, + -2.3064062 + ], + [ + 34.8497373, + -2.3070629 + ], + [ + 34.8494642, + -2.3076911 + ], + [ + 34.8492547, + -2.3082155 + ], + [ + 34.8489625, + -2.3088248 + ], + [ + 34.8484922, + -2.3095645 + ], + [ + 34.8478251, + -2.3106094 + ], + [ + 34.8473413, + -2.3116344 + ], + [ + 34.8469759, + -2.3126075 + ], + [ + 34.8465926, + -2.313653 + ], + [ + 34.8464385, + -2.3143456 + ], + [ + 34.8463246, + -2.3149362 + ], + [ + 34.8463202, + -2.3149705 + ], + [ + 34.8462683, + -2.3153763 + ], + [ + 34.8461792, + -2.3159105 + ], + [ + 34.8461341, + -2.3163664 + ], + [ + 34.8461386, + -2.3169019 + ] + ] + }, + "id": "way/416457018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423031514", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5664219, + -1.7489893 + ], + [ + 34.5669909, + -1.74875 + ], + [ + 34.5675865, + -1.7484995 + ], + [ + 34.5680899, + -1.7482693 + ], + [ + 34.5721359, + -1.7466133 + ] + ] + }, + "id": "way/423031514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423031515", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5721359, + -1.7466133 + ], + [ + 34.5738074, + -1.7458793 + ], + [ + 34.5751399, + -1.7452942 + ] + ] + }, + "id": "way/423031515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423031516", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5751399, + -1.7452942 + ], + [ + 34.5759551, + -1.7449208 + ], + [ + 34.5761311, + -1.7448402 + ], + [ + 34.5766849, + -1.7445865 + ] + ] + }, + "id": "way/423031516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423031517", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5766849, + -1.7445865 + ], + [ + 34.5825924, + -1.7419887 + ], + [ + 34.5828489, + -1.7418862 + ] + ] + }, + "id": "way/423031517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423031518", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5828489, + -1.7418862 + ], + [ + 34.5833323, + -1.7416707 + ], + [ + 34.583503, + -1.7415946 + ], + [ + 34.5849354, + -1.7409832 + ] + ] + }, + "id": "way/423031518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423031522", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5664219, + -1.7489893 + ], + [ + 34.5659291, + -1.7492154 + ], + [ + 34.5657473, + -1.7492988 + ], + [ + 34.5650378, + -1.749609 + ], + [ + 34.5641754, + -1.7499862 + ], + [ + 34.5634945, + -1.7502801 + ], + [ + 34.5610592, + -1.7513314 + ], + [ + 34.5602803, + -1.7516696 + ], + [ + 34.5583718, + -1.7524985 + ], + [ + 34.5569348, + -1.7531226 + ], + [ + 34.5563178, + -1.7533906 + ] + ] + }, + "id": "way/423031522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423032526", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.208092, + -1.7259667 + ], + [ + 34.2076655, + -1.7259747 + ], + [ + 34.2070036, + -1.7257801 + ], + [ + 34.2063211, + -1.7255795 + ], + [ + 34.2047938, + -1.7249427 + ], + [ + 34.2040117, + -1.7245997 + ], + [ + 34.2033529, + -1.7241828 + ], + [ + 34.2032128, + -1.724012 + ], + [ + 34.2031296, + -1.7238412 + ], + [ + 34.2030126, + -1.7236339 + ], + [ + 34.2029281, + -1.7235648 + ], + [ + 34.2027346, + -1.7235004 + ], + [ + 34.2025249, + -1.7234767 + ], + [ + 34.2017242, + -1.7234259 + ], + [ + 34.2013401, + -1.7233721 + ], + [ + 34.2009652, + -1.7233155 + ], + [ + 34.200706, + -1.7232554 + ], + [ + 34.1994564, + -1.7229234 + ], + [ + 34.1986638, + -1.7225394 + ], + [ + 34.1980684, + -1.7222257 + ], + [ + 34.19759, + -1.7219273 + ], + [ + 34.1970627, + -1.7214839 + ], + [ + 34.1969746, + -1.7214098 + ], + [ + 34.1966576, + -1.7211157 + ], + [ + 34.1964776, + -1.720941 + ], + [ + 34.1962274, + -1.7206028 + ], + [ + 34.1961565, + -1.720507 + ], + [ + 34.1959135, + -1.7201785 + ], + [ + 34.194743, + -1.7185447 + ], + [ + 34.1939204, + -1.7175377 + ], + [ + 34.1935313, + -1.7172196 + ], + [ + 34.1927998, + -1.7167624 + ], + [ + 34.1918639, + -1.7162779 + ], + [ + 34.191238, + -1.7159064 + ] + ] + }, + "id": "way/423032526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423032545", + "highway": "secondary", + "ref": "R198", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2149011, + -1.9328911 + ], + [ + 34.214707, + -1.9329969 + ], + [ + 34.2145412, + -1.9330418 + ], + [ + 34.2143578, + -1.9330722 + ] + ] + }, + "id": "way/423032545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423035323", + "highway": "secondary", + "name": "Rung'abure Road", + "name:en": "Rung'abure Road", + "name:sw": "Barabara ya Rung'abure", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5563178, + -1.7533906 + ], + [ + 34.5518592, + -1.7553014 + ], + [ + 34.550893, + -1.7557429 + ], + [ + 34.5498664, + -1.7561883 + ], + [ + 34.5476486, + -1.7571506 + ], + [ + 34.5452063, + -1.7582103 + ], + [ + 34.5429834, + -1.7591748 + ], + [ + 34.5414871, + -1.7599076 + ], + [ + 34.5409935, + -1.7599076 + ], + [ + 34.5398777, + -1.7594786 + ], + [ + 34.5382297, + -1.7586135 + ], + [ + 34.5368951, + -1.7579129 + ], + [ + 34.5324105, + -1.7555537 + ], + [ + 34.5317055, + -1.7551542 + ], + [ + 34.5313698, + -1.7549639 + ], + [ + 34.5303291, + -1.7543741 + ], + [ + 34.5296102, + -1.753677 + ], + [ + 34.5283421, + -1.7520733 + ], + [ + 34.526527, + -1.7497777 + ], + [ + 34.5256958, + -1.7487264 + ], + [ + 34.5251553, + -1.7480429 + ], + [ + 34.5248788, + -1.7476932 + ], + [ + 34.5242483, + -1.7468901 + ], + [ + 34.5219659, + -1.7439827 + ], + [ + 34.5214885, + -1.7433957 + ], + [ + 34.5205787, + -1.7422791 + ], + [ + 34.5195165, + -1.7409116 + ], + [ + 34.5180767, + -1.7390604 + ], + [ + 34.5153568, + -1.7356997 + ], + [ + 34.5147995, + -1.7350111 + ], + [ + 34.5122617, + -1.7318754 + ], + [ + 34.5112792, + -1.7306256 + ], + [ + 34.5107999, + -1.7300148 + ], + [ + 34.5090931, + -1.7278444 + ], + [ + 34.5089572, + -1.7276716 + ], + [ + 34.5087217, + -1.7274225 + ], + [ + 34.5086715, + -1.7273739 + ], + [ + 34.5086238, + -1.727332 + ], + [ + 34.508526, + -1.727262 + ], + [ + 34.508412, + -1.7271949 + ], + [ + 34.5083088, + -1.7271487 + ], + [ + 34.5082313, + -1.7271196 + ], + [ + 34.5080841, + -1.7270944 + ], + [ + 34.5078295, + -1.7270941 + ], + [ + 34.5075009, + -1.7271851 + ], + [ + 34.5027969, + -1.728625 + ], + [ + 34.5027217, + -1.728646 + ] + ] + }, + "id": "way/423035323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423035324", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4395557, + -1.7248344 + ], + [ + 34.439351, + -1.7248883 + ], + [ + 34.4392304, + -1.7249181 + ], + [ + 34.4375491, + -1.7253336 + ], + [ + 34.4370304, + -1.7254913 + ], + [ + 34.434798, + -1.7260858 + ], + [ + 34.4344163, + -1.7261757 + ], + [ + 34.4342683, + -1.7262106 + ], + [ + 34.4311133, + -1.7270131 + ], + [ + 34.4298025, + -1.7273623 + ], + [ + 34.4290612, + -1.7275548 + ], + [ + 34.4281114, + -1.7278015 + ], + [ + 34.4269384, + -1.7281062 + ], + [ + 34.4248636, + -1.7286359 + ], + [ + 34.4226504, + -1.7291843 + ], + [ + 34.4221799, + -1.7293009 + ] + ] + }, + "id": "way/423035324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423035325", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4221799, + -1.7293009 + ], + [ + 34.4189324, + -1.7301688 + ], + [ + 34.4179714, + -1.730417 + ], + [ + 34.4165757, + -1.7307774 + ], + [ + 34.4150873, + -1.7311831 + ], + [ + 34.409536, + -1.732671 + ], + [ + 34.4090321, + -1.7328061 + ] + ] + }, + "id": "way/423035325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/423477646", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1454542, + -1.6938391 + ], + [ + 34.1453998, + -1.6935153 + ], + [ + 34.1453388, + -1.6931581 + ], + [ + 34.1452429, + -1.6929105 + ], + [ + 34.1451541, + -1.6927067 + ], + [ + 34.1442686, + -1.6908712 + ], + [ + 34.1434799, + -1.6891395 + ], + [ + 34.1430025, + -1.6880111 + ], + [ + 34.1423032, + -1.6863329 + ], + [ + 34.1417098, + -1.6848764 + ], + [ + 34.1411513, + -1.6835688 + ], + [ + 34.1402239, + -1.6813435 + ], + [ + 34.1400344, + -1.6808887 + ], + [ + 34.1396979, + -1.6799956 + ], + [ + 34.1392368, + -1.6788601 + ], + [ + 34.138782, + -1.6775643 + ], + [ + 34.138509, + -1.6766773 + ], + [ + 34.1377716, + -1.6742819 + ], + [ + 34.1376216, + -1.6737901 + ], + [ + 34.1373188, + -1.6727974 + ], + [ + 34.1369822, + -1.6716939 + ], + [ + 34.1368607, + -1.6712909 + ], + [ + 34.13677, + -1.6709901 + ], + [ + 34.1363884, + -1.6697248 + ], + [ + 34.1363842, + -1.6697109 + ], + [ + 34.1363191, + -1.6694951 + ] + ] + }, + "id": "way/423477646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/424533241", + "highway": "secondary", + "source": "classification Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5089242, + -1.3791104 + ], + [ + 34.5091647, + -1.3790989 + ], + [ + 34.5095135, + -1.379127 + ], + [ + 34.5100015, + -1.379127 + ], + [ + 34.5104442, + -1.3791297 + ], + [ + 34.5108182, + -1.3791338 + ], + [ + 34.5117731, + -1.3791686 + ], + [ + 34.5121287, + -1.3791722 + ], + [ + 34.5134589, + -1.3792039 + ], + [ + 34.5139176, + -1.3792095 + ], + [ + 34.5144713, + -1.3791966 + ], + [ + 34.5153111, + -1.3792197 + ], + [ + 34.5155819, + -1.3792279 + ], + [ + 34.5159722, + -1.3792277 + ], + [ + 34.5160562, + -1.3792303 + ], + [ + 34.5169216, + -1.3792573 + ], + [ + 34.5173173, + -1.3792554 + ], + [ + 34.5175185, + -1.3792719 + ], + [ + 34.5187131, + -1.3792913 + ], + [ + 34.5188126, + -1.3792826 + ], + [ + 34.5191345, + -1.3792854 + ], + [ + 34.5191855, + -1.3792855 + ], + [ + 34.5199673, + -1.3792799 + ], + [ + 34.5200527, + -1.3792851 + ], + [ + 34.5202302, + -1.3792772 + ], + [ + 34.520558, + -1.379237 + ], + [ + 34.5208041, + -1.3792075 + ], + [ + 34.5212668, + -1.379119 + ], + [ + 34.5221493, + -1.3789313 + ], + [ + 34.5224283, + -1.378879 + ], + [ + 34.5227502, + -1.3788402 + ], + [ + 34.5228187, + -1.378834 + ], + [ + 34.5228576, + -1.3788272 + ], + [ + 34.5242722, + -1.3786182 + ], + [ + 34.5244453, + -1.378576 + ], + [ + 34.5247453, + -1.3784483 + ], + [ + 34.5248497, + -1.3783951 + ], + [ + 34.5249465, + -1.3783203 + ], + [ + 34.5250424, + -1.3782496 + ], + [ + 34.5252915, + -1.3780397 + ], + [ + 34.5254632, + -1.3778642 + ], + [ + 34.5262381, + -1.3771195 + ], + [ + 34.5271148, + -1.3762011 + ], + [ + 34.5280835, + -1.375304 + ], + [ + 34.5281359, + -1.3752468 + ], + [ + 34.5290586, + -1.3742589 + ], + [ + 34.5292183, + -1.3740807 + ], + [ + 34.5297379, + -1.3735865 + ], + [ + 34.5298647, + -1.3733499 + ], + [ + 34.5299872, + -1.3731491 + ], + [ + 34.530059, + -1.3730313 + ], + [ + 34.5303375, + -1.3725744 + ], + [ + 34.5304847, + -1.3723442 + ], + [ + 34.5311807, + -1.3712172 + ], + [ + 34.5312782, + -1.37106 + ], + [ + 34.5314089, + -1.3708155 + ], + [ + 34.5315597, + -1.3705333 + ], + [ + 34.5318727, + -1.3700182 + ], + [ + 34.532114, + -1.3695166 + ], + [ + 34.5329077, + -1.3680835 + ], + [ + 34.5329848, + -1.367908 + ], + [ + 34.533542, + -1.3666383 + ], + [ + 34.5336949, + -1.3662869 + ], + [ + 34.5338564, + -1.3659491 + ], + [ + 34.5339074, + -1.3658747 + ], + [ + 34.5339792, + -1.3658178 + ], + [ + 34.5341586, + -1.3657276 + ], + [ + 34.5343306, + -1.3656502 + ], + [ + 34.5346377, + -1.365543 + ], + [ + 34.5348922, + -1.3654686 + ], + [ + 34.5349156, + -1.3654617 + ], + [ + 34.5352539, + -1.3653616 + ], + [ + 34.5356299, + -1.3652372 + ], + [ + 34.5357978, + -1.3651968 + ], + [ + 34.5364508, + -1.3650626 + ], + [ + 34.5372357, + -1.3649077 + ], + [ + 34.5373443, + -1.3648752 + ], + [ + 34.5375449, + -1.3647752 + ], + [ + 34.5376464, + -1.3647104 + ], + [ + 34.5377303, + -1.3646567 + ], + [ + 34.5378003, + -1.3645913 + ], + [ + 34.5378385, + -1.3645383 + ], + [ + 34.5378731, + -1.3644804 + ], + [ + 34.5379123, + -1.3643622 + ], + [ + 34.5379629, + -1.3641036 + ], + [ + 34.538085, + -1.3634339 + ], + [ + 34.5382699, + -1.3628478 + ], + [ + 34.5384001, + -1.3625517 + ], + [ + 34.5386603, + -1.3621354 + ], + [ + 34.5395703, + -1.3606821 + ], + [ + 34.5397354, + -1.3604335 + ], + [ + 34.5400344, + -1.360002 + ], + [ + 34.540375, + -1.3596714 + ], + [ + 34.5406254, + -1.3594392 + ], + [ + 34.5408204, + -1.3593023 + ], + [ + 34.5413165, + -1.3590635 + ], + [ + 34.5416406, + -1.35897 + ], + [ + 34.542062, + -1.358862 + ], + [ + 34.5426327, + -1.35872 + ], + [ + 34.5431865, + -1.3585838 + ], + [ + 34.5433067, + -1.3585619 + ], + [ + 34.5433299, + -1.3585577 + ], + [ + 34.5438608, + -1.3584632 + ], + [ + 34.5441052, + -1.35841 + ], + [ + 34.5444002, + -1.3583606 + ], + [ + 34.5445803, + -1.3583223 + ], + [ + 34.5452565, + -1.3581783 + ], + [ + 34.5454889, + -1.358132 + ], + [ + 34.5461619, + -1.3579978 + ], + [ + 34.5468551, + -1.3578726 + ], + [ + 34.5476664, + -1.3577238 + ], + [ + 34.5479907, + -1.3576759 + ], + [ + 34.5484225, + -1.3575964 + ], + [ + 34.5489563, + -1.3574996 + ], + [ + 34.5495837, + -1.3574147 + ], + [ + 34.5496533, + -1.3574053 + ], + [ + 34.5499303, + -1.3573873 + ], + [ + 34.5503097, + -1.3573832 + ], + [ + 34.5509107, + -1.3573873 + ], + [ + 34.5511945, + -1.3573892 + ], + [ + 34.5516924, + -1.3573724 + ], + [ + 34.5522196, + -1.3573698 + ], + [ + 34.5531057, + -1.3573178 + ], + [ + 34.5537726, + -1.3572787 + ], + [ + 34.5543452, + -1.3571982 + ], + [ + 34.5545073, + -1.3571742 + ], + [ + 34.5552678, + -1.3570614 + ], + [ + 34.5554489, + -1.3570389 + ], + [ + 34.5559277, + -1.3569904 + ], + [ + 34.5564647, + -1.356934 + ], + [ + 34.5567403, + -1.3569086 + ], + [ + 34.5574995, + -1.3568469 + ], + [ + 34.5575873, + -1.3568434 + ], + [ + 34.5579956, + -1.3568269 + ], + [ + 34.5584623, + -1.3568429 + ], + [ + 34.5586421, + -1.3568229 + ], + [ + 34.5589331, + -1.3567652 + ], + [ + 34.5591008, + -1.3567089 + ], + [ + 34.5593005, + -1.3566378 + ], + [ + 34.5597732, + -1.3564031 + ], + [ + 34.5601717, + -1.3561317 + ], + [ + 34.5606779, + -1.3558052 + ], + [ + 34.5613229, + -1.3553011 + ], + [ + 34.5616542, + -1.3549873 + ], + [ + 34.5619828, + -1.3547661 + ], + [ + 34.5621531, + -1.3546682 + ], + [ + 34.5623516, + -1.3545691 + ], + [ + 34.56244, + -1.3545365 + ], + [ + 34.56274, + -1.3544333 + ], + [ + 34.5633252, + -1.3542339 + ], + [ + 34.5634667, + -1.3541904 + ], + [ + 34.5639471, + -1.3540076 + ], + [ + 34.5646287, + -1.3537633 + ], + [ + 34.5652675, + -1.353572 + ], + [ + 34.5657392, + -1.3534307 + ], + [ + 34.566168, + -1.3532954 + ], + [ + 34.5670294, + -1.3529709 + ], + [ + 34.5673172, + -1.3528287 + ], + [ + 34.5679226, + -1.3525298 + ], + [ + 34.5683128, + -1.3523233 + ], + [ + 34.5684654, + -1.3522426 + ], + [ + 34.5695077, + -1.3516811 + ], + [ + 34.5699347, + -1.3514683 + ], + [ + 34.5712833, + -1.3507989 + ], + [ + 34.5713946, + -1.3507265 + ], + [ + 34.5714641, + -1.3506836 + ], + [ + 34.5715502, + -1.3506059 + ], + [ + 34.5716052, + -1.3505254 + ], + [ + 34.5716634, + -1.3504542 + ], + [ + 34.5721278, + -1.349328 + ], + [ + 34.572206, + -1.3491384 + ], + [ + 34.5722506, + -1.349013 + ], + [ + 34.5722999, + -1.3488562 + ], + [ + 34.572324, + -1.3487422 + ], + [ + 34.5723492, + -1.3481979 + ], + [ + 34.5723803, + -1.3479137 + ], + [ + 34.5724254, + -1.3476604 + ], + [ + 34.5726137, + -1.3467258 + ], + [ + 34.5727184, + -1.3461962 + ], + [ + 34.5729158, + -1.3456203 + ], + [ + 34.5729745, + -1.3453945 + ], + [ + 34.5731084, + -1.3449777 + ], + [ + 34.5732149, + -1.3446884 + ], + [ + 34.573228, + -1.3446629 + ], + [ + 34.5733215, + -1.3443741 + ], + [ + 34.5733366, + -1.344291 + ], + [ + 34.5733378, + -1.3442118 + ], + [ + 34.5733058, + -1.3440014 + ], + [ + 34.5732011, + -1.3435375 + ], + [ + 34.5729815, + -1.3427363 + ], + [ + 34.5728766, + -1.3424274 + ], + [ + 34.5728766, + -1.3421163 + ], + [ + 34.5729036, + -1.341925 + ], + [ + 34.5730281, + -1.3413635 + ], + [ + 34.5730797, + -1.3410397 + ], + [ + 34.5731341, + -1.3408748 + ], + [ + 34.5731579, + -1.340836 + ], + [ + 34.5733084, + -1.3407554 + ], + [ + 34.5734345, + -1.3406737 + ], + [ + 34.5737667, + -1.3405403 + ], + [ + 34.5742016, + -1.3403023 + ], + [ + 34.5748306, + -1.3400167 + ], + [ + 34.575206, + -1.3398451 + ], + [ + 34.5753988, + -1.3397336 + ] + ] + }, + "id": "way/424533241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/424710066", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1685192, + -1.7101277 + ], + [ + 34.1691327, + -1.7105312 + ], + [ + 34.1701155, + -1.7112587 + ], + [ + 34.1702183, + -1.7113271 + ], + [ + 34.1705869, + -1.7115724 + ], + [ + 34.1706883, + -1.7116406 + ], + [ + 34.1708093, + -1.711701 + ], + [ + 34.170938, + -1.7117517 + ], + [ + 34.171055, + -1.7117888 + ], + [ + 34.1712618, + -1.7118453 + ], + [ + 34.1715095, + -1.711896 + ], + [ + 34.1718137, + -1.7119506 + ], + [ + 34.1722974, + -1.7120032 + ], + [ + 34.1724301, + -1.7120169 + ], + [ + 34.1725822, + -1.7120344 + ], + [ + 34.1730093, + -1.7121241 + ], + [ + 34.1732278, + -1.7121611 + ], + [ + 34.1733177, + -1.7121698 + ], + [ + 34.1734287, + -1.7121806 + ], + [ + 34.1736335, + -1.7121904 + ], + [ + 34.1738104, + -1.7121933 + ], + [ + 34.1738734, + -1.7121943 + ], + [ + 34.1751743, + -1.7122722 + ], + [ + 34.1757809, + -1.712319 + ], + [ + 34.1767873, + -1.7124126 + ], + [ + 34.1780804, + -1.712551 + ], + [ + 34.1802727, + -1.7128084 + ], + [ + 34.1803975, + -1.7128259 + ], + [ + 34.1804873, + -1.7128396 + ], + [ + 34.1806179, + -1.7128669 + ], + [ + 34.1811445, + -1.7130033 + ], + [ + 34.1813713, + -1.7130583 + ], + [ + 34.1815151, + -1.7130911 + ], + [ + 34.1817102, + -1.7131261 + ], + [ + 34.1819735, + -1.7131866 + ], + [ + 34.1822758, + -1.7132509 + ], + [ + 34.1835416, + -1.7134361 + ], + [ + 34.1851059, + -1.7136525 + ], + [ + 34.1857098, + -1.7137155 + ], + [ + 34.1865186, + -1.7137923 + ], + [ + 34.1867843, + -1.7139016 + ], + [ + 34.1880408, + -1.7145325 + ], + [ + 34.1892938, + -1.7151426 + ], + [ + 34.189891, + -1.7153869 + ], + [ + 34.1904881, + -1.7155899 + ], + [ + 34.191238, + -1.7159064 + ] + ] + }, + "id": "way/424710066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/425100334", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5849354, + -1.7409832 + ], + [ + 34.5851223, + -1.7409019 + ], + [ + 34.5872784, + -1.7399639 + ], + [ + 34.5881601, + -1.7395803 + ], + [ + 34.5883802, + -1.7394846 + ], + [ + 34.5897888, + -1.7388718 + ], + [ + 34.5902165, + -1.7386894 + ], + [ + 34.5907466, + -1.7384634 + ], + [ + 34.5920105, + -1.7379246 + ], + [ + 34.5927097, + -1.7376265 + ], + [ + 34.593534, + -1.7372751 + ], + [ + 34.5937554, + -1.7371807 + ], + [ + 34.5945001, + -1.7368632 + ], + [ + 34.5966539, + -1.7359398 + ], + [ + 34.5975743, + -1.7355451 + ] + ] + }, + "id": "way/425100334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427131417", + "highway": "secondary", + "ref": "R185", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.208092, + -1.7259667 + ], + [ + 34.2085131, + -1.7258219 + ], + [ + 34.2088805, + -1.7256584 + ], + [ + 34.2089847, + -1.7256311 + ], + [ + 34.2090951, + -1.7256021 + ], + [ + 34.2094063, + -1.7255833 + ], + [ + 34.2096798, + -1.7255806 + ], + [ + 34.2098971, + -1.7256155 + ], + [ + 34.2100178, + -1.7257388 + ], + [ + 34.2100562, + -1.72586 + ], + [ + 34.2100714, + -1.7259077 + ], + [ + 34.2100956, + -1.7260579 + ], + [ + 34.2101948, + -1.7264922 + ], + [ + 34.2103504, + -1.7269667 + ], + [ + 34.210573, + -1.7275646 + ], + [ + 34.2107581, + -1.7278943 + ], + [ + 34.2110692, + -1.7283019 + ], + [ + 34.2113696, + -1.7285914 + ], + [ + 34.2116298, + -1.7288863 + ], + [ + 34.212008, + -1.7292188 + ], + [ + 34.2125391, + -1.7296075 + ], + [ + 34.2130997, + -1.7298595 + ], + [ + 34.2138936, + -1.7301785 + ], + [ + 34.2149826, + -1.7305968 + ], + [ + 34.2154841, + -1.7308381 + ], + [ + 34.2158409, + -1.7309641 + ], + [ + 34.2159884, + -1.7310043 + ], + [ + 34.2162486, + -1.7310284 + ], + [ + 34.2168413, + -1.7309989 + ], + [ + 34.2175682, + -1.7309373 + ], + [ + 34.2181985, + -1.7308863 + ], + [ + 34.2187725, + -1.7308836 + ], + [ + 34.2193841, + -1.7308997 + ], + [ + 34.2197515, + -1.7309587 + ], + [ + 34.2208432, + -1.7312 + ], + [ + 34.2212509, + -1.7313153 + ], + [ + 34.2216731, + -1.7314804 + ], + [ + 34.222757, + -1.7318214 + ], + [ + 34.2235174, + -1.7320606 + ], + [ + 34.2239178, + -1.732176 + ], + [ + 34.2243918, + -1.7323126 + ], + [ + 34.2247968, + -1.7324627 + ], + [ + 34.2252769, + -1.7326906 + ], + [ + 34.2263256, + -1.7333609 + ], + [ + 34.226508, + -1.733503 + ], + [ + 34.2270713, + -1.7339882 + ], + [ + 34.2273663, + -1.7342563 + ], + [ + 34.2275731, + -1.7345054 + ], + [ + 34.2276201, + -1.7345734 + ], + [ + 34.2279457, + -1.7350445 + ], + [ + 34.2283185, + -1.7355405 + ], + [ + 34.2284258, + -1.7357496 + ], + [ + 34.2286511, + -1.7363797 + ], + [ + 34.2287799, + -1.7366799 + ], + [ + 34.2293056, + -1.7376665 + ], + [ + 34.2294906, + -1.7379239 + ], + [ + 34.2297562, + -1.7382161 + ], + [ + 34.230306, + -1.7387282 + ], + [ + 34.2310061, + -1.7394172 + ], + [ + 34.2315533, + -1.7399614 + ], + [ + 34.2319689, + -1.7403983 + ], + [ + 34.2320803, + -1.7405153 + ], + [ + 34.2322345, + -1.7406773 + ], + [ + 34.2328246, + -1.7413368 + ], + [ + 34.233184, + -1.7417577 + ], + [ + 34.2334684, + -1.7421035 + ], + [ + 34.2344788, + -1.7432821 + ], + [ + 34.2353395, + -1.7442974 + ], + [ + 34.2357736, + -1.7448095 + ], + [ + 34.2368425, + -1.7460359 + ], + [ + 34.2378007, + -1.7471888 + ], + [ + 34.2380243, + -1.7474579 + ], + [ + 34.2381042, + -1.7475509 + ], + [ + 34.2388794, + -1.7484529 + ], + [ + 34.239033, + -1.7486316 + ], + [ + 34.2394462, + -1.7491008 + ], + [ + 34.2398083, + -1.749512 + ], + [ + 34.2400567, + -1.7498505 + ], + [ + 34.2408471, + -1.7507534 + ], + [ + 34.2417956, + -1.7518519 + ], + [ + 34.2422096, + -1.752341 + ], + [ + 34.2426462, + -1.7528074 + ], + [ + 34.2428343, + -1.7530031 + ], + [ + 34.2431279, + -1.7532589 + ], + [ + 34.2434817, + -1.7534846 + ], + [ + 34.2440237, + -1.753778 + ], + [ + 34.2443549, + -1.7539135 + ], + [ + 34.2447689, + -1.7540113 + ], + [ + 34.244966, + -1.7540195 + ], + [ + 34.2454915, + -1.7540414 + ], + [ + 34.2466432, + -1.7540564 + ], + [ + 34.2486454, + -1.7540985 + ], + [ + 34.2487886, + -1.7541016 + ], + [ + 34.25192, + -1.754137 + ], + [ + 34.2521082, + -1.7541392 + ], + [ + 34.2534058, + -1.7541509 + ], + [ + 34.2543816, + -1.7541597 + ], + [ + 34.2546601, + -1.7541622 + ], + [ + 34.2555034, + -1.7541841 + ], + [ + 34.255803, + -1.7542019 + ], + [ + 34.2580656, + -1.7542248 + ], + [ + 34.2592293, + -1.7542001 + ], + [ + 34.2606187, + -1.7542336 + ], + [ + 34.2613334, + -1.7542383 + ], + [ + 34.2621103, + -1.7542435 + ], + [ + 34.2637277, + -1.7542542 + ], + [ + 34.2638424, + -1.7542563 + ], + [ + 34.2650904, + -1.7542796 + ], + [ + 34.265455, + -1.7542864 + ], + [ + 34.266077, + -1.7542702 + ], + [ + 34.2673025, + -1.7542924 + ], + [ + 34.2685742, + -1.7542965 + ], + [ + 34.2689029, + -1.7542976 + ], + [ + 34.2690781, + -1.7542975 + ], + [ + 34.2693569, + -1.7542973 + ], + [ + 34.2698509, + -1.7542995 + ], + [ + 34.2710062, + -1.7543046 + ], + [ + 34.2726376, + -1.7543119 + ], + [ + 34.2730119, + -1.7543147 + ], + [ + 34.2750663, + -1.75433 + ], + [ + 34.2764064, + -1.75434 + ], + [ + 34.2771468, + -1.7543456 + ], + [ + 34.2777717, + -1.7543502 + ], + [ + 34.2780224, + -1.7543521 + ], + [ + 34.2782946, + -1.7543537 + ], + [ + 34.2786862, + -1.7543561 + ], + [ + 34.2791423, + -1.7543588 + ], + [ + 34.2793086, + -1.7543598 + ], + [ + 34.2795876, + -1.7543615 + ], + [ + 34.2808266, + -1.7543689 + ], + [ + 34.2816367, + -1.7543738 + ], + [ + 34.2830377, + -1.7543822 + ], + [ + 34.2841856, + -1.754389 + ], + [ + 34.2865159, + -1.7544029 + ], + [ + 34.2865957, + -1.7544034 + ], + [ + 34.2868763, + -1.7544051 + ], + [ + 34.2877667, + -1.7544104 + ], + [ + 34.2884059, + -1.7544142 + ], + [ + 34.2887646, + -1.7544164 + ], + [ + 34.2915273, + -1.7544329 + ], + [ + 34.2927295, + -1.7544401 + ], + [ + 34.2935045, + -1.7544447 + ], + [ + 34.2945516, + -1.7544626 + ], + [ + 34.2954483, + -1.7544779 + ], + [ + 34.2986793, + -1.754533 + ], + [ + 34.2987322, + -1.7545339 + ], + [ + 34.2987843, + -1.7545348 + ], + [ + 34.3003393, + -1.7545614 + ], + [ + 34.3030078, + -1.754607 + ], + [ + 34.304599, + -1.7546342 + ], + [ + 34.306736, + -1.7546707 + ], + [ + 34.3077198, + -1.7546875 + ], + [ + 34.3087114, + -1.7546999 + ], + [ + 34.3102437, + -1.7547191 + ], + [ + 34.3104021, + -1.7547226 + ], + [ + 34.3123584, + -1.7547667 + ], + [ + 34.3123815, + -1.7547671 + ], + [ + 34.3138611, + -1.7547923 + ], + [ + 34.3143264, + -1.7548003 + ], + [ + 34.3164852, + -1.7548372 + ], + [ + 34.3172713, + -1.7548506 + ], + [ + 34.3188878, + -1.7548782 + ], + [ + 34.3207672, + -1.7549103 + ], + [ + 34.3213946, + -1.754921 + ], + [ + 34.3220912, + -1.754921 + ], + [ + 34.3228538, + -1.754921 + ], + [ + 34.323482, + -1.7549208 + ], + [ + 34.3249954, + -1.7549519 + ], + [ + 34.3260642, + -1.7549201 + ], + [ + 34.3277024, + -1.7549438 + ], + [ + 34.3282979, + -1.7549195 + ], + [ + 34.3285098, + -1.7548694 + ], + [ + 34.3287942, + -1.7548022 + ], + [ + 34.3295518, + -1.7546232 + ], + [ + 34.3311786, + -1.7541691 + ], + [ + 34.3364779, + -1.75269 + ], + [ + 34.3395161, + -1.751842 + ], + [ + 34.3412956, + -1.7513453 + ], + [ + 34.3432386, + -1.750803 + ], + [ + 34.3441429, + -1.7505459 + ], + [ + 34.3463899, + -1.749907 + ], + [ + 34.3470015, + -1.7497331 + ], + [ + 34.3506798, + -1.7486872 + ], + [ + 34.3526346, + -1.7481434 + ], + [ + 34.35352, + -1.7478971 + ], + [ + 34.354605, + -1.747597 + ], + [ + 34.3567126, + -1.7470094 + ], + [ + 34.3580201, + -1.7466515 + ], + [ + 34.3583225, + -1.7465687 + ], + [ + 34.3595679, + -1.7462242 + ], + [ + 34.3652345, + -1.7446568 + ], + [ + 34.3664828, + -1.7443049 + ], + [ + 34.3674525, + -1.7440458 + ], + [ + 34.3677401, + -1.7439689 + ], + [ + 34.3686976, + -1.743713 + ], + [ + 34.3688345, + -1.7436731 + ], + [ + 34.3692028, + -1.7435657 + ], + [ + 34.3709854, + -1.7430459 + ], + [ + 34.3710565, + -1.7430252 + ], + [ + 34.371646, + -1.7428683 + ], + [ + 34.3734602, + -1.7423854 + ], + [ + 34.3749256, + -1.7419912 + ], + [ + 34.3759202, + -1.7417237 + ], + [ + 34.3808811, + -1.7403528 + ], + [ + 34.3839953, + -1.7395204 + ], + [ + 34.3871967, + -1.7386676 + ], + [ + 34.3929981, + -1.7371333 + ], + [ + 34.393943, + -1.7368834 + ], + [ + 34.3942798, + -1.736793 + ], + [ + 34.4019244, + -1.7347403 + ], + [ + 34.4020969, + -1.734694 + ], + [ + 34.4028, + -1.7345052 + ], + [ + 34.4033293, + -1.7343609 + ], + [ + 34.4044271, + -1.7340616 + ], + [ + 34.4059507, + -1.7336462 + ], + [ + 34.4065087, + -1.7334941 + ], + [ + 34.4068032, + -1.7334138 + ], + [ + 34.4080247, + -1.7330807 + ], + [ + 34.4090321, + -1.7328061 + ] + ] + }, + "id": "way/427131417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427222030", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved", + "usability": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4257189, + -1.9115015 + ], + [ + 35.424487, + -1.9108505 + ], + [ + 35.4241378, + -1.9105184 + ], + [ + 35.4228416, + -1.9089802 + ], + [ + 35.4217662, + -1.9078515 + ], + [ + 35.4216021, + -1.9075653 + ], + [ + 35.421051, + -1.9063597 + ], + [ + 35.4205368, + -1.9058162 + ], + [ + 35.4203487, + -1.9055546 + ] + ] + }, + "id": "way/427222030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427251814", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4902742, + -3.2379812 + ], + [ + 35.4901172, + -3.237939 + ], + [ + 35.489896, + -3.2378279 + ], + [ + 35.489723, + -3.2376793 + ], + [ + 35.4895309, + -3.237446 + ], + [ + 35.4893609, + -3.2371584 + ], + [ + 35.4892469, + -3.2370245 + ], + [ + 35.489047, + -3.2369066 + ], + [ + 35.4886273, + -3.2367996 + ], + [ + 35.4880574, + -3.2365251 + ], + [ + 35.4879661, + -3.2364688 + ], + [ + 35.4879353, + -3.2364099 + ], + [ + 35.4879393, + -3.2363403 + ], + [ + 35.4879621, + -3.2362773 + ], + [ + 35.4880262, + -3.2362114 + ], + [ + 35.4883751, + -3.2360591 + ], + [ + 35.4885442, + -3.2359586 + ], + [ + 35.4887172, + -3.2357953 + ], + [ + 35.4888298, + -3.2356614 + ], + [ + 35.4888955, + -3.235553 + ], + [ + 35.4889277, + -3.2354459 + ], + [ + 35.488929, + -3.235324 + ], + [ + 35.488874, + -3.2351593 + ], + [ + 35.4887547, + -3.2349518 + ], + [ + 35.488453, + -3.2344376 + ], + [ + 35.4872251, + -3.2326252 + ], + [ + 35.4861772, + -3.2309643 + ], + [ + 35.4860858, + -3.2308269 + ], + [ + 35.4856004, + -3.2300966 + ], + [ + 35.4853054, + -3.2297137 + ], + [ + 35.4850747, + -3.2294834 + ], + [ + 35.4848209, + -3.2292729 + ], + [ + 35.4845704, + -3.2290924 + ], + [ + 35.4843398, + -3.2289505 + ], + [ + 35.4841128, + -3.2288632 + ], + [ + 35.483849, + -3.2288273 + ], + [ + 35.4827412, + -3.2288327 + ], + [ + 35.4823871, + -3.2288086 + ], + [ + 35.4821323, + -3.2287551 + ], + [ + 35.4811668, + -3.2283747 + ], + [ + 35.4799195, + -3.2278766 + ], + [ + 35.479485, + -3.2276677 + ], + [ + 35.4790746, + -3.2274321 + ], + [ + 35.4782485, + -3.226859 + ], + [ + 35.4771434, + -3.2262136 + ], + [ + 35.4766616, + -3.2259342 + ], + [ + 35.4762852, + -3.2257531 + ], + [ + 35.475982, + -3.2256432 + ], + [ + 35.4757416, + -3.2256155 + ], + [ + 35.4754403, + -3.2256165 + ], + [ + 35.4752257, + -3.2256405 + ], + [ + 35.4749279, + -3.2256861 + ], + [ + 35.4747331, + -3.2256811 + ], + [ + 35.474539, + -3.2256405 + ], + [ + 35.4743496, + -3.2255472 + ], + [ + 35.4741823, + -3.2254183 + ], + [ + 35.4737048, + -3.2249041 + ], + [ + 35.4733991, + -3.224548 + ], + [ + 35.4731023, + -3.2243046 + ], + [ + 35.4728475, + -3.2241439 + ], + [ + 35.4726159, + -3.2240579 + ], + [ + 35.4723798, + -3.2240231 + ], + [ + 35.4721367, + -3.2240261 + ], + [ + 35.4719051, + -3.2240927 + ], + [ + 35.4714813, + -3.2242561 + ], + [ + 35.4711889, + -3.2243471 + ], + [ + 35.470961, + -3.2243765 + ], + [ + 35.4706964, + -3.2243555 + ], + [ + 35.4704325, + -3.2242828 + ], + [ + 35.4702179, + -3.224165 + ], + [ + 35.4700245, + -3.2240047 + ], + [ + 35.469876, + -3.2238383 + ], + [ + 35.4697271, + -3.2236268 + ], + [ + 35.4695917, + -3.2233282 + ], + [ + 35.4694334, + -3.2229023 + ], + [ + 35.4692561, + -3.2223095 + ], + [ + 35.4691129, + -3.2216879 + ], + [ + 35.4690311, + -3.2212473 + ], + [ + 35.4690191, + -3.221013 + ], + [ + 35.4690187, + -3.2206626 + ], + [ + 35.4690566, + -3.2202953 + ], + [ + 35.469129, + -3.2199391 + ], + [ + 35.4692631, + -3.2194303 + ], + [ + 35.4693248, + -3.219042 + ], + [ + 35.4693352, + -3.21878 + ], + [ + 35.469306, + -3.2185225 + ], + [ + 35.469193, + -3.218156 + ], + [ + 35.4690029, + -3.2175879 + ], + [ + 35.4689037, + -3.2172398 + ], + [ + 35.4687937, + -3.2168006 + ], + [ + 35.4687213, + -3.2163641 + ], + [ + 35.4686888, + -3.2160029 + ], + [ + 35.4686945, + -3.2157508 + ], + [ + 35.4687424, + -3.2155369 + ], + [ + 35.468909, + -3.2150705 + ], + [ + 35.469078, + -3.2145698 + ], + [ + 35.4691611, + -3.2143851 + ], + [ + 35.4693167, + -3.2141494 + ], + [ + 35.4695712, + -3.2138069 + ], + [ + 35.4697405, + -3.2135924 + ], + [ + 35.4699963, + -3.2133517 + ], + [ + 35.4703065, + -3.2130943 + ], + [ + 35.4705998, + -3.2128007 + ], + [ + 35.4709475, + -3.2123792 + ], + [ + 35.4711594, + -3.2120284 + ], + [ + 35.4713901, + -3.2116026 + ], + [ + 35.471541, + -3.2110613 + ], + [ + 35.4716181, + -3.2108367 + ], + [ + 35.4717629, + -3.2106814 + ], + [ + 35.4719426, + -3.2105742 + ], + [ + 35.4721036, + -3.2105394 + ], + [ + 35.4725998, + -3.2105475 + ], + [ + 35.472817, + -3.2104939 + ], + [ + 35.4730236, + -3.2103841 + ], + [ + 35.473206, + -3.2102261 + ], + [ + 35.4734527, + -3.2099315 + ], + [ + 35.4737236, + -3.2094468 + ], + [ + 35.4738148, + -3.2089835 + ], + [ + 35.4737665, + -3.2086327 + ], + [ + 35.4736029, + -3.208322 + ], + [ + 35.4729055, + -3.2075401 + ], + [ + 35.4726802, + -3.2072187 + ], + [ + 35.4725864, + -3.2069857 + ], + [ + 35.4725649, + -3.2067822 + ], + [ + 35.4725891, + -3.2066001 + ], + [ + 35.47264, + -3.2064581 + ], + [ + 35.4726987, + -3.2063889 + ], + [ + 35.4727849, + -3.206343 + ], + [ + 35.4729025, + -3.2062952 + ], + [ + 35.4734259, + -3.2062225 + ], + [ + 35.4735707, + -3.2061663 + ], + [ + 35.4737209, + -3.2060484 + ], + [ + 35.4738497, + -3.2058636 + ], + [ + 35.4739325, + -3.2056631 + ], + [ + 35.4740773, + -3.2052052 + ], + [ + 35.4742704, + -3.2045384 + ], + [ + 35.4747026, + -3.2029151 + ], + [ + 35.4751985, + -3.2015229 + ], + [ + 35.4756796, + -3.1999179 + ], + [ + 35.4757755, + -3.1996185 + ], + [ + 35.4761886, + -3.1988392 + ], + [ + 35.4770683, + -3.1972431 + ], + [ + 35.477181, + -3.196903 + ], + [ + 35.4772292, + -3.1966191 + ], + [ + 35.4772185, + -3.1963245 + ], + [ + 35.4771665, + -3.1959551 + ], + [ + 35.4770952, + -3.1956148 + ], + [ + 35.4769638, + -3.1953068 + ], + [ + 35.4768242, + -3.1951194 + ], + [ + 35.4763683, + -3.1946508 + ], + [ + 35.4762502, + -3.1944928 + ], + [ + 35.4761751, + -3.1942945 + ], + [ + 35.4761296, + -3.1940643 + ], + [ + 35.4760625, + -3.1938018 + ], + [ + 35.4759793, + -3.1935688 + ], + [ + 35.4757996, + -3.1933921 + ], + [ + 35.4755395, + -3.1932555 + ], + [ + 35.4754134, + -3.1931028 + ], + [ + 35.475341, + -3.1929422 + ], + [ + 35.4753061, + -3.1928056 + ], + [ + 35.4753004, + -3.1926412 + ], + [ + 35.4753997, + -3.1920655 + ], + [ + 35.4754161, + -3.1918923 + ], + [ + 35.4754054, + -3.1916861 + ], + [ + 35.4753464, + -3.1914987 + ], + [ + 35.4751693, + -3.1912148 + ], + [ + 35.4750724, + -3.1910157 + ], + [ + 35.4750138, + -3.1907971 + ], + [ + 35.4749279, + -3.1901275 + ], + [ + 35.4747965, + -3.1896508 + ], + [ + 35.4744987, + -3.1887858 + ], + [ + 35.4743969, + -3.1884805 + ], + [ + 35.4743429, + -3.1881662 + ], + [ + 35.4741872, + -3.1870293 + ], + [ + 35.4741743, + -3.1868957 + ], + [ + 35.4741632, + -3.1866733 + ], + [ + 35.47425, + -3.1865744 + ], + [ + 35.4743593, + -3.1864292 + ], + [ + 35.4745229, + -3.1862443 + ], + [ + 35.4746114, + -3.186081 + ], + [ + 35.4746784, + -3.1859122 + ], + [ + 35.474716, + -3.1856471 + ], + [ + 35.4746704, + -3.1849723 + ], + [ + 35.4746972, + -3.1847982 + ], + [ + 35.4747482, + -3.1846402 + ], + [ + 35.4748314, + -3.1845009 + ], + [ + 35.4749762, + -3.1843804 + ], + [ + 35.4751076, + -3.1843027 + ], + [ + 35.4756441, + -3.1841394 + ], + [ + 35.4758238, + -3.1840738 + ], + [ + 35.475919, + -3.1839854 + ], + [ + 35.4759659, + -3.1838729 + ], + [ + 35.4759646, + -3.1837671 + ], + [ + 35.475927, + -3.1836747 + ], + [ + 35.475868, + -3.1836024 + ], + [ + 35.4756789, + -3.1834404 + ], + [ + 35.4753289, + -3.1831739 + ], + [ + 35.4751398, + -3.1829824 + ], + [ + 35.4748488, + -3.1825392 + ], + [ + 35.4745538, + -3.1818644 + ], + [ + 35.4744505, + -3.181697 + ], + [ + 35.4742802, + -3.1814854 + ], + [ + 35.4737142, + -3.1808051 + ], + [ + 35.4735721, + -3.1805682 + ], + [ + 35.4734862, + -3.1803606 + ], + [ + 35.4734849, + -3.1801692 + ], + [ + 35.4734957, + -3.1798932 + ], + [ + 35.4735775, + -3.1795786 + ], + [ + 35.4736109, + -3.179217 + ], + [ + 35.473603, + -3.1788783 + ], + [ + 35.4735426, + -3.1781632 + ], + [ + 35.4735453, + -3.1778164 + ], + [ + 35.4735493, + -3.1776062 + ], + [ + 35.4736123, + -3.1773799 + ], + [ + 35.4737266, + -3.17714 + ], + [ + 35.4738738, + -3.1769487 + ], + [ + 35.4741166, + -3.176701 + ], + [ + 35.4744947, + -3.1763742 + ], + [ + 35.4746932, + -3.1761319 + ], + [ + 35.4748582, + -3.1758374 + ], + [ + 35.4750285, + -3.175504 + ], + [ + 35.4751908, + -3.1750527 + ], + [ + 35.4753101, + -3.1746536 + ], + [ + 35.4753611, + -3.1743014 + ], + [ + 35.4753517, + -3.1738877 + ], + [ + 35.4752967, + -3.1733507 + ], + [ + 35.4753115, + -3.1731579 + ], + [ + 35.4753812, + -3.1729691 + ], + [ + 35.4754939, + -3.1727897 + ], + [ + 35.4762583, + -3.1720344 + ], + [ + 35.4767641, + -3.1713352 + ], + [ + 35.4770066, + -3.1709835 + ], + [ + 35.4771383, + -3.1706966 + ], + [ + 35.47724, + -3.1703847 + ], + [ + 35.477307, + -3.1700606 + ], + [ + 35.4773258, + -3.169742 + ], + [ + 35.4773151, + -3.16945 + ], + [ + 35.4772829, + -3.1691367 + ], + [ + 35.4771998, + -3.1687055 + ], + [ + 35.476599, + -3.166689 + ], + [ + 35.476371, + -3.16569 + ], + [ + 35.4762154, + -3.1647634 + ], + [ + 35.476159, + -3.1642786 + ], + [ + 35.4761457, + -3.1639331 + ], + [ + 35.4761618, + -3.1635528 + ], + [ + 35.4761644, + -3.1631939 + ], + [ + 35.4761027, + -3.1628592 + ], + [ + 35.4760142, + -3.1625352 + ], + [ + 35.4758882, + -3.1622325 + ], + [ + 35.4757353, + -3.1619299 + ], + [ + 35.4755153, + -3.1616273 + ], + [ + 35.47518, + -3.161239 + ], + [ + 35.474539, + -3.1607061 + ], + [ + 35.474209, + -3.1603391 + ], + [ + 35.4740804, + -3.1601168 + ], + [ + 35.4739731, + -3.1598008 + ], + [ + 35.4739006, + -3.159399 + ], + [ + 35.4738845, + -3.1589867 + ], + [ + 35.4737746, + -3.1577948 + ], + [ + 35.4737746, + -3.1574574 + ], + [ + 35.4738309, + -3.1571146 + ], + [ + 35.4739167, + -3.1568067 + ], + [ + 35.4740508, + -3.1564639 + ], + [ + 35.4742081, + -3.1561503 + ], + [ + 35.4743942, + -3.1558308 + ], + [ + 35.4746972, + -3.1554997 + ], + [ + 35.4749598, + -3.1552738 + ], + [ + 35.4752122, + -3.1551435 + ], + [ + 35.4758654, + -3.154944 + ] + ] + }, + "id": "way/427251814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427251815", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "source": "survey", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4902742, + -3.2379812 + ], + [ + 35.4906302, + -3.2381013 + ], + [ + 35.4909469, + -3.2382356 + ], + [ + 35.4911026, + -3.238468 + ], + [ + 35.4912925, + -3.2388916 + ], + [ + 35.4914145, + -3.2391097 + ], + [ + 35.4916719, + -3.2392599 + ], + [ + 35.4920636, + -3.2393692 + ], + [ + 35.4922985, + -3.239403 + ], + [ + 35.4925579, + -3.239443 + ], + [ + 35.4928332, + -3.239562 + ], + [ + 35.4930977, + -3.2396878 + ], + [ + 35.4946238, + -3.2395247 + ], + [ + 35.4949473, + -3.2395066 + ], + [ + 35.4953501, + -3.2395807 + ], + [ + 35.4956524, + -3.2398966 + ], + [ + 35.4957174, + -3.2400214 + ], + [ + 35.4956979, + -3.240202 + ], + [ + 35.4956158, + -3.2403915 + ], + [ + 35.4953259, + -3.2405486 + ], + [ + 35.4951774, + -3.2406674 + ], + [ + 35.4950696, + -3.2408289 + ], + [ + 35.4949924, + -3.2410226 + ], + [ + 35.4949968, + -3.241192 + ], + [ + 35.4949946, + -3.2413479 + ], + [ + 35.4949988, + -3.2415057 + ], + [ + 35.4949501, + -3.2416615 + ], + [ + 35.4949312, + -3.2417828 + ], + [ + 35.4948931, + -3.2418892 + ], + [ + 35.4948967, + -3.2419646 + ], + [ + 35.4949219, + -3.2420057 + ], + [ + 35.494947, + -3.2420615 + ], + [ + 35.4950005, + -3.2420759 + ], + [ + 35.4951392, + -3.2420317 + ], + [ + 35.4952625, + -3.2419762 + ], + [ + 35.4955159, + -3.2418887 + ], + [ + 35.4957652, + -3.2418582 + ], + [ + 35.4960073, + -3.2420376 + ], + [ + 35.4960798, + -3.2423142 + ], + [ + 35.4961498, + -3.2427832 + ], + [ + 35.496108, + -3.2434153 + ], + [ + 35.4961523, + -3.2437421 + ], + [ + 35.4962596, + -3.2439537 + ], + [ + 35.496501, + -3.2444063 + ], + [ + 35.4966981, + -3.2447718 + ], + [ + 35.4968295, + -3.2448708 + ], + [ + 35.4970937, + -3.2450262 + ], + [ + 35.498042, + -3.2451687 + ], + [ + 35.4983007, + -3.245227 + ], + [ + 35.498928, + -3.2452636 + ], + [ + 35.4990679, + -3.2452765 + ], + [ + 35.4992556, + -3.2452779 + ], + [ + 35.4996372, + -3.2453205 + ], + [ + 35.4996902, + -3.245535 + ], + [ + 35.4996539, + -3.2458295 + ], + [ + 35.4995158, + -3.2460357 + ], + [ + 35.4993925, + -3.2462359 + ], + [ + 35.4993267, + -3.246495 + ], + [ + 35.4992904, + -3.2469689 + ], + [ + 35.4992355, + -3.2471953 + ], + [ + 35.4991175, + -3.2473533 + ], + [ + 35.4989954, + -3.2474028 + ], + [ + 35.4988962, + -3.2474376 + ], + [ + 35.4988104, + -3.2474644 + ], + [ + 35.4987518, + -3.2475057 + ], + [ + 35.4987009, + -3.2475672 + ], + [ + 35.4986995, + -3.2476382 + ], + [ + 35.4987049, + -3.2476944 + ], + [ + 35.4987317, + -3.247736 + ], + [ + 35.4988122, + -3.2477935 + ], + [ + 35.498961, + -3.2478926 + ], + [ + 35.4991917, + -3.2480466 + ], + [ + 35.4993406, + -3.2481778 + ], + [ + 35.4995149, + -3.2483251 + ], + [ + 35.4996973, + -3.2484751 + ], + [ + 35.499865, + -3.2485902 + ], + [ + 35.5000527, + -3.2486518 + ], + [ + 35.5002659, + -3.2486705 + ], + [ + 35.5003982, + -3.2486628 + ], + [ + 35.5008958, + -3.2485717 + ], + [ + 35.5016803, + -3.2485169 + ], + [ + 35.5019479, + -3.2485749 + ], + [ + 35.5028773, + -3.2489739 + ], + [ + 35.5031938, + -3.2490649 + ], + [ + 35.5036846, + -3.2491426 + ], + [ + 35.5044665, + -3.2493515 + ], + [ + 35.5049841, + -3.2495282 + ], + [ + 35.5054911, + -3.2496755 + ], + [ + 35.5060034, + -3.2498201 + ], + [ + 35.5060574, + -3.2498592 + ], + [ + 35.5066607, + -3.2498019 + ], + [ + 35.5071126, + -3.2494615 + ], + [ + 35.5073267, + -3.2491255 + ], + [ + 35.5074836, + -3.2490117 + ], + [ + 35.5075775, + -3.2489688 + ], + [ + 35.5077129, + -3.2489661 + ], + [ + 35.5079033, + -3.2489969 + ], + [ + 35.5086557, + -3.2493102 + ], + [ + 35.508806, + -3.2493691 + ], + [ + 35.5089347, + -3.2493839 + ], + [ + 35.5090514, + -3.2493531 + ], + [ + 35.5091613, + -3.2492768 + ], + [ + 35.5092995, + -3.2491174 + ], + [ + 35.5093866, + -3.2490491 + ], + [ + 35.5094926, + -3.2490197 + ], + [ + 35.510203, + -3.2489305 + ], + [ + 35.5105504, + -3.2488274 + ], + [ + 35.51084, + -3.2487297 + ], + [ + 35.5111431, + -3.2486453 + ], + [ + 35.5114274, + -3.2486386 + ], + [ + 35.5116166, + -3.2486909 + ], + [ + 35.511972, + -3.2488033 + ], + [ + 35.5122804, + -3.2489707 + ], + [ + 35.5126707, + -3.2492439 + ], + [ + 35.5129268, + -3.2495143 + ], + [ + 35.5130931, + -3.2497674 + ], + [ + 35.5132461, + -3.2500633 + ], + [ + 35.5134807, + -3.2505132 + ], + [ + 35.5136644, + -3.2507368 + ], + [ + 35.5138522, + -3.2509216 + ], + [ + 35.5142559, + -3.2509526 + ], + [ + 35.5147628, + -3.2511186 + ], + [ + 35.5153046, + -3.2512686 + ], + [ + 35.5157107, + -3.2514067 + ], + [ + 35.5163279, + -3.2515272 + ], + [ + 35.5189793, + -3.2518347 + ], + [ + 35.5197638, + -3.2519579 + ], + [ + 35.5205618, + -3.2521253 + ], + [ + 35.5212551, + -3.2523596 + ], + [ + 35.5220611, + -3.2527332 + ], + [ + 35.5224339, + -3.2529594 + ], + [ + 35.5226539, + -3.2531616 + ], + [ + 35.5229556, + -3.2535231 + ], + [ + 35.5230388, + -3.2536262 + ], + [ + 35.5231487, + -3.2536932 + ], + [ + 35.5232735, + -3.2537441 + ], + [ + 35.5234223, + -3.2537454 + ], + [ + 35.5237147, + -3.2537441 + ], + [ + 35.5239011, + -3.2537267 + ], + [ + 35.5240835, + -3.2536584 + ], + [ + 35.5244966, + -3.2536865 + ], + [ + 35.5250947, + -3.2538016 + ], + [ + 35.5253427, + -3.2538445 + ], + [ + 35.5256271, + -3.2538873 + ], + [ + 35.5258109, + -3.2538217 + ], + [ + 35.5261769, + -3.2538029 + ], + [ + 35.5267952, + -3.2540775 + ], + [ + 35.5272344, + -3.2544048 + ], + [ + 35.5276656, + -3.2547857 + ], + [ + 35.5278385, + -3.2549237 + ], + [ + 35.5280545, + -3.2550402 + ], + [ + 35.5283536, + -3.2551406 + ], + [ + 35.5287157, + -3.255237 + ], + [ + 35.5290402, + -3.255332 + ], + [ + 35.5292588, + -3.2554713 + ], + [ + 35.5293714, + -3.2556359 + ], + [ + 35.5294204, + -3.2557438 + ], + [ + 35.5294398, + -3.255873 + ], + [ + 35.5294559, + -3.2561849 + ], + [ + 35.5294104, + -3.2567353 + ], + [ + 35.5294265, + -3.256991 + ], + [ + 35.5294815, + -3.2572025 + ], + [ + 35.5296223, + -3.2573417 + ], + [ + 35.5297845, + -3.2574195 + ], + [ + 35.5300044, + -3.2574958 + ], + [ + 35.5302687, + -3.2574797 + ], + [ + 35.5306348, + -3.2573084 + ], + [ + 35.531025, + -3.2570204 + ], + [ + 35.5312678, + -3.2568651 + ], + [ + 35.531489, + -3.2567205 + ], + [ + 35.5318016, + -3.2566014 + ], + [ + 35.5320872, + -3.2566054 + ], + [ + 35.5324024, + -3.2566817 + ], + [ + 35.5327215, + -3.2568571 + ], + [ + 35.5328449, + -3.2570017 + ], + [ + 35.5330863, + -3.2573177 + ], + [ + 35.5333519, + -3.2575908 + ], + [ + 35.5336965, + -3.2579028 + ], + [ + 35.5339567, + -3.2581103 + ], + [ + 35.534194, + -3.2582897 + ], + [ + 35.5344958, + -3.2584143 + ], + [ + 35.5347479, + -3.2584531 + ], + [ + 35.5350108, + -3.2583969 + ], + [ + 35.5358584, + -3.2581131 + ], + [ + 35.5362473, + -3.2579537 + ], + [ + 35.5367086, + -3.2578319 + ], + [ + 35.5369017, + -3.2577703 + ], + [ + 35.5370788, + -3.2576498 + ], + [ + 35.5372397, + -3.257532 + ], + [ + 35.5374207, + -3.2574918 + ], + [ + 35.537583, + -3.2575266 + ], + [ + 35.5377654, + -3.257631 + ], + [ + 35.5379304, + -3.2577221 + ], + [ + 35.5381409, + -3.2577716 + ], + [ + 35.5383917, + -3.2578037 + ], + [ + 35.5387672, + -3.2577381 + ], + [ + 35.5391521, + -3.2577181 + ], + [ + 35.5394727, + -3.2577864 + ], + [ + 35.5398924, + -3.2579939 + ], + [ + 35.5402035, + -3.2582 + ], + [ + 35.5405254, + -3.2584371 + ], + [ + 35.5408969, + -3.2588936 + ], + [ + 35.5413891, + -3.2593221 + ], + [ + 35.5422032, + -3.2597907 + ], + [ + 35.5424205, + -3.2599019 + ], + [ + 35.5425438, + -3.2599514 + ], + [ + 35.5426699, + -3.2599488 + ], + [ + 35.5427893, + -3.2599059 + ], + [ + 35.5429784, + -3.2598122 + ], + [ + 35.5430763, + -3.2597747 + ], + [ + 35.5431943, + -3.2597827 + ], + [ + 35.5433217, + -3.2598751 + ], + [ + 35.5433834, + -3.2599996 + ], + [ + 35.5434021, + -3.2602165 + ], + [ + 35.5433767, + -3.2603531 + ], + [ + 35.5433405, + -3.2605647 + ], + [ + 35.5433633, + -3.2607575 + ], + [ + 35.5433766, + -3.2608565 + ], + [ + 35.5434289, + -3.2609462 + ], + [ + 35.5435322, + -3.2610226 + ], + [ + 35.5436931, + -3.2610667 + ], + [ + 35.5438675, + -3.2610721 + ], + [ + 35.5440191, + -3.261032 + ], + [ + 35.5442108, + -3.2608793 + ], + [ + 35.5443436, + -3.2607909 + ], + [ + 35.5444884, + -3.2607414 + ], + [ + 35.5446413, + -3.2607534 + ], + [ + 35.5447982, + -3.2607923 + ], + [ + 35.5450544, + -3.2609181 + ], + [ + 35.5453347, + -3.2610346 + ], + [ + 35.5455036, + -3.2610855 + ], + [ + 35.5457102, + -3.2610681 + ], + [ + 35.5458912, + -3.2610533 + ], + [ + 35.5461138, + -3.2611096 + ], + [ + 35.5462976, + -3.2612194 + ], + [ + 35.5466758, + -3.261522 + ], + [ + 35.547132, + -3.2619995 + ], + [ + 35.5474726, + -3.2622338 + ], + [ + 35.5478079, + -3.2623771 + ], + [ + 35.5480399, + -3.2625525 + ], + [ + 35.5482974, + -3.2628297 + ], + [ + 35.5485053, + -3.2630144 + ], + [ + 35.5489344, + -3.2632916 + ], + [ + 35.5492925, + -3.2635821 + ], + [ + 35.5494254, + -3.2636317 + ], + [ + 35.5495491, + -3.2636466 + ], + [ + 35.5496367, + -3.2636533 + ], + [ + 35.5498239, + -3.2636659 + ], + [ + 35.5499242, + -3.263699 + ], + [ + 35.5500482, + -3.2637737 + ], + [ + 35.5501116, + -3.2639334 + ], + [ + 35.550156, + -3.2641345 + ], + [ + 35.550237, + -3.2643364 + ], + [ + 35.5503377, + -3.2645212 + ], + [ + 35.5505649, + -3.264807 + ], + [ + 35.5510356, + -3.2653439 + ], + [ + 35.5511804, + -3.2655313 + ], + [ + 35.551391, + -3.2657348 + ], + [ + 35.5519087, + -3.266095 + ], + [ + 35.5522358, + -3.2663709 + ], + [ + 35.5524035, + -3.2665516 + ], + [ + 35.5524974, + -3.2666721 + ], + [ + 35.5525604, + -3.2667404 + ], + [ + 35.5526271, + -3.2668171 + ], + [ + 35.5526707, + -3.2668823 + ], + [ + 35.5527375, + -3.2669018 + ], + [ + 35.5529419, + -3.2668529 + ], + [ + 35.5530927, + -3.266728 + ], + [ + 35.5531705, + -3.2665843 + ], + [ + 35.553279, + -3.2664431 + ], + [ + 35.5533617, + -3.2663356 + ], + [ + 35.5535046, + -3.2662425 + ], + [ + 35.5538369, + -3.2662087 + ], + [ + 35.5542838, + -3.2662306 + ], + [ + 35.5547009, + -3.2661332 + ], + [ + 35.5549503, + -3.266089 + ], + [ + 35.5550859, + -3.2660499 + ], + [ + 35.5552322, + -3.266021 + ], + [ + 35.5554415, + -3.266035 + ], + [ + 35.5556385, + -3.2661045 + ], + [ + 35.5558562, + -3.2661973 + ], + [ + 35.5561138, + -3.2662901 + ], + [ + 35.5563067, + -3.2663266 + ], + [ + 35.5564779, + -3.2663582 + ], + [ + 35.5566509, + -3.266322 + ], + [ + 35.5569017, + -3.2662491 + ], + [ + 35.5571427, + -3.2662152 + ], + [ + 35.5576281, + -3.266285 + ], + [ + 35.5580366, + -3.2663667 + ], + [ + 35.5584504, + -3.2664974 + ], + [ + 35.5587554, + -3.2666929 + ], + [ + 35.5590227, + -3.2669044 + ], + [ + 35.5592842, + -3.2671977 + ], + [ + 35.5593862, + -3.2674065 + ], + [ + 35.5594653, + -3.2675431 + ], + [ + 35.559586, + -3.2676207 + ], + [ + 35.5597902, + -3.267731 + ], + [ + 35.560057, + -3.267823 + ], + [ + 35.5602592, + -3.2679081 + ], + [ + 35.5604845, + -3.2680213 + ], + [ + 35.5606767, + -3.2680686 + ], + [ + 35.5609409, + -3.2680705 + ], + [ + 35.5611665, + -3.268043 + ], + [ + 35.5613854, + -3.2679487 + ], + [ + 35.5615688, + -3.2677728 + ], + [ + 35.5616967, + -3.2675803 + ], + [ + 35.5618003, + -3.2674304 + ], + [ + 35.5618974, + -3.267343 + ], + [ + 35.5620948, + -3.2672921 + ], + [ + 35.562301, + -3.2672579 + ], + [ + 35.5626468, + -3.2670712 + ], + [ + 35.5629892, + -3.2669746 + ], + [ + 35.5633675, + -3.2669161 + ], + [ + 35.5636783, + -3.2668238 + ], + [ + 35.5639707, + -3.2667501 + ], + [ + 35.5644468, + -3.2666826 + ], + [ + 35.5656175, + -3.266555 + ], + [ + 35.5659488, + -3.2665335 + ], + [ + 35.5661566, + -3.2664813 + ], + [ + 35.5663752, + -3.2664534 + ], + [ + 35.5665677, + -3.2663756 + ], + [ + 35.5667774, + -3.2660588 + ], + [ + 35.5669813, + -3.2658815 + ], + [ + 35.56748, + -3.2655936 + ], + [ + 35.5677096, + -3.2654183 + ], + [ + 35.5679497, + -3.2653406 + ], + [ + 35.5682479, + -3.2652694 + ], + [ + 35.5684814, + -3.2652512 + ], + [ + 35.5689528, + -3.2652027 + ], + [ + 35.5692613, + -3.2651504 + ], + [ + 35.5695829, + -3.2650586 + ], + [ + 35.5701327, + -3.2651081 + ], + [ + 35.5707882, + -3.2651968 + ], + [ + 35.5713089, + -3.2652829 + ], + [ + 35.5716519, + -3.2653095 + ], + [ + 35.5719566, + -3.2652398 + ], + [ + 35.572289, + -3.2650005 + ], + [ + 35.572665, + -3.2647916 + ], + [ + 35.5730016, + -3.2646992 + ], + [ + 35.5733396, + -3.264635 + ], + [ + 35.5734864, + -3.2646211 + ], + [ + 35.5735778, + -3.2646227 + ], + [ + 35.5736668, + -3.2646323 + ], + [ + 35.5738626, + -3.2646872 + ], + [ + 35.5742337, + -3.2646626 + ], + [ + 35.5747196, + -3.2649084 + ], + [ + 35.5753485, + -3.2651839 + ], + [ + 35.575773, + -3.2653072 + ], + [ + 35.5762001, + -3.2655694 + ], + [ + 35.5766655, + -3.2659028 + ], + [ + 35.5768626, + -3.266129 + ], + [ + 35.5769833, + -3.2664142 + ], + [ + 35.5770477, + -3.2665669 + ], + [ + 35.5771147, + -3.2666579 + ], + [ + 35.5772207, + -3.2667182 + ], + [ + 35.5773508, + -3.2667195 + ], + [ + 35.5775385, + -3.2666914 + ], + [ + 35.577796, + -3.2666231 + ], + [ + 35.578079, + -3.266587 + ], + [ + 35.5783164, + -3.2665722 + ], + [ + 35.5784317, + -3.2665803 + ], + [ + 35.5785068, + -3.2666164 + ], + [ + 35.578586, + -3.2666673 + ], + [ + 35.5786651, + -3.2668012 + ], + [ + 35.5791712, + -3.2678784 + ], + [ + 35.5792235, + -3.2679935 + ], + [ + 35.5793094, + -3.2681114 + ], + [ + 35.5794421, + -3.2681971 + ], + [ + 35.5795588, + -3.2682078 + ], + [ + 35.5796634, + -3.2681609 + ], + [ + 35.5798525, + -3.267932 + ], + [ + 35.5799638, + -3.2677432 + ], + [ + 35.5800537, + -3.2673509 + ], + [ + 35.5801158, + -3.2671356 + ], + [ + 35.5802173, + -3.2669666 + ], + [ + 35.5802978, + -3.266885 + ], + [ + 35.5804104, + -3.2668274 + ], + [ + 35.580519, + -3.2668301 + ], + [ + 35.5806089, + -3.2668676 + ], + [ + 35.5807296, + -3.2670389 + ], + [ + 35.5808811, + -3.2673014 + ], + [ + 35.5810448, + -3.2674928 + ], + [ + 35.5815115, + -3.2678717 + ], + [ + 35.5816268, + -3.2680257 + ], + [ + 35.5817864, + -3.2682908 + ], + [ + 35.581946, + -3.2684127 + ], + [ + 35.5824891, + -3.2687354 + ], + [ + 35.5826782, + -3.2687969 + ], + [ + 35.5828204, + -3.268817 + ], + [ + 35.5829625, + -3.2687969 + ], + [ + 35.5830779, + -3.2688184 + ], + [ + 35.5833152, + -3.2689161 + ], + [ + 35.5835351, + -3.2690815 + ], + [ + 35.5837162, + -3.269186 + ], + [ + 35.5838355, + -3.2692516 + ], + [ + 35.5839308, + -3.2692569 + ], + [ + 35.5839992, + -3.2692342 + ], + [ + 35.5840528, + -3.2691846 + ], + [ + 35.5841105, + -3.2690829 + ], + [ + 35.5842124, + -3.2689517 + ], + [ + 35.5842687, + -3.2689222 + ], + [ + 35.584325, + -3.2689302 + ], + [ + 35.5843666, + -3.2689651 + ], + [ + 35.5844001, + -3.2690668 + ], + [ + 35.5844136, + -3.2692208 + ], + [ + 35.5844404, + -3.2695073 + ], + [ + 35.5844752, + -3.2697055 + ], + [ + 35.5845061, + -3.2697979 + ], + [ + 35.5845785, + -3.2699277 + ], + [ + 35.5847073, + -3.2700911 + ], + [ + 35.5847488, + -3.2701969 + ], + [ + 35.5847435, + -3.2703254 + ], + [ + 35.5847234, + -3.2705744 + ], + [ + 35.5847354, + -3.2706548 + ], + [ + 35.584781, + -3.270707 + ], + [ + 35.5848454, + -3.2707311 + ], + [ + 35.5849969, + -3.270707 + ], + [ + 35.5851176, + -3.2707137 + ], + [ + 35.5852678, + -3.270786 + ], + [ + 35.5854771, + -3.2709279 + ], + [ + 35.5855682, + -3.2710096 + ], + [ + 35.5856447, + -3.2711234 + ], + [ + 35.5857077, + -3.27126 + ], + [ + 35.5857748, + -3.2714662 + ], + [ + 35.5859495, + -3.2719675 + ], + [ + 35.5860876, + -3.2721469 + ], + [ + 35.5862646, + -3.2723263 + ], + [ + 35.5865556, + -3.2725553 + ], + [ + 35.5867152, + -3.2726423 + ], + [ + 35.5868279, + -3.2726369 + ], + [ + 35.5868949, + -3.2725861 + ], + [ + 35.5869459, + -3.2724562 + ], + [ + 35.5869821, + -3.2723705 + ], + [ + 35.5870505, + -3.2723156 + ], + [ + 35.5871377, + -3.2723116 + ], + [ + 35.5873724, + -3.2723665 + ], + [ + 35.5876205, + -3.2724174 + ], + [ + 35.5877787, + -3.2723799 + ], + [ + 35.5878418, + -3.2722527 + ], + [ + 35.5878552, + -3.2720813 + ], + [ + 35.5878283, + -3.2717506 + ], + [ + 35.5878739, + -3.2716194 + ], + [ + 35.5879249, + -3.271527 + ], + [ + 35.587992, + -3.2714252 + ], + [ + 35.5881153, + -3.2713797 + ], + [ + 35.5881663, + -3.2713837 + ], + [ + 35.5882602, + -3.2714293 + ], + [ + 35.5883326, + -3.2715444 + ], + [ + 35.5884222, + -3.2717415 + ], + [ + 35.5885134, + -3.2720015 + ], + [ + 35.5885623, + -3.272512 + ], + [ + 35.5886629, + -3.2730235 + ], + [ + 35.5887447, + -3.2731708 + ], + [ + 35.588848, + -3.2732377 + ], + [ + 35.5889633, + -3.2732792 + ], + [ + 35.5891028, + -3.2733676 + ], + [ + 35.5892842, + -3.2735595 + ], + [ + 35.5895659, + -3.2740284 + ], + [ + 35.5896732, + -3.274189 + ], + [ + 35.5897543, + -3.2744106 + ], + [ + 35.5899206, + -3.2750051 + ], + [ + 35.5900064, + -3.2752274 + ], + [ + 35.5901405, + -3.2754148 + ], + [ + 35.590221, + -3.2756183 + ], + [ + 35.590221, + -3.275771 + ], + [ + 35.5902183, + -3.2760012 + ], + [ + 35.5902612, + -3.2761994 + ], + [ + 35.5903229, + -3.2763655 + ], + [ + 35.5904597, + -3.2765743 + ], + [ + 35.5906982, + -3.2772315 + ], + [ + 35.5908833, + -3.277534 + ], + [ + 35.5915968, + -3.2784338 + ], + [ + 35.5916853, + -3.2786801 + ], + [ + 35.5916986, + -3.2789667 + ], + [ + 35.5916263, + -3.2792291 + ], + [ + 35.5910942, + -3.2800605 + ], + [ + 35.5910191, + -3.2803631 + ], + [ + 35.5910513, + -3.2806202 + ], + [ + 35.5911559, + -3.2808666 + ], + [ + 35.5913598, + -3.2813138 + ], + [ + 35.5914939, + -3.2816646 + ], + [ + 35.5915127, + -3.2819244 + ], + [ + 35.5913343, + -3.2826584 + ], + [ + 35.5912269, + -3.283129 + ], + [ + 35.5911935, + -3.2837541 + ], + [ + 35.5912012, + -3.2844329 + ], + [ + 35.5910736, + -3.2848544 + ], + [ + 35.5909126, + -3.2850992 + ], + [ + 35.5906094, + -3.2853953 + ], + [ + 35.5894594, + -3.2866242 + ], + [ + 35.5894322, + -3.2867325 + ], + [ + 35.5894781, + -3.2868516 + ], + [ + 35.5895427, + -3.2869837 + ], + [ + 35.5897812, + -3.287377 + ], + [ + 35.5899815, + -3.28782 + ], + [ + 35.5899491, + -3.2882045 + ], + [ + 35.5899029, + -3.2885413 + ], + [ + 35.5899327, + -3.2887939 + ], + [ + 35.5900102, + -3.289157 + ], + [ + 35.5902921, + -3.2899782 + ], + [ + 35.5903434, + -3.2904479 + ], + [ + 35.5903181, + -3.2909227 + ], + [ + 35.5902865, + -3.2915416 + ], + [ + 35.5903226, + -3.2919719 + ], + [ + 35.5905338, + -3.2929177 + ], + [ + 35.5908037, + -3.2936821 + ], + [ + 35.5911556, + -3.2942873 + ], + [ + 35.5914565, + -3.2948291 + ], + [ + 35.5916598, + -3.2955521 + ], + [ + 35.5919645, + -3.2965474 + ], + [ + 35.5923146, + -3.2975518 + ], + [ + 35.5924136, + -3.2978579 + ], + [ + 35.5924339, + -3.2981401 + ], + [ + 35.5924438, + -3.2983449 + ], + [ + 35.5925046, + -3.2986007 + ] + ] + }, + "id": "way/427251815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427251819", + "bicycle": "no", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.400447, + -3.0919674 + ], + [ + 35.4005384, + -3.0924664 + ], + [ + 35.4006756, + -3.0932154 + ], + [ + 35.4007797, + -3.093569 + ], + [ + 35.4010093, + -3.0941716 + ], + [ + 35.4010799, + -3.0944832 + ], + [ + 35.4011118, + -3.0946618 + ], + [ + 35.4011394, + -3.0948167 + ], + [ + 35.4011674, + -3.0952068 + ], + [ + 35.401182, + -3.097253 + ], + [ + 35.4011962, + -3.0975109 + ], + [ + 35.4012175, + -3.0977304 + ], + [ + 35.4012738, + -3.0979409 + ], + [ + 35.4013358, + -3.0981297 + ], + [ + 35.4015125, + -3.098525 + ], + [ + 35.4018423, + -3.0993231 + ], + [ + 35.4019553, + -3.0995332 + ], + [ + 35.4020325, + -3.099663 + ], + [ + 35.4021009, + -3.0997711 + ], + [ + 35.4021467, + -3.0999083 + ], + [ + 35.4021364, + -3.1000485 + ], + [ + 35.4020803, + -3.100217 + ], + [ + 35.4020221, + -3.1003051 + ], + [ + 35.4019723, + -3.1004155 + ], + [ + 35.4019398, + -3.1005626 + ], + [ + 35.4019544, + -3.1006574 + ], + [ + 35.4019995, + -3.1007398 + ], + [ + 35.4024907, + -3.1012513 + ], + [ + 35.4026203, + -3.1013997 + ], + [ + 35.4026559, + -3.1014743 + ], + [ + 35.4026453, + -3.1015767 + ], + [ + 35.4025907, + -3.1016677 + ], + [ + 35.4024706, + -3.1017464 + ], + [ + 35.4021144, + -3.1018917 + ], + [ + 35.4020189, + -3.1019665 + ], + [ + 35.4019751, + -3.102037 + ], + [ + 35.4019605, + -3.1021065 + ], + [ + 35.4019569, + -3.1022486 + ], + [ + 35.4019836, + -3.1024304 + ], + [ + 35.4022895, + -3.1033875 + ], + [ + 35.4023984, + -3.1037136 + ], + [ + 35.4024754, + -3.1038864 + ], + [ + 35.402583, + -3.1040752 + ], + [ + 35.4027425, + -3.1043169 + ], + [ + 35.4033198, + -3.1050165 + ], + [ + 35.4042033, + -3.1059188 + ], + [ + 35.4045218, + -3.106247 + ], + [ + 35.4048376, + -3.1066792 + ], + [ + 35.405243, + -3.1072724 + ], + [ + 35.4054919, + -3.107683 + ], + [ + 35.4061221, + -3.1089294 + ], + [ + 35.4066593, + -3.1100911 + ], + [ + 35.4070155, + -3.1109114 + ], + [ + 35.407205, + -3.1112673 + ], + [ + 35.4075193, + -3.1117494 + ], + [ + 35.4077673, + -3.1120928 + ], + [ + 35.4079432, + -3.1123174 + ], + [ + 35.4081409, + -3.1125275 + ], + [ + 35.4083265, + -3.1127026 + ], + [ + 35.4085794, + -3.1128926 + ], + [ + 35.4089077, + -3.1131057 + ], + [ + 35.4101882, + -3.1137885 + ], + [ + 35.4103927, + -3.1139103 + ], + [ + 35.4107642, + -3.1141733 + ], + [ + 35.4117381, + -3.1149637 + ], + [ + 35.4119977, + -3.115173 + ], + [ + 35.4121366, + -3.1152618 + ], + [ + 35.4122668, + -3.1153303 + ], + [ + 35.4124443, + -3.1153705 + ], + [ + 35.4126186, + -3.1153858 + ], + [ + 35.4130244, + -3.1153699 + ], + [ + 35.4146144, + -3.1153067 + ], + [ + 35.4153664, + -3.1152686 + ], + [ + 35.416044, + -3.1152636 + ], + [ + 35.4169093, + -3.1153074 + ], + [ + 35.4175674, + -3.1154158 + ], + [ + 35.4180116, + -3.1154998 + ], + [ + 35.4181943, + -3.1155575 + ], + [ + 35.4183537, + -3.1156181 + ], + [ + 35.4184785, + -3.1157103 + ], + [ + 35.4185663, + -3.1158136 + ], + [ + 35.4186387, + -3.1159548 + ], + [ + 35.4187632, + -3.1163448 + ], + [ + 35.4188321, + -3.1165165 + ], + [ + 35.4189613, + -3.1168062 + ], + [ + 35.418983, + -3.1169017 + ], + [ + 35.4189735, + -3.1169986 + ], + [ + 35.4189509, + -3.117054 + ], + [ + 35.4188919, + -3.1171519 + ], + [ + 35.4188592, + -3.1172263 + ], + [ + 35.4188607, + -3.1172931 + ], + [ + 35.4188976, + -3.1173429 + ], + [ + 35.4189716, + -3.1173691 + ], + [ + 35.419177, + -3.1174049 + ], + [ + 35.4194194, + -3.1174668 + ], + [ + 35.419609, + -3.1175471 + ], + [ + 35.4198141, + -3.1177024 + ], + [ + 35.4199775, + -3.1178648 + ], + [ + 35.4201433, + -3.1180744 + ], + [ + 35.4202668, + -3.118318 + ], + [ + 35.4203644, + -3.1186501 + ], + [ + 35.4203955, + -3.1189161 + ], + [ + 35.4203992, + -3.1191633 + ], + [ + 35.420361, + -3.1193953 + ], + [ + 35.4202597, + -3.1196572 + ], + [ + 35.4200972, + -3.119904 + ], + [ + 35.4198329, + -3.1202655 + ], + [ + 35.4193632, + -3.1207836 + ], + [ + 35.4191954, + -3.1210105 + ], + [ + 35.4190402, + -3.1212987 + ], + [ + 35.4189171, + -3.1215397 + ], + [ + 35.4188479, + -3.1217553 + ], + [ + 35.4188414, + -3.1219691 + ], + [ + 35.4188732, + -3.1222998 + ], + [ + 35.4189555, + -3.1227294 + ], + [ + 35.4190625, + -3.1231721 + ], + [ + 35.4192254, + -3.1236851 + ], + [ + 35.4194222, + -3.1242136 + ], + [ + 35.4195855, + -3.1246076 + ], + [ + 35.4197649, + -3.1249504 + ], + [ + 35.4203429, + -3.1256465 + ], + [ + 35.4212389, + -3.1266299 + ], + [ + 35.422962, + -3.1282556 + ], + [ + 35.4230743, + -3.128381 + ], + [ + 35.4231864, + -3.1285486 + ], + [ + 35.4232798, + -3.128736 + ], + [ + 35.4233286, + -3.1289075 + ], + [ + 35.42334, + -3.1290729 + ], + [ + 35.4233177, + -3.1292316 + ], + [ + 35.4231539, + -3.1298783 + ], + [ + 35.4231124, + -3.1301488 + ], + [ + 35.4231045, + -3.1304187 + ], + [ + 35.4231301, + -3.1322367 + ], + [ + 35.4231526, + -3.1340523 + ], + [ + 35.4231774, + -3.1342003 + ], + [ + 35.4232049, + -3.1342947 + ], + [ + 35.4232576, + -3.1343908 + ], + [ + 35.423397, + -3.1345725 + ], + [ + 35.4239559, + -3.1351236 + ], + [ + 35.4241383, + -3.1353003 + ], + [ + 35.4242671, + -3.1354545 + ], + [ + 35.4243875, + -3.1356526 + ], + [ + 35.4248454, + -3.1365471 + ], + [ + 35.4251508, + -3.1372286 + ], + [ + 35.4252829, + -3.1374985 + ], + [ + 35.4254761, + -3.1378358 + ], + [ + 35.4256826, + -3.1381037 + ], + [ + 35.4259367, + -3.1383428 + ], + [ + 35.4261466, + -3.1385135 + ], + [ + 35.4292204, + -3.140648 + ], + [ + 35.4305722, + -3.1416577 + ], + [ + 35.4317457, + -3.1425482 + ], + [ + 35.4319402, + -3.1426834 + ], + [ + 35.4320931, + -3.1427571 + ], + [ + 35.4322754, + -3.1428227 + ], + [ + 35.4326751, + -3.1429217 + ], + [ + 35.4330077, + -3.142978 + ], + [ + 35.4333564, + -3.142978 + ], + [ + 35.4335253, + -3.1429432 + ], + [ + 35.4336997, + -3.1428548 + ], + [ + 35.4338392, + -3.1427236 + ], + [ + 35.4343522, + -3.1420239 + ], + [ + 35.434501, + -3.1418445 + ], + [ + 35.4346251, + -3.1417327 + ], + [ + 35.4347491, + -3.1416416 + ], + [ + 35.4348926, + -3.1415633 + ], + [ + 35.4350084, + -3.1415205 + ], + [ + 35.435199, + -3.1415124 + ], + [ + 35.4358127, + -3.1416439 + ], + [ + 35.436177, + -3.1416998 + ], + [ + 35.4364067, + -3.1417233 + ], + [ + 35.4365026, + -3.1417058 + ], + [ + 35.4365744, + -3.1416644 + ], + [ + 35.436685, + -3.1415546 + ], + [ + 35.4367648, + -3.1414354 + ], + [ + 35.4368654, + -3.1412861 + ], + [ + 35.4370105, + -3.1411656 + ], + [ + 35.4371265, + -3.1411029 + ], + [ + 35.4372845, + -3.1410412 + ], + [ + 35.4374568, + -3.1410263 + ], + [ + 35.4376084, + -3.1410303 + ], + [ + 35.4378874, + -3.1410669 + ], + [ + 35.4383109, + -3.1411546 + ], + [ + 35.4386891, + -3.1412623 + ], + [ + 35.4390402, + -3.1414409 + ], + [ + 35.4392572, + -3.1415748 + ], + [ + 35.439447, + -3.1416972 + ], + [ + 35.439555, + -3.1417315 + ], + [ + 35.4396898, + -3.1417409 + ], + [ + 35.4397886, + -3.1417213 + ], + [ + 35.4398393, + -3.1416925 + ], + [ + 35.4399164, + -3.1416055 + ], + [ + 35.4400317, + -3.1414608 + ], + [ + 35.4401122, + -3.1413671 + ], + [ + 35.4402207, + -3.141279 + ], + [ + 35.4403613, + -3.141253 + ], + [ + 35.4405072, + -3.141264 + ], + [ + 35.4407239, + -3.1413325 + ], + [ + 35.4408978, + -3.141369 + ], + [ + 35.4410527, + -3.1413991 + ], + [ + 35.4412495, + -3.1414267 + ], + [ + 35.441397, + -3.1414541 + ], + [ + 35.4415666, + -3.1415232 + ], + [ + 35.4417978, + -3.141707 + ], + [ + 35.4420963, + -3.1420026 + ], + [ + 35.4422446, + -3.1421685 + ], + [ + 35.4423615, + -3.1423322 + ], + [ + 35.4427191, + -3.1429248 + ], + [ + 35.4431076, + -3.1435115 + ], + [ + 35.4432316, + -3.143664 + ], + [ + 35.4433165, + -3.1437272 + ], + [ + 35.443409, + -3.1437491 + ], + [ + 35.4435404, + -3.1437462 + ], + [ + 35.4436681, + -3.1436918 + ], + [ + 35.4437992, + -3.1436286 + ], + [ + 35.443946, + -3.1436052 + ], + [ + 35.4441172, + -3.1435879 + ], + [ + 35.4443437, + -3.1436553 + ], + [ + 35.4444996, + -3.1437266 + ], + [ + 35.4446558, + -3.143814 + ], + [ + 35.4447733, + -3.1439085 + ], + [ + 35.4448788, + -3.1440216 + ], + [ + 35.4450323, + -3.144241 + ], + [ + 35.4451403, + -3.1444848 + ], + [ + 35.4452352, + -3.1447503 + ], + [ + 35.4452657, + -3.1449393 + ], + [ + 35.4452789, + -3.1450858 + ], + [ + 35.4453147, + -3.1451797 + ], + [ + 35.4453727, + -3.145227 + ], + [ + 35.4454344, + -3.1452426 + ], + [ + 35.445533, + -3.1452148 + ], + [ + 35.4456859, + -3.1451422 + ], + [ + 35.4458562, + -3.1450362 + ], + [ + 35.4460111, + -3.1449458 + ], + [ + 35.4461788, + -3.1448847 + ], + [ + 35.4464087, + -3.1448458 + ], + [ + 35.4466127, + -3.1448596 + ], + [ + 35.4467849, + -3.1449341 + ], + [ + 35.4470291, + -3.1450899 + ], + [ + 35.447432, + -3.145452 + ], + [ + 35.4478479, + -3.1459049 + ], + [ + 35.4485379, + -3.146758 + ], + [ + 35.4489808, + -3.1472647 + ], + [ + 35.4492425, + -3.1475342 + ], + [ + 35.4496096, + -3.1479115 + ], + [ + 35.4503217, + -3.1486506 + ], + [ + 35.4509108, + -3.149329 + ], + [ + 35.4511822, + -3.1496763 + ], + [ + 35.4513582, + -3.1499716 + ], + [ + 35.4515223, + -3.1503101 + ], + [ + 35.4516777, + -3.1507137 + ], + [ + 35.4517652, + -3.1510792 + ], + [ + 35.4517903, + -3.1514402 + ], + [ + 35.451821, + -3.1520218 + ], + [ + 35.4518177, + -3.1524536 + ], + [ + 35.4517903, + -3.153066 + ], + [ + 35.4518373, + -3.1537898 + ], + [ + 35.451918, + -3.1543786 + ], + [ + 35.4519894, + -3.1546084 + ], + [ + 35.4521, + -3.1548756 + ], + [ + 35.4522242, + -3.155105 + ], + [ + 35.4523606, + -3.1553018 + ], + [ + 35.4525811, + -3.1555573 + ], + [ + 35.4528604, + -3.1557934 + ], + [ + 35.4531385, + -3.1560108 + ], + [ + 35.4534086, + -3.1561763 + ], + [ + 35.4535791, + -3.1562534 + ], + [ + 35.4538048, + -3.1563065 + ], + [ + 35.4540418, + -3.1563177 + ], + [ + 35.4544214, + -3.1562445 + ], + [ + 35.4551117, + -3.1560635 + ], + [ + 35.4558359, + -3.1559162 + ], + [ + 35.4562115, + -3.1558064 + ], + [ + 35.4565924, + -3.155643 + ], + [ + 35.457043, + -3.155418 + ], + [ + 35.4574134, + -3.1552052 + ], + [ + 35.4580595, + -3.154794 + ], + [ + 35.4585879, + -3.1544914 + ], + [ + 35.4591056, + -3.1541299 + ], + [ + 35.4595803, + -3.1538727 + ], + [ + 35.4598435, + -3.1537643 + ], + [ + 35.4602093, + -3.1536525 + ], + [ + 35.4605701, + -3.1534897 + ], + [ + 35.4608839, + -3.1533264 + ], + [ + 35.461308, + -3.1531269 + ], + [ + 35.461836, + -3.15293 + ], + [ + 35.4626971, + -3.1526675 + ], + [ + 35.4634293, + -3.15244 + ], + [ + 35.4638853, + -3.1522659 + ], + [ + 35.4643013, + -3.152053 + ], + [ + 35.4648026, + -3.1517543 + ], + [ + 35.4662724, + -3.1507768 + ], + [ + 35.466726, + -3.150489 + ], + [ + 35.4671897, + -3.1502385 + ], + [ + 35.4676028, + -3.1500429 + ], + [ + 35.4679867, + -3.1498676 + ], + [ + 35.4683994, + -3.1497431 + ], + [ + 35.4687938, + -3.1496359 + ], + [ + 35.4691585, + -3.149577 + ], + [ + 35.4700892, + -3.1495073 + ], + [ + 35.4708858, + -3.1493815 + ], + [ + 35.4711862, + -3.1493493 + ], + [ + 35.4716556, + -3.149352 + ], + [ + 35.4720982, + -3.1493734 + ], + [ + 35.4723128, + -3.1493708 + ], + [ + 35.4725649, + -3.149336 + ], + [ + 35.4727694, + -3.1492911 + ], + [ + 35.473045, + -3.1492315 + ], + [ + 35.4733072, + -3.1492001 + ], + [ + 35.4735687, + -3.1492094 + ], + [ + 35.4738068, + -3.1492181 + ], + [ + 35.4740421, + -3.1492202 + ], + [ + 35.4744076, + -3.1491913 + ], + [ + 35.4746597, + -3.1491591 + ], + [ + 35.47529, + -3.1491511 + ], + [ + 35.4754989, + -3.149172 + ], + [ + 35.4757158, + -3.1492068 + ], + [ + 35.4758205, + -3.1492443 + ], + [ + 35.4759358, + -3.1493085 + ], + [ + 35.4760755, + -3.1494666 + ], + [ + 35.4761751, + -3.1496359 + ], + [ + 35.4763065, + -3.1498903 + ], + [ + 35.4764001, + -3.1501897 + ], + [ + 35.4764568, + -3.1506858 + ], + [ + 35.47654, + -3.1518079 + ], + [ + 35.4765265, + -3.1523006 + ], + [ + 35.4764836, + -3.1527346 + ], + [ + 35.476384, + -3.1534382 + ], + [ + 35.4762664, + -3.1539933 + ], + [ + 35.4761551, + -3.1543294 + ], + [ + 35.4760811, + -3.1545947 + ], + [ + 35.4760444, + -3.154703 + ], + [ + 35.4759874, + -3.1548129 + ], + [ + 35.4759029, + -3.1549106 + ], + [ + 35.4758654, + -3.154944 + ] + ] + }, + "id": "way/427251819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427266001", + "highway": "secondary", + "source": "survey", + "surface": "unpaved", + "usability": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.5547758, + -2.0323393 + ], + [ + 35.5543032, + -2.0320553 + ], + [ + 35.5539492, + -2.0318871 + ], + [ + 35.5518135, + -2.0313321 + ], + [ + 35.5490564, + -2.0315362 + ], + [ + 35.5479843, + -2.0313661 + ], + [ + 35.5473205, + -2.031026 + ], + [ + 35.5458399, + -2.0315192 + ], + [ + 35.5453293, + -2.0314342 + ], + [ + 35.5451081, + -2.031128 + ], + [ + 35.5452272, + -2.0304817 + ], + [ + 35.5454825, + -2.0301586 + ], + [ + 35.5455506, + -2.0293932 + ], + [ + 35.5454975, + -2.0292461 + ], + [ + 35.5452102, + -2.0286958 + ], + [ + 35.5447336, + -2.0285088 + ], + [ + 35.5438487, + -2.0278284 + ], + [ + 35.5433551, + -2.0278114 + ], + [ + 35.5404959, + -2.0286958 + ], + [ + 35.5380282, + -2.0297163 + ], + [ + 35.5371092, + -2.0294952 + ], + [ + 35.5358668, + -2.028985 + ], + [ + 35.5347606, + -2.0283047 + ], + [ + 35.5317823, + -2.0243247 + ], + [ + 35.53151, + -2.022811 + ], + [ + 35.5305059, + -2.0216714 + ], + [ + 35.5289742, + -2.020855 + ], + [ + 35.5280211, + -2.0198515 + ], + [ + 35.5258597, + -2.016586 + ], + [ + 35.5244982, + -2.012691 + ], + [ + 35.5247024, + -2.0104629 + ], + [ + 35.5240046, + -2.006534 + ], + [ + 35.5208902, + -1.9980127 + ], + [ + 35.5205839, + -1.9955295 + ], + [ + 35.5208391, + -1.9948662 + ], + [ + 35.5209753, + -1.9936245 + ], + [ + 35.5217582, + -1.9903929 + ], + [ + 35.5224559, + -1.9877225 + ], + [ + 35.52249, + -1.984763 + ], + [ + 35.5233579, + -1.9815654 + ], + [ + 35.5240557, + -1.9800856 + ], + [ + 35.5239536, + -1.978912 + ], + [ + 35.5240387, + -1.9783508 + ], + [ + 35.5243961, + -1.9776534 + ], + [ + 35.524345, + -1.9772792 + ], + [ + 35.5221666, + -1.9741326 + ], + [ + 35.5219794, + -1.9732991 + ], + [ + 35.5220305, + -1.9720405 + ], + [ + 35.5220305, + -1.9703736 + ], + [ + 35.5215369, + -1.9684006 + ], + [ + 35.520754, + -1.9669889 + ], + [ + 35.5199882, + -1.9665466 + ], + [ + 35.5195627, + -1.9659173 + ], + [ + 35.5191032, + -1.9656112 + ], + [ + 35.5152229, + -1.9645226 + ], + [ + 35.5139805, + -1.9637062 + ], + [ + 35.5114958, + -1.9624645 + ], + [ + 35.509913, + -1.9612399 + ], + [ + 35.5095666, + -1.9610279 + ], + [ + 35.5069858, + -1.9596921 + ], + [ + 35.4977445, + -1.9566815 + ], + [ + 35.4957873, + -1.9565284 + ], + [ + 35.4945109, + -1.9561882 + ], + [ + 35.492775, + -1.9553378 + ], + [ + 35.481917, + -1.9550316 + ], + [ + 35.4790748, + -1.955746 + ], + [ + 35.4760625, + -1.955865 + ], + [ + 35.474735, + -1.9553038 + ], + [ + 35.47385, + -1.9543512 + ], + [ + 35.4733394, + -1.9532797 + ], + [ + 35.472948, + -1.9530245 + ], + [ + 35.4718928, + -1.9528204 + ], + [ + 35.4715184, + -1.9525483 + ], + [ + 35.4704632, + -1.9507453 + ], + [ + 35.467502, + -1.9490104 + ], + [ + 35.4665319, + -1.9478028 + ], + [ + 35.4644896, + -1.9460849 + ], + [ + 35.4631451, + -1.9454215 + ], + [ + 35.4617326, + -1.9453365 + ], + [ + 35.4600307, + -1.944401 + ], + [ + 35.4581926, + -1.9424449 + ], + [ + 35.4534273, + -1.9391622 + ], + [ + 35.4496321, + -1.9373082 + ], + [ + 35.448611, + -1.9373932 + ], + [ + 35.4480607, + -1.9376788 + ], + [ + 35.447726, + -1.9378525 + ], + [ + 35.446807, + -1.9386009 + ], + [ + 35.4457008, + -1.9393152 + ], + [ + 35.4451562, + -1.9403188 + ], + [ + 35.4439138, + -1.940744 + ], + [ + 35.4432671, + -1.940693 + ], + [ + 35.4424842, + -1.9408801 + ], + [ + 35.442297, + -1.9408291 + ], + [ + 35.4421268, + -1.9402848 + ], + [ + 35.4418545, + -1.9399616 + ], + [ + 35.4412248, + -1.9397405 + ], + [ + 35.4399824, + -1.9390091 + ], + [ + 35.439574, + -1.9366448 + ], + [ + 35.4394725, + -1.9363505 + ], + [ + 35.4391054, + -1.935712 + ], + [ + 35.4387253, + -1.9353791 + ], + [ + 35.4383094, + -1.9348706 + ], + [ + 35.4375393, + -1.9344538 + ], + [ + 35.4369512, + -1.9340616 + ], + [ + 35.4358571, + -1.9330686 + ], + [ + 35.4350484, + -1.9321493 + ], + [ + 35.4347089, + -1.9315951 + ], + [ + 35.4342465, + -1.9310506 + ], + [ + 35.4338775, + -1.9303931 + ], + [ + 35.4335159, + -1.9296121 + ], + [ + 35.4333499, + -1.9293641 + ], + [ + 35.4332816, + -1.9291663 + ], + [ + 35.4333019, + -1.928949 + ], + [ + 35.4334305, + -1.9284303 + ], + [ + 35.4334751, + -1.9279842 + ], + [ + 35.4335493, + -1.927715 + ], + [ + 35.4337142, + -1.9272745 + ], + [ + 35.4338386, + -1.9270435 + ], + [ + 35.4339368, + -1.926854 + ], + [ + 35.4339853, + -1.9266607 + ], + [ + 35.4339945, + -1.9264085 + ], + [ + 35.4339407, + -1.9260481 + ], + [ + 35.4336455, + -1.9254335 + ], + [ + 35.4335568, + -1.9252658 + ], + [ + 35.4334507, + -1.9250807 + ], + [ + 35.4332375, + -1.9248841 + ], + [ + 35.4330397, + -1.9246809 + ], + [ + 35.4327356, + -1.9244361 + ], + [ + 35.4326468, + -1.9242909 + ], + [ + 35.4325462, + -1.9240913 + ], + [ + 35.4324673, + -1.9238852 + ], + [ + 35.4323401, + -1.9236955 + ], + [ + 35.4318503, + -1.9232957 + ], + [ + 35.4316174, + -1.923214 + ], + [ + 35.4313058, + -1.9230646 + ], + [ + 35.4311799, + -1.9230418 + ], + [ + 35.4309799, + -1.9230517 + ], + [ + 35.4308378, + -1.9229875 + ], + [ + 35.4306826, + -1.9228556 + ], + [ + 35.4305487, + -1.922658 + ], + [ + 35.430398, + -1.9225811 + ], + [ + 35.4302254, + -1.9224454 + ], + [ + 35.4299719, + -1.9223615 + ], + [ + 35.429745, + -1.9223416 + ], + [ + 35.42947, + -1.9223436 + ], + [ + 35.4293041, + -1.9222908 + ], + [ + 35.4291606, + -1.9221729 + ], + [ + 35.4289625, + -1.9220637 + ], + [ + 35.4287715, + -1.9220067 + ], + [ + 35.4283635, + -1.9218167 + ], + [ + 35.4278899, + -1.9215383 + ], + [ + 35.4273156, + -1.9213271 + ], + [ + 35.4271102, + -1.9210577 + ], + [ + 35.4267892, + -1.9208399 + ], + [ + 35.426591, + -1.9206773 + ], + [ + 35.4264779, + -1.920557 + ], + [ + 35.4263857, + -1.9204027 + ], + [ + 35.4263008, + -1.9201964 + ], + [ + 35.4261909, + -1.9199919 + ], + [ + 35.4260511, + -1.9198387 + ], + [ + 35.4258971, + -1.9196891 + ], + [ + 35.425792, + -1.9195323 + ], + [ + 35.4257225, + -1.9193913 + ], + [ + 35.4256672, + -1.9191755 + ], + [ + 35.425579, + -1.9189068 + ], + [ + 35.4252661, + -1.9182675 + ], + [ + 35.42524, + -1.918059 + ], + [ + 35.4252858, + -1.9173655 + ], + [ + 35.4253369, + -1.9169552 + ], + [ + 35.4257524, + -1.914406 + ], + [ + 35.4258137, + -1.9141097 + ], + [ + 35.425934, + -1.9135278 + ], + [ + 35.4259759, + -1.9133251 + ], + [ + 35.4260609, + -1.9123372 + ], + [ + 35.4260635, + -1.9119807 + ], + [ + 35.4259325, + -1.9117536 + ], + [ + 35.4257189, + -1.9115015 + ] + ] + }, + "id": "way/427266001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/427266006", + "highway": "secondary", + "name": "Ololosokwan Road", + "smoothness": "horrible", + "source": "survey", + "surface": "unpaved", + "usability": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4203487, + -1.9055546 + ], + [ + 35.4201972, + -1.9053767 + ], + [ + 35.4199559, + -1.9050872 + ], + [ + 35.4192129, + -1.9040611 + ], + [ + 35.4188479, + -1.9034841 + ], + [ + 35.4187859, + -1.9030304 + ], + [ + 35.4186571, + -1.9026525 + ], + [ + 35.4184716, + -1.902355 + ], + [ + 35.4183101, + -1.902108 + ], + [ + 35.4181236, + -1.9017875 + ], + [ + 35.4180322, + -1.9016658 + ], + [ + 35.4178306, + -1.9014494 + ], + [ + 35.4171415, + -1.9010523 + ], + [ + 35.4164555, + -1.9007609 + ], + [ + 35.4159213, + -1.9006309 + ], + [ + 35.4154502, + -1.9007072 + ], + [ + 35.4147472, + -1.9006671 + ], + [ + 35.4135762, + -1.9005187 + ], + [ + 35.4127972, + -1.900327 + ], + [ + 35.4122086, + -1.9002096 + ], + [ + 35.4117483, + -1.9001942 + ], + [ + 35.4114881, + -1.9001557 + ], + [ + 35.4111588, + -1.9000195 + ], + [ + 35.4099527, + -1.8993699 + ], + [ + 35.4092369, + -1.8990695 + ], + [ + 35.4086052, + -1.8988162 + ], + [ + 35.4076572, + -1.8985387 + ], + [ + 35.4071677, + -1.8985628 + ], + [ + 35.4061082, + -1.898728 + ], + [ + 35.4053233, + -1.8987178 + ], + [ + 35.4044418, + -1.8986297 + ], + [ + 35.4039859, + -1.898643 + ], + [ + 35.4020073, + -1.8988813 + ], + [ + 35.4015155, + -1.8989254 + ], + [ + 35.4007129, + -1.8990576 + ], + [ + 35.3994335, + -1.8991803 + ], + [ + 35.3991081, + -1.8991881 + ], + [ + 35.3987627, + -1.8991392 + ], + [ + 35.3986126, + -1.8990645 + ], + [ + 35.3984685, + -1.8988786 + ], + [ + 35.398442, + -1.8986892 + ], + [ + 35.3985011, + -1.8984849 + ], + [ + 35.3988083, + -1.8979819 + ], + [ + 35.3989168, + -1.8975954 + ], + [ + 35.3989839, + -1.8971321 + ], + [ + 35.3989545, + -1.8967578 + ], + [ + 35.3990057, + -1.8964582 + ], + [ + 35.3991634, + -1.8951526 + ], + [ + 35.3991297, + -1.8947552 + ], + [ + 35.3990318, + -1.8943362 + ], + [ + 35.3982644, + -1.8930835 + ], + [ + 35.3981099, + -1.8929726 + ], + [ + 35.3966581, + -1.8922764 + ], + [ + 35.3961749, + -1.8921616 + ], + [ + 35.3957589, + -1.892111 + ], + [ + 35.3954653, + -1.8921077 + ], + [ + 35.395157, + -1.8921675 + ], + [ + 35.3945558, + -1.8920857 + ], + [ + 35.3940485, + -1.8920972 + ], + [ + 35.3935379, + -1.8923184 + ], + [ + 35.3933546, + -1.8924823 + ], + [ + 35.3931205, + -1.8927663 + ], + [ + 35.3928912, + -1.8928967 + ], + [ + 35.3924437, + -1.893 + ], + [ + 35.3919942, + -1.8929804 + ], + [ + 35.3891535, + -1.8922106 + ], + [ + 35.3884571, + -1.8919025 + ], + [ + 35.3858774, + -1.8906248 + ], + [ + 35.3853906, + -1.8903975 + ], + [ + 35.3849613, + -1.8902481 + ], + [ + 35.3845737, + -1.890163 + ], + [ + 35.3840145, + -1.890089 + ], + [ + 35.3836461, + -1.8899462 + ], + [ + 35.38319, + -1.8897683 + ], + [ + 35.3825499, + -1.8896372 + ], + [ + 35.3815066, + -1.8892745 + ], + [ + 35.3805217, + -1.8888757 + ], + [ + 35.3802705, + -1.8887986 + ], + [ + 35.3800312, + -1.8887577 + ], + [ + 35.379627, + -1.8887151 + ], + [ + 35.3792453, + -1.888657 + ], + [ + 35.3790082, + -1.888651 + ], + [ + 35.3787727, + -1.8886995 + ], + [ + 35.3776843, + -1.8890025 + ], + [ + 35.3770364, + -1.889121 + ], + [ + 35.376661, + -1.889154 + ], + [ + 35.3762867, + -1.8891244 + ], + [ + 35.3753164, + -1.8889808 + ], + [ + 35.3732541, + -1.8890273 + ], + [ + 35.3712584, + -1.8885342 + ], + [ + 35.3706821, + -1.8884646 + ], + [ + 35.370158, + -1.8884432 + ], + [ + 35.3693668, + -1.8883442 + ], + [ + 35.3691368, + -1.8883209 + ], + [ + 35.3689726, + -1.8881339 + ], + [ + 35.3688446, + -1.8879549 + ], + [ + 35.3685671, + -1.8878184 + ], + [ + 35.3681574, + -1.8878018 + ], + [ + 35.3675018, + -1.8880284 + ], + [ + 35.3668863, + -1.888287 + ], + [ + 35.366148, + -1.8887809 + ], + [ + 35.3651659, + -1.8892068 + ], + [ + 35.3649423, + -1.8892928 + ], + [ + 35.3647079, + -1.8894162 + ], + [ + 35.3642722, + -1.8897775 + ], + [ + 35.3641388, + -1.8899054 + ], + [ + 35.3638231, + -1.8902082 + ], + [ + 35.3636089, + -1.8903201 + ], + [ + 35.3633492, + -1.8904454 + ], + [ + 35.3626249, + -1.8907568 + ], + [ + 35.3615175, + -1.8910455 + ], + [ + 35.3605891, + -1.8909882 + ], + [ + 35.3593593, + -1.8907054 + ], + [ + 35.3583367, + -1.8904542 + ], + [ + 35.3577104, + -1.8902597 + ], + [ + 35.3570867, + -1.8899905 + ], + [ + 35.3564398, + -1.8895695 + ], + [ + 35.3558391, + -1.8892525 + ], + [ + 35.3557836, + -1.889225 + ], + [ + 35.3553735, + -1.889022 + ], + [ + 35.3548905, + -1.8887348 + ], + [ + 35.3546164, + -1.8884304 + ], + [ + 35.3543515, + -1.8881893 + ], + [ + 35.3540606, + -1.8879629 + ], + [ + 35.3538856, + -1.8878628 + ], + [ + 35.3537041, + -1.8877955 + ], + [ + 35.3529026, + -1.8876636 + ], + [ + 35.352659, + -1.8876525 + ], + [ + 35.3524464, + -1.8876856 + ], + [ + 35.352224, + -1.8877384 + ], + [ + 35.3518252, + -1.8878545 + ], + [ + 35.3512609, + -1.8879098 + ], + [ + 35.3509617, + -1.8879042 + ], + [ + 35.350864, + -1.8878929 + ], + [ + 35.3506593, + -1.8878691 + ], + [ + 35.3499542, + -1.8877916 + ], + [ + 35.3494047, + -1.8877707 + ], + [ + 35.3481758, + -1.8876122 + ], + [ + 35.3476979, + -1.887513 + ], + [ + 35.3472806, + -1.8873592 + ], + [ + 35.3469269, + -1.887191 + ], + [ + 35.3464587, + -1.8869212 + ], + [ + 35.3460722, + -1.8866858 + ], + [ + 35.3445438, + -1.8848961 + ], + [ + 35.3442685, + -1.8842779 + ], + [ + 35.3437927, + -1.8832046 + ], + [ + 35.3434548, + -1.8827113 + ], + [ + 35.3430337, + -1.8821162 + ], + [ + 35.3428808, + -1.8819955 + ], + [ + 35.3425526, + -1.8818298 + ], + [ + 35.3420408, + -1.8815508 + ], + [ + 35.3417939, + -1.8813024 + ], + [ + 35.3415417, + -1.8810379 + ], + [ + 35.3413643, + -1.8807833 + ], + [ + 35.3412003, + -1.8805047 + ], + [ + 35.3411203, + -1.8802557 + ], + [ + 35.3410971, + -1.8800709 + ], + [ + 35.3410685, + -1.8798701 + ], + [ + 35.3409593, + -1.8795719 + ], + [ + 35.3408629, + -1.8793668 + ], + [ + 35.3407237, + -1.8791403 + ], + [ + 35.3405018, + -1.8788675 + ], + [ + 35.3403072, + -1.8786717 + ], + [ + 35.3400698, + -1.878492 + ], + [ + 35.3397223, + -1.8782399 + ], + [ + 35.3395913, + -1.8781449 + ], + [ + 35.3392599, + -1.8778486 + ], + [ + 35.3392162, + -1.8777949 + ], + [ + 35.3391296, + -1.8776886 + ], + [ + 35.3389565, + -1.877494 + ], + [ + 35.3387916, + -1.8773436 + ], + [ + 35.338656, + -1.8772414 + ], + [ + 35.3384516, + -1.8770935 + ], + [ + 35.3382956, + -1.8769895 + ], + [ + 35.338242, + -1.8769537 + ], + [ + 35.3381516, + -1.8769123 + ], + [ + 35.3380387, + -1.8768606 + ], + [ + 35.3377954, + -1.8767862 + ], + [ + 35.3374067, + -1.8766954 + ], + [ + 35.3367399, + -1.8765397 + ], + [ + 35.3364065, + -1.8764619 + ], + [ + 35.3363265, + -1.8764432 + ], + [ + 35.3360622, + -1.8763978 + ], + [ + 35.3356799, + -1.8763629 + ], + [ + 35.3353116, + -1.8762993 + ], + [ + 35.3350451, + -1.8762464 + ], + [ + 35.3348638, + -1.8762593 + ], + [ + 35.3347269, + -1.8763165 + ], + [ + 35.3344773, + -1.8764958 + ], + [ + 35.3339199, + -1.8768046 + ], + [ + 35.3336779, + -1.8768518 + ], + [ + 35.3334317, + -1.8768864 + ], + [ + 35.3332073, + -1.8769494 + ], + [ + 35.3330196, + -1.8770507 + ], + [ + 35.3328465, + -1.8771441 + ], + [ + 35.3324503, + -1.8775333 + ], + [ + 35.3316787, + -1.8786536 + ], + [ + 35.3309377, + -1.879516 + ], + [ + 35.3306329, + -1.8797193 + ], + [ + 35.3302052, + -1.8798345 + ], + [ + 35.3295947, + -1.8799811 + ], + [ + 35.329235, + -1.8800561 + ], + [ + 35.3291512, + -1.8800736 + ], + [ + 35.3286965, + -1.8802519 + ], + [ + 35.3284171, + -1.8805287 + ], + [ + 35.3281926, + -1.8808296 + ], + [ + 35.3280764, + -1.881092 + ], + [ + 35.328023, + -1.8814043 + ], + [ + 35.3279466, + -1.8827426 + ], + [ + 35.3279005, + -1.8831634 + ], + [ + 35.3277981, + -1.883639 + ], + [ + 35.3276604, + -1.8839522 + ], + [ + 35.3274168, + -1.8845061 + ], + [ + 35.3272212, + -1.8848763 + ], + [ + 35.3271899, + -1.8849145 + ], + [ + 35.3269543, + -1.8852016 + ], + [ + 35.3266853, + -1.8854366 + ], + [ + 35.3261857, + -1.885751 + ], + [ + 35.3257567, + -1.8859441 + ], + [ + 35.325644, + -1.8859832 + ], + [ + 35.3249417, + -1.8862268 + ], + [ + 35.3245793, + -1.8863011 + ], + [ + 35.3241037, + -1.8862834 + ], + [ + 35.3228983, + -1.8862237 + ], + [ + 35.3221275, + -1.8862882 + ], + [ + 35.3212504, + -1.8863196 + ], + [ + 35.3205978, + -1.8862733 + ], + [ + 35.3199072, + -1.8862243 + ], + [ + 35.317706, + -1.8860322 + ], + [ + 35.3167036, + -1.886142 + ], + [ + 35.3152157, + -1.8864484 + ], + [ + 35.3142833, + -1.8867695 + ], + [ + 35.3128419, + -1.8873035 + ], + [ + 35.312035, + -1.8875386 + ], + [ + 35.3111034, + -1.8878861 + ], + [ + 35.3109009, + -1.8879616 + ], + [ + 35.3102013, + -1.8883746 + ], + [ + 35.3092644, + -1.8889236 + ], + [ + 35.3085584, + -1.8891931 + ], + [ + 35.307694, + -1.8894466 + ], + [ + 35.3073742, + -1.8896398 + ], + [ + 35.3069721, + -1.8899624 + ], + [ + 35.3064332, + -1.8902444 + ], + [ + 35.3052701, + -1.8908598 + ], + [ + 35.3049605, + -1.8910919 + ], + [ + 35.3046418, + -1.8913488 + ], + [ + 35.3043565, + -1.8915292 + ], + [ + 35.3042253, + -1.891684 + ], + [ + 35.3041174, + -1.8918113 + ], + [ + 35.3037423, + -1.8921863 + ], + [ + 35.3034688, + -1.892421 + ], + [ + 35.3030804, + -1.8925954 + ], + [ + 35.3024463, + -1.8928613 + ], + [ + 35.301729, + -1.8930328 + ], + [ + 35.3008818, + -1.8931176 + ], + [ + 35.2997128, + -1.8933219 + ], + [ + 35.2989124, + -1.8935832 + ], + [ + 35.2982695, + -1.8938319 + ], + [ + 35.2976424, + -1.8939558 + ], + [ + 35.2967678, + -1.8939645 + ], + [ + 35.2956656, + -1.8939632 + ], + [ + 35.2952932, + -1.8939892 + ], + [ + 35.2946109, + -1.8941148 + ], + [ + 35.2933956, + -1.8943024 + ], + [ + 35.2929352, + -1.8943932 + ], + [ + 35.2924333, + -1.8944882 + ], + [ + 35.2915543, + -1.8945556 + ], + [ + 35.2903202, + -1.8945529 + ], + [ + 35.2897998, + -1.8945636 + ], + [ + 35.289299, + -1.894583 + ], + [ + 35.2886658, + -1.8946445 + ], + [ + 35.288524, + -1.8946583 + ], + [ + 35.2878261, + -1.8947374 + ], + [ + 35.2870411, + -1.894762 + ], + [ + 35.2869486, + -1.8947777 + ], + [ + 35.2868887, + -1.8947879 + ], + [ + 35.2864281, + -1.8951349 + ], + [ + 35.2859105, + -1.8953501 + ], + [ + 35.285624, + -1.8954222 + ], + [ + 35.2854562, + -1.895432 + ], + [ + 35.2852583, + -1.8954436 + ], + [ + 35.2849216, + -1.8953673 + ], + [ + 35.2844625, + -1.8952029 + ], + [ + 35.2831352, + -1.8946393 + ], + [ + 35.2822996, + -1.89412 + ], + [ + 35.281613, + -1.8937148 + ], + [ + 35.2798177, + -1.8927606 + ], + [ + 35.278923, + -1.8920597 + ], + [ + 35.2785178, + -1.8917477 + ], + [ + 35.2778081, + -1.8913415 + ], + [ + 35.2772399, + -1.8908793 + ], + [ + 35.2768359, + -1.8904943 + ], + [ + 35.2765109, + -1.8901845 + ], + [ + 35.2760963, + -1.889862 + ], + [ + 35.2755919, + -1.8893381 + ], + [ + 35.2751038, + -1.8887511 + ], + [ + 35.2748775, + -1.8884078 + ], + [ + 35.2746774, + -1.8879318 + ], + [ + 35.2745626, + -1.8876154 + ], + [ + 35.2744726, + -1.8871058 + ], + [ + 35.2742724, + -1.8865711 + ], + [ + 35.2740313, + -1.8860588 + ], + [ + 35.2736564, + -1.8854776 + ], + [ + 35.2733048, + -1.8849072 + ], + [ + 35.272783, + -1.8840607 + ], + [ + 35.2727481, + -1.8840042 + ], + [ + 35.2723266, + -1.8833614 + ], + [ + 35.2720066, + -1.8828735 + ], + [ + 35.2716741, + -1.8824811 + ], + [ + 35.271536, + -1.8823321 + ], + [ + 35.270648, + -1.881374 + ], + [ + 35.2698197, + -1.8804613 + ], + [ + 35.2693479, + -1.8798426 + ], + [ + 35.2687881, + -1.8789799 + ], + [ + 35.2684886, + -1.8784871 + ], + [ + 35.2682513, + -1.8779699 + ], + [ + 35.2679215, + -1.877554 + ], + [ + 35.267686, + -1.8772482 + ], + [ + 35.2672061, + -1.8766757 + ], + [ + 35.2664132, + -1.8756801 + ], + [ + 35.2648789, + -1.874074 + ], + [ + 35.2635227, + -1.8729403 + ], + [ + 35.2631787, + -1.8726467 + ], + [ + 35.2620127, + -1.8718949 + ], + [ + 35.2615072, + -1.8715981 + ], + [ + 35.2600514, + -1.8706214 + ], + [ + 35.2595477, + -1.8702059 + ], + [ + 35.2586517, + -1.8696135 + ], + [ + 35.2580561, + -1.869196 + ], + [ + 35.257021, + -1.8683543 + ], + [ + 35.2567667, + -1.8680836 + ], + [ + 35.2561632, + -1.8674588 + ], + [ + 35.254178, + -1.8648679 + ], + [ + 35.2537705, + -1.8642651 + ], + [ + 35.2527073, + -1.8629564 + ], + [ + 35.2516862, + -1.8619499 + ], + [ + 35.251355, + -1.8617652 + ], + [ + 35.2510936, + -1.8616085 + ], + [ + 35.2509295, + -1.8614923 + ], + [ + 35.2504213, + -1.8611301 + ], + [ + 35.2488192, + -1.8594214 + ], + [ + 35.2484582, + -1.8588928 + ], + [ + 35.2482913, + -1.8586834 + ], + [ + 35.2478767, + -1.8584138 + ], + [ + 35.2475612, + -1.8580689 + ], + [ + 35.2473483, + -1.8577986 + ], + [ + 35.2471074, + -1.8575164 + ], + [ + 35.2468031, + -1.85724 + ], + [ + 35.2462938, + -1.856906 + ], + [ + 35.2458877, + -1.8566334 + ], + [ + 35.2453048, + -1.856171 + ], + [ + 35.2451414, + -1.8560414 + ], + [ + 35.2448658, + -1.8558231 + ], + [ + 35.2446372, + -1.8557595 + ], + [ + 35.2443353, + -1.8557566 + ], + [ + 35.2440213, + -1.8558311 + ], + [ + 35.2437564, + -1.8560241 + ] + ] + }, + "id": "way/427266006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/428577149", + "highway": "secondary", + "name": "Musoma Road", + "name:en": "Musoma Road", + "name:sw": "Barabara ya Musoma", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6110592, + -1.7321926 + ], + [ + 34.6107293, + -1.7320921 + ], + [ + 34.6105433, + -1.7318362 + ], + [ + 34.6104182, + -1.731722 + ], + [ + 34.6100864, + -1.7313577 + ], + [ + 34.6098603, + -1.7310814 + ], + [ + 34.6097289, + -1.730942 + ], + [ + 34.6096023, + -1.7308521 + ], + [ + 34.6094821, + -1.7307516 + ], + [ + 34.6093453, + -1.7307061 + ], + [ + 34.6091254, + -1.7306712 + ], + [ + 34.6088545, + -1.7306605 + ], + [ + 34.6086205, + -1.7307371 + ] + ] + }, + "id": "way/428577149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/428578599", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5926976, + -1.3077157 + ], + [ + 34.5926485, + -1.307692 + ], + [ + 34.592006, + -1.3075208 + ], + [ + 34.5915748, + -1.3073997 + ], + [ + 34.5909737, + -1.3071455 + ], + [ + 34.5908644, + -1.3071436 + ], + [ + 34.5906805, + -1.3070414 + ], + [ + 34.5904713, + -1.3068479 + ], + [ + 34.5902385, + -1.3065641 + ], + [ + 34.5897724, + -1.3060147 + ], + [ + 34.5894512, + -1.3056591 + ], + [ + 34.5892917, + -1.3055274 + ], + [ + 34.5890765, + -1.3053497 + ], + [ + 34.5884958, + -1.304923 + ], + [ + 34.588401, + -1.3048651 + ], + [ + 34.5879801, + -1.3045834 + ], + [ + 34.5866968, + -1.303827 + ], + [ + 34.5863885, + -1.3036453 + ], + [ + 34.5857426, + -1.3032639 + ], + [ + 34.5852011, + -1.3030141 + ], + [ + 34.5842333, + -1.3026034 + ], + [ + 34.5842113, + -1.3025931 + ], + [ + 34.5839806, + -1.3024718 + ], + [ + 34.5838356, + -1.3023361 + ], + [ + 34.5836118, + -1.3021057 + ], + [ + 34.5834213, + -1.301914 + ], + [ + 34.5832358, + -1.3017563 + ], + [ + 34.5829744, + -1.3015718 + ], + [ + 34.5824423, + -1.3010801 + ], + [ + 34.5820561, + -1.3007723 + ], + [ + 34.5814608, + -1.3002694 + ], + [ + 34.5807248, + -1.2996874 + ], + [ + 34.5803931, + -1.2994523 + ], + [ + 34.5798621, + -1.299144 + ], + [ + 34.5791782, + -1.2987869 + ], + [ + 34.5790785, + -1.2987486 + ], + [ + 34.5789112, + -1.2987069 + ], + [ + 34.5787758, + -1.2986721 + ], + [ + 34.5784713, + -1.2985849 + ], + [ + 34.5775245, + -1.2982605 + ], + [ + 34.5772282, + -1.2981767 + ], + [ + 34.5769814, + -1.2980814 + ], + [ + 34.5767198, + -1.2979977 + ], + [ + 34.576284, + -1.2978247 + ], + [ + 34.5758657, + -1.2976833 + ], + [ + 34.5753167, + -1.2975224 + ], + [ + 34.574617, + -1.2973662 + ], + [ + 34.57444, + -1.2973554 + ], + [ + 34.5740926, + -1.2973889 + ], + [ + 34.5739907, + -1.297389 + ], + [ + 34.5739156, + -1.2973662 + ], + [ + 34.5735991, + -1.2972254 + ], + [ + 34.5733644, + -1.2971221 + ], + [ + 34.5730734, + -1.2969545 + ], + [ + 34.572682, + -1.2966652 + ], + [ + 34.5724624, + -1.2964875 + ], + [ + 34.572348, + -1.2964082 + ], + [ + 34.5716187, + -1.2957669 + ], + [ + 34.5709037, + -1.2949905 + ], + [ + 34.5706656, + -1.2947369 + ], + [ + 34.5705581, + -1.2945526 + ], + [ + 34.5702879, + -1.2940545 + ], + [ + 34.5698829, + -1.2931267 + ], + [ + 34.569738, + -1.2928176 + ], + [ + 34.5695785, + -1.2925214 + ], + [ + 34.5693049, + -1.2920273 + ], + [ + 34.5690543, + -1.2915728 + ], + [ + 34.5689497, + -1.2913958 + ], + [ + 34.5688464, + -1.2912115 + ], + [ + 34.5687806, + -1.2911244 + ], + [ + 34.5686617, + -1.2909084 + ], + [ + 34.5685237, + -1.290665 + ], + [ + 34.5683607, + -1.2902668 + ], + [ + 34.5683158, + -1.2901066 + ], + [ + 34.5682951, + -1.2899437 + ], + [ + 34.5682105, + -1.2894174 + ], + [ + 34.568163, + -1.2891839 + ], + [ + 34.5681193, + -1.288969 + ], + [ + 34.5680168, + -1.2885869 + ], + [ + 34.567878, + -1.2882202 + ], + [ + 34.5676325, + -1.287777 + ], + [ + 34.5673888, + -1.2874073 + ], + [ + 34.5672309, + -1.2872012 + ], + [ + 34.5670579, + -1.286994 + ], + [ + 34.5668707, + -1.2868022 + ], + [ + 34.5666702, + -1.2866468 + ], + [ + 34.5665046, + -1.2865301 + ], + [ + 34.5661547, + -1.2863578 + ], + [ + 34.5656551, + -1.286091 + ], + [ + 34.5653312, + -1.2859134 + ], + [ + 34.5649342, + -1.2856882 + ], + [ + 34.5640759, + -1.2852135 + ], + [ + 34.5638895, + -1.2851048 + ], + [ + 34.562987, + -1.2845404 + ], + [ + 34.562525, + -1.2842589 + ], + [ + 34.5622674, + -1.2841302 + ], + [ + 34.5620355, + -1.2840289 + ], + [ + 34.5617343, + -1.2839223 + ], + [ + 34.561444, + -1.2838291 + ], + [ + 34.560874, + -1.2836328 + ], + [ + 34.5606307, + -1.2835422 + ], + [ + 34.560284, + -1.2833652 + ], + [ + 34.5598038, + -1.2831152 + ], + [ + 34.5593244, + -1.2828578 + ], + [ + 34.5590719, + -1.2827237 + ], + [ + 34.558802, + -1.2825695 + ], + [ + 34.5582461, + -1.2823 + ], + [ + 34.5571652, + -1.2817436 + ], + [ + 34.5565356, + -1.2813943 + ], + [ + 34.5563424, + -1.2812877 + ], + [ + 34.5561654, + -1.2811836 + ], + [ + 34.5559948, + -1.2810608 + ], + [ + 34.5559118, + -1.281008 + ], + [ + 34.5558274, + -1.2809626 + ], + [ + 34.5557537, + -1.2809304 + ], + [ + 34.5555063, + -1.2808982 + ], + [ + 34.5553447, + -1.280862 + ], + [ + 34.5551796, + -1.2808238 + ], + [ + 34.5550389, + -1.2807858 + ], + [ + 34.5546385, + -1.2805891 + ], + [ + 34.554489, + -1.2805007 + ], + [ + 34.5543234, + -1.2803981 + ], + [ + 34.5541796, + -1.2802838 + ], + [ + 34.554033, + -1.2801494 + ], + [ + 34.5536006, + -1.2796786 + ], + [ + 34.5534946, + -1.2795631 + ], + [ + 34.5533352, + -1.2793963 + ], + [ + 34.5531521, + -1.2791926 + ], + [ + 34.5527128, + -1.2788383 + ], + [ + 34.5523678, + -1.2786236 + ], + [ + 34.5516096, + -1.2781302 + ], + [ + 34.5510619, + -1.2777837 + ], + [ + 34.5508151, + -1.2776649 + ], + [ + 34.5505549, + -1.2774705 + ], + [ + 34.5499018, + -1.2768484 + ], + [ + 34.5497778, + -1.2766802 + ], + [ + 34.5492261, + -1.2761241 + ], + [ + 34.548727, + -1.2756109 + ], + [ + 34.548209, + -1.2751122 + ], + [ + 34.5479833, + -1.2748902 + ], + [ + 34.5476568, + -1.2745644 + ], + [ + 34.5473349, + -1.2742091 + ], + [ + 34.5471431, + -1.2739677 + ], + [ + 34.5469218, + -1.2736869 + ], + [ + 34.5467288, + -1.2734695 + ], + [ + 34.5467099, + -1.2734482 + ], + [ + 34.5466439, + -1.2733748 + ] + ] + }, + "id": "way/428578599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/428589732", + "highway": "primary", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6164154, + -1.3026261 + ], + [ + 34.6163247, + -1.3023925 + ], + [ + 34.6161322, + -1.3019703 + ], + [ + 34.6159434, + -1.3016026 + ], + [ + 34.6157273, + -1.3011069 + ], + [ + 34.6154799, + -1.3006352 + ], + [ + 34.6153531, + -1.3003614 + ], + [ + 34.6152263, + -1.3001254 + ], + [ + 34.6150594, + -1.2998009 + ], + [ + 34.6148973, + -1.299457 + ], + [ + 34.6148206, + -1.2992242 + ], + [ + 34.6147656, + -1.2990207 + ], + [ + 34.6147254, + -1.2988557 + ], + [ + 34.614712, + -1.2986278 + ], + [ + 34.6147388, + -1.2984428 + ], + [ + 34.6147589, + -1.2983583 + ], + [ + 34.6148125, + -1.298113 + ], + [ + 34.6148357, + -1.2979945 + ], + [ + 34.615008, + -1.2971137 + ], + [ + 34.6150285, + -1.296917 + ], + [ + 34.6150178, + -1.2966998 + ], + [ + 34.614999, + -1.2964987 + ], + [ + 34.6149614, + -1.2963056 + ], + [ + 34.6146721, + -1.2953463 + ], + [ + 34.6145936, + -1.2951362 + ], + [ + 34.6145084, + -1.294946 + ], + [ + 34.6142319, + -1.2943213 + ], + [ + 34.6141514, + -1.2940987 + ], + [ + 34.6140943, + -1.2939164 + ], + [ + 34.6139932, + -1.2935651 + ], + [ + 34.613961, + -1.2934149 + ], + [ + 34.6139423, + -1.2932726 + ], + [ + 34.6139541, + -1.2930498 + ], + [ + 34.6140039, + -1.2927714 + ], + [ + 34.6141326, + -1.2916746 + ], + [ + 34.6141943, + -1.2912751 + ], + [ + 34.6143123, + -1.2904197 + ], + [ + 34.6143284, + -1.2903097 + ], + [ + 34.614476, + -1.2891915 + ], + [ + 34.6144886, + -1.2889526 + ], + [ + 34.6144907, + -1.2888335 + ], + [ + 34.6144786, + -1.2887263 + ], + [ + 34.6144451, + -1.288615 + ], + [ + 34.6144035, + -1.2885203 + ], + [ + 34.6143194, + -1.2883657 + ], + [ + 34.6141782, + -1.2882087 + ], + [ + 34.6140556, + -1.2880838 + ], + [ + 34.6138482, + -1.2878858 + ], + [ + 34.6137785, + -1.2878165 + ], + [ + 34.6136968, + -1.2877366 + ], + [ + 34.6136324, + -1.2876443 + ], + [ + 34.613505, + -1.2874271 + ], + [ + 34.6134219, + -1.2872742 + ], + [ + 34.6133669, + -1.2871764 + ], + [ + 34.6133222, + -1.2871094 + ], + [ + 34.6131805, + -1.2869388 + ], + [ + 34.6131145, + -1.2868644 + ], + [ + 34.6129122, + -1.2866897 + ], + [ + 34.6128036, + -1.2865864 + ], + [ + 34.612691, + -1.2864564 + ], + [ + 34.6125649, + -1.2863089 + ], + [ + 34.6123195, + -1.2859911 + ], + [ + 34.6122229, + -1.2858664 + ], + [ + 34.6121036, + -1.285723 + ], + [ + 34.6120016, + -1.2855902 + ], + [ + 34.6118943, + -1.2854655 + ], + [ + 34.611779, + -1.2853489 + ], + [ + 34.6116744, + -1.2852539 + ], + [ + 34.6116114, + -1.2851813 + ], + [ + 34.6115537, + -1.2851357 + ], + [ + 34.6114625, + -1.2850781 + ], + [ + 34.6113975, + -1.2850372 + ], + [ + 34.611325, + -1.2849916 + ], + [ + 34.6112687, + -1.2849473 + ], + [ + 34.6112175, + -1.2848885 + ], + [ + 34.6111661, + -1.2848099 + ], + [ + 34.6111355, + -1.2847435 + ], + [ + 34.6111053, + -1.2846598 + ], + [ + 34.6110119, + -1.2844331 + ], + [ + 34.6109857, + -1.28435 + ], + [ + 34.6109167, + -1.2841221 + ], + [ + 34.6108858, + -1.2839304 + ], + [ + 34.6107933, + -1.2833592 + ], + [ + 34.6107477, + -1.2830133 + ], + [ + 34.6107155, + -1.2827558 + ], + [ + 34.6106994, + -1.2824582 + ], + [ + 34.6106954, + -1.2821431 + ], + [ + 34.6107128, + -1.2816671 + ], + [ + 34.6107289, + -1.2811282 + ], + [ + 34.6107464, + -1.2805208 + ], + [ + 34.6107584, + -1.2799992 + ], + [ + 34.6107946, + -1.2789668 + ], + [ + 34.6108172, + -1.2785132 + ], + [ + 34.6108536, + -1.2776877 + ], + [ + 34.6108711, + -1.2772087 + ], + [ + 34.6108851, + -1.2769843 + ], + [ + 34.6108978, + -1.2766524 + ], + [ + 34.6108967, + -1.2763507 + ], + [ + 34.6109113, + -1.2761405 + ], + [ + 34.6109274, + -1.2758844 + ], + [ + 34.6109435, + -1.2755546 + ], + [ + 34.6109428, + -1.2750862 + ], + [ + 34.6109487, + -1.2749032 + ], + [ + 34.6109758, + -1.2742567 + ] + ] + }, + "id": "way/428589732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/431258932", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6107293, + -1.7320921 + ], + [ + 34.6107676, + -1.7323059 + ], + [ + 34.6107702, + -1.7324454 + ], + [ + 34.6108242, + -1.7325662 + ] + ] + }, + "id": "way/431258932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/431843904", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9681414, + -1.599707 + ], + [ + 33.9683279, + -1.5997642 + ], + [ + 33.9684311, + -1.5998102 + ], + [ + 33.9685365, + -1.5998734 + ], + [ + 33.970161, + -1.6008807 + ], + [ + 33.9727047, + -1.6022818 + ], + [ + 33.9750833, + -1.6034814 + ], + [ + 33.9755114, + -1.6036698 + ], + [ + 33.9759616, + -1.6038352 + ], + [ + 33.976365, + -1.6039312 + ], + [ + 33.9787427, + -1.604368 + ], + [ + 33.9791324, + -1.6044362 + ], + [ + 33.9801952, + -1.6046175 + ], + [ + 33.9813771, + -1.6048606 + ], + [ + 33.9817268, + -1.6049446 + ], + [ + 33.9819199, + -1.6050197 + ], + [ + 33.9824456, + -1.6052878 + ], + [ + 33.9829135, + -1.6055693 + ], + [ + 33.9836714, + -1.6060064 + ], + [ + 33.9837867, + -1.6060815 + ], + [ + 33.9839124, + -1.6062225 + ], + [ + 33.9850142, + -1.607835 + ], + [ + 33.9858939, + -1.6090128 + ], + [ + 33.9861497, + -1.6092401 + ], + [ + 33.9868089, + -1.6096962 + ], + [ + 33.9873806, + -1.6101252 + ], + [ + 33.9877983, + -1.6103938 + ], + [ + 33.9880122, + -1.6105019 + ], + [ + 33.9882456, + -1.6105891 + ], + [ + 33.9885339, + -1.6106802 + ], + [ + 33.9888297, + -1.610741 + ], + [ + 33.9899954, + -1.6109053 + ], + [ + 33.9903136, + -1.6109926 + ], + [ + 33.990677, + -1.6111561 + ], + [ + 33.9910121, + -1.6113571 + ], + [ + 33.9914575, + -1.6116843 + ], + [ + 33.9919048, + -1.6120892 + ], + [ + 33.9921139, + -1.6123271 + ], + [ + 33.992762, + -1.6130643 + ], + [ + 33.9930208, + -1.6134063 + ], + [ + 33.9932526, + -1.6136945 + ], + [ + 33.9934846, + -1.614033 + ], + [ + 33.9935936, + -1.6141354 + ], + [ + 33.993785, + -1.6142529 + ], + [ + 33.9939347, + -1.6143305 + ], + [ + 33.9946272, + -1.6146899 + ], + [ + 33.994893, + -1.6148248 + ], + [ + 33.9949799, + -1.6148554 + ], + [ + 33.9954388, + -1.6150069 + ], + [ + 33.9961979, + -1.6152293 + ], + [ + 33.9969945, + -1.6154627 + ], + [ + 33.9972179, + -1.6155601 + ], + [ + 33.9972879, + -1.6155906 + ], + [ + 33.9984375, + -1.6160914 + ], + [ + 33.9993435, + -1.6165433 + ], + [ + 33.9996627, + -1.6167068 + ], + [ + 34.0001294, + -1.6168597 + ], + [ + 34.0016133, + -1.6173828 + ], + [ + 34.0022054, + -1.6176238 + ], + [ + 34.0024817, + -1.6177659 + ], + [ + 34.0029518, + -1.6180373 + ], + [ + 34.0033997, + -1.6183755 + ], + [ + 34.0052229, + -1.6197312 + ], + [ + 34.0060008, + -1.6203076 + ], + [ + 34.006843, + -1.6209162 + ], + [ + 34.0079185, + -1.6216696 + ], + [ + 34.0081814, + -1.6218305 + ], + [ + 34.0083906, + -1.6219244 + ], + [ + 34.0093267, + -1.6225517 + ], + [ + 34.0103647, + -1.6231952 + ], + [ + 34.0118721, + -1.6241095 + ], + [ + 34.0121806, + -1.6243025 + ], + [ + 34.0123683, + -1.6243856 + ], + [ + 34.012666, + -1.6245197 + ], + [ + 34.0131891, + -1.6246645 + ], + [ + 34.0136615, + -1.6247467 + ], + [ + 34.0153918, + -1.6250156 + ], + [ + 34.0155099, + -1.6250349 + ], + [ + 34.0162879, + -1.6251621 + ], + [ + 34.0175247, + -1.6253643 + ], + [ + 34.0180627, + -1.6254523 + ], + [ + 34.0196911, + -1.6256981 + ], + [ + 34.0207024, + -1.6258507 + ], + [ + 34.0217627, + -1.6260108 + ], + [ + 34.0219344, + -1.6260367 + ], + [ + 34.0220287, + -1.6260417 + ], + [ + 34.0221515, + -1.6260483 + ], + [ + 34.0226133, + -1.6260729 + ], + [ + 34.0237729, + -1.6261346 + ], + [ + 34.0240594, + -1.6261498 + ], + [ + 34.0248354, + -1.6261911 + ], + [ + 34.025142, + -1.6261934 + ], + [ + 34.0254049, + -1.6261953 + ], + [ + 34.0267713, + -1.6262054 + ], + [ + 34.0278246, + -1.6262131 + ], + [ + 34.0282223, + -1.6262037 + ], + [ + 34.0283924, + -1.6261996 + ], + [ + 34.0289493, + -1.6261864 + ], + [ + 34.029298, + -1.6261781 + ], + [ + 34.0294353, + -1.6261749 + ], + [ + 34.0300087, + -1.6261613 + ], + [ + 34.0309784, + -1.6261383 + ], + [ + 34.0310313, + -1.6261371 + ], + [ + 34.0312919, + -1.6261309 + ], + [ + 34.0328656, + -1.6260036 + ], + [ + 34.0345337, + -1.6257848 + ], + [ + 34.0350274, + -1.6257614 + ], + [ + 34.0356055, + -1.6257786 + ], + [ + 34.0358603, + -1.6258429 + ], + [ + 34.0360882, + -1.6259823 + ], + [ + 34.0375435, + -1.6273483 + ] + ] + }, + "id": "way/431843904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/431843906", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0941615, + -1.6432459 + ], + [ + 34.0948516, + -1.6435771 + ], + [ + 34.0950125, + -1.6436682 + ], + [ + 34.0952325, + -1.6438425 + ], + [ + 34.0959433, + -1.6446281 + ], + [ + 34.0964797, + -1.6453332 + ], + [ + 34.0966433, + -1.6454941 + ], + [ + 34.0968204, + -1.6456522 + ], + [ + 34.0971181, + -1.6458372 + ], + [ + 34.098368, + -1.6464807 + ], + [ + 34.0997909, + -1.6471843 + ], + [ + 34.10079, + -1.6476657 + ], + [ + 34.1015759, + -1.6480277 + ], + [ + 34.1023698, + -1.6483199 + ], + [ + 34.1029331, + -1.6485183 + ], + [ + 34.1034541, + -1.648714 + ], + [ + 34.1035286, + -1.6487405 + ], + [ + 34.1050521, + -1.6492878 + ], + [ + 34.1069392, + -1.6499515 + ], + [ + 34.1072622, + -1.6501243 + ], + [ + 34.1086883, + -1.6509215 + ], + [ + 34.1103098, + -1.6519098 + ], + [ + 34.1104979, + -1.6520221 + ], + [ + 34.1119394, + -1.652883 + ], + [ + 34.1121061, + -1.6529817 + ], + [ + 34.1142037, + -1.6542532 + ], + [ + 34.1155958, + -1.6551004 + ], + [ + 34.1169645, + -1.6559544 + ], + [ + 34.117172, + -1.656098 + ], + [ + 34.1182435, + -1.6568075 + ], + [ + 34.1190881, + -1.6574491 + ], + [ + 34.1201743, + -1.6581703 + ], + [ + 34.1211459, + -1.6587681 + ], + [ + 34.1218741, + -1.6591665 + ], + [ + 34.121999, + -1.6592348 + ], + [ + 34.1221822, + -1.6593351 + ], + [ + 34.1236247, + -1.6601243 + ], + [ + 34.1249023, + -1.6608233 + ], + [ + 34.1260669, + -1.6614605 + ], + [ + 34.1260923, + -1.6614744 + ], + [ + 34.1265597, + -1.6617301 + ], + [ + 34.1282888, + -1.6626282 + ], + [ + 34.1286526, + -1.6628172 + ], + [ + 34.1300828, + -1.6635601 + ], + [ + 34.130673, + -1.6638901 + ], + [ + 34.1316867, + -1.6644567 + ], + [ + 34.1318982, + -1.664575 + ], + [ + 34.1332555, + -1.6655513 + ], + [ + 34.1337433, + -1.665897 + ], + [ + 34.1350213, + -1.6670971 + ], + [ + 34.1353916, + -1.6675487 + ], + [ + 34.1357922, + -1.6681882 + ], + [ + 34.1363191, + -1.6694951 + ] + ] + }, + "id": "way/431843906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/431896925", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R184", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5387807, + -1.5905853 + ], + [ + 34.5386367, + -1.5905265 + ] + ] + }, + "id": "way/431896925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/436853005", + "highway": "secondary", + "ref": "R366", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0799714, + -2.8700088 + ], + [ + 34.0801612, + -2.870034 + ], + [ + 34.0802631, + -2.8700648 + ], + [ + 34.080365, + -2.8701519 + ], + [ + 34.0804683, + -2.8703153 + ], + [ + 34.0820181, + -2.8730631 + ], + [ + 34.0836025, + -2.8757788 + ], + [ + 34.0836993, + -2.8759487 + ], + [ + 34.0842379, + -2.8768944 + ], + [ + 34.0855256, + -2.8791127 + ], + [ + 34.0857027, + -2.8793957 + ], + [ + 34.0859466, + -2.8796982 + ], + [ + 34.0867886, + -2.8806022 + ], + [ + 34.0872056, + -2.8810499 + ], + [ + 34.0880279, + -2.8819026 + ], + [ + 34.0885479, + -2.882386 + ], + [ + 34.0887965, + -2.8826337 + ], + [ + 34.0889994, + -2.8828447 + ], + [ + 34.0891464, + -2.88301 + ], + [ + 34.0897173, + -2.8836673 + ], + [ + 34.0898853, + -2.8838614 + ], + [ + 34.0904268, + -2.884487 + ], + [ + 34.0910638, + -2.8852205 + ], + [ + 34.0911206, + -2.8852873 + ], + [ + 34.0917649, + -2.8860457 + ], + [ + 34.0923575, + -2.8867236 + ], + [ + 34.0930196, + -2.8875183 + ], + [ + 34.09369, + -2.8882712 + ], + [ + 34.0940223, + -2.8886646 + ], + [ + 34.0943355, + -2.8890353 + ], + [ + 34.0949642, + -2.8898244 + ], + [ + 34.0951186, + -2.8900096 + ], + [ + 34.0957126, + -2.8907219 + ], + [ + 34.0963413, + -2.8914693 + ], + [ + 34.097226, + -2.8925112 + ], + [ + 34.097468, + -2.8928029 + ], + [ + 34.0977963, + -2.8931447 + ], + [ + 34.0981746, + -2.8935864 + ], + [ + 34.098261, + -2.8936945 + ], + [ + 34.098681, + -2.8942199 + ], + [ + 34.0986929, + -2.8942341 + ], + [ + 34.099332, + -2.8949979 + ], + [ + 34.0998772, + -2.8956731 + ], + [ + 34.1003947, + -2.8962815 + ], + [ + 34.100837, + -2.8967956 + ], + [ + 34.1013239, + -2.8972818 + ], + [ + 34.1015361, + -2.8974995 + ], + [ + 34.101563, + -2.8975271 + ], + [ + 34.1023587, + -2.8983256 + ], + [ + 34.102972, + -2.898941 + ], + [ + 34.1041455, + -2.9001787 + ], + [ + 34.105213, + -2.9012314 + ], + [ + 34.1057307, + -2.9017752 + ], + [ + 34.1058889, + -2.9019761 + ], + [ + 34.1060311, + -2.9021744 + ], + [ + 34.1072944, + -2.9040109 + ], + [ + 34.1074879, + -2.9042819 + ], + [ + 34.1090279, + -2.906339 + ], + [ + 34.1093537, + -2.9067743 + ], + [ + 34.1101796, + -2.9080265 + ], + [ + 34.1103131, + -2.9082115 + ], + [ + 34.1110888, + -2.9092866 + ], + [ + 34.1111601, + -2.9093854 + ], + [ + 34.1114453, + -2.9098483 + ], + [ + 34.1117602, + -2.9105842 + ], + [ + 34.1120276, + -2.9112547 + ], + [ + 34.1124673, + -2.9124416 + ], + [ + 34.1126468, + -2.913073 + ], + [ + 34.1133229, + -2.9154503 + ], + [ + 34.1134367, + -2.9157982 + ], + [ + 34.1138577, + -2.9172187 + ], + [ + 34.1139139, + -2.9174409 + ], + [ + 34.1140003, + -2.9177825 + ], + [ + 34.1140657, + -2.9183522 + ], + [ + 34.1141073, + -2.9191236 + ], + [ + 34.1142869, + -2.9215712 + ], + [ + 34.1143566, + -2.9221337 + ], + [ + 34.114421, + -2.9224016 + ], + [ + 34.114654, + -2.923058 + ], + [ + 34.1149689, + -2.9237523 + ], + [ + 34.1151251, + -2.9240342 + ], + [ + 34.1156463, + -2.9249748 + ], + [ + 34.1161943, + -2.9258986 + ], + [ + 34.1170367, + -2.9273188 + ], + [ + 34.1186945, + -2.9302563 + ], + [ + 34.119051, + -2.9308022 + ], + [ + 34.1191639, + -2.9310455 + ], + [ + 34.1192649, + -2.9314194 + ], + [ + 34.1193006, + -2.931811 + ], + [ + 34.1193697, + -2.9326423 + ], + [ + 34.1194153, + -2.9329691 + ], + [ + 34.1194394, + -2.933336 + ], + [ + 34.1192362, + -2.9349688 + ], + [ + 34.1190332, + -2.9366652 + ], + [ + 34.1189857, + -2.9368788 + ], + [ + 34.1185519, + -2.9382911 + ], + [ + 34.1182383, + -2.9392635 + ], + [ + 34.1178151, + -2.9405758 + ], + [ + 34.1176487, + -2.9411751 + ], + [ + 34.1176309, + -2.9414363 + ], + [ + 34.1176606, + -2.9416558 + ], + [ + 34.1178355, + -2.9423632 + ], + [ + 34.1179508, + -2.9426525 + ], + [ + 34.1181037, + -2.942907 + ], + [ + 34.1184497, + -2.943365 + ], + [ + 34.118726, + -2.9437052 + ], + [ + 34.11919, + -2.9441874 + ], + [ + 34.1193321, + -2.9443588 + ], + [ + 34.1196567, + -2.9448651 + ], + [ + 34.1198578, + -2.9451463 + ], + [ + 34.1200478, + -2.9454299 + ], + [ + 34.1201785, + -2.9456436 + ], + [ + 34.1203836, + -2.9459821 + ], + [ + 34.1204748, + -2.9462205 + ], + [ + 34.1205096, + -2.9464401 + ], + [ + 34.1206089, + -2.9470268 + ], + [ + 34.1207269, + -2.9473053 + ], + [ + 34.1208797, + -2.94759 + ], + [ + 34.1211668, + -2.9480125 + ], + [ + 34.1213788, + -2.9483377 + ], + [ + 34.1217488, + -2.9488349 + ], + [ + 34.1221055, + -2.9492125 + ], + [ + 34.1221887, + -2.9493385 + ], + [ + 34.1224274, + -2.9495956 + ], + [ + 34.1226527, + -2.9498554 + ], + [ + 34.1228297, + -2.9500375 + ], + [ + 34.1230443, + -2.9502988 + ], + [ + 34.1234024, + -2.9503657 + ], + [ + 34.1237229, + -2.9505385 + ], + [ + 34.1241478, + -2.9507588 + ], + [ + 34.124528, + -2.9509368 + ], + [ + 34.1248727, + -2.9511267 + ], + [ + 34.1251767, + -2.951322 + ], + [ + 34.126271, + -2.9520425 + ], + [ + 34.1266787, + -2.9522662 + ], + [ + 34.126988, + -2.9524203 + ], + [ + 34.1271655, + -2.95251 + ], + [ + 34.1272851, + -2.9525983 + ], + [ + 34.127535, + -2.9527747 + ], + [ + 34.1286637, + -2.9535715 + ], + [ + 34.1295906, + -2.9541887 + ], + [ + 34.1304225, + -2.9548058 + ], + [ + 34.130643, + -2.9550065 + ], + [ + 34.1309783, + -2.9553279 + ], + [ + 34.1313109, + -2.9556118 + ], + [ + 34.1317534, + -2.9560056 + ], + [ + 34.1319197, + -2.9561717 + ], + [ + 34.1323516, + -2.9566565 + ], + [ + 34.1324937, + -2.9568146 + ], + [ + 34.1329068, + -2.9571547 + ], + [ + 34.133395, + -2.9574735 + ], + [ + 34.1337356, + -2.9576664 + ], + [ + 34.1340762, + -2.9578887 + ], + [ + 34.1345376, + -2.9581673 + ], + [ + 34.1346583, + -2.9582583 + ], + [ + 34.1348353, + -2.9584298 + ], + [ + 34.1349748, + -2.9585583 + ], + [ + 34.1351089, + -2.9586548 + ], + [ + 34.1359135, + -2.95907 + ], + [ + 34.1361147, + -2.9592173 + ], + [ + 34.1362971, + -2.9594316 + ], + [ + 34.1364232, + -2.9596137 + ], + [ + 34.136517, + -2.9597557 + ], + [ + 34.1365814, + -2.9598736 + ], + [ + 34.1366458, + -2.9599914 + ], + [ + 34.1364312, + -2.9608727 + ], + [ + 34.1363695, + -2.9612209 + ], + [ + 34.1363645, + -2.9615469 + ], + [ + 34.1363803, + -2.9620379 + ], + [ + 34.1363749, + -2.9624852 + ], + [ + 34.1363481, + -2.9629486 + ], + [ + 34.1362837, + -2.9631147 + ], + [ + 34.1361335, + -2.9632433 + ], + [ + 34.1358331, + -2.9634174 + ], + [ + 34.1357204, + -2.9634602 + ], + [ + 34.1356292, + -2.9635192 + ], + [ + 34.135581, + -2.9636263 + ], + [ + 34.1352805, + -2.9645585 + ], + [ + 34.1352135, + -2.9648397 + ], + [ + 34.1351545, + -2.9653888 + ], + [ + 34.1351357, + -2.9655871 + ], + [ + 34.1351474, + -2.965784 + ], + [ + 34.1352832, + -2.9665433 + ], + [ + 34.1353047, + -2.9667683 + ], + [ + 34.1352537, + -2.967438 + ], + [ + 34.1352269, + -2.9680567 + ], + [ + 34.135243, + -2.968405 + ], + [ + 34.1352913, + -2.9688282 + ], + [ + 34.1353288, + -2.9692916 + ], + [ + 34.1353422, + -2.9697389 + ], + [ + 34.1353074, + -2.9703952 + ], + [ + 34.1352108, + -2.9713675 + ], + [ + 34.1351642, + -2.9718602 + ], + [ + 34.1351642, + -2.9722637 + ], + [ + 34.1351545, + -2.9726961 + ], + [ + 34.1351642, + -2.9731894 + ], + [ + 34.1351303, + -2.9738773 + ], + [ + 34.1350847, + -2.9741318 + ], + [ + 34.1349882, + -2.9743782 + ], + [ + 34.134846, + -2.9745524 + ], + [ + 34.1343901, + -2.9750077 + ], + [ + 34.1340946, + -2.9752545 + ], + [ + 34.1334218, + -2.9757524 + ], + [ + 34.1329868, + -2.9760357 + ], + [ + 34.132675, + -2.9762236 + ], + [ + 34.1322966, + -2.9764381 + ], + [ + 34.1319815, + -2.9766189 + ], + [ + 34.1315375, + -2.9768613 + ], + [ + 34.131205, + -2.9770608 + ], + [ + 34.1307517, + -2.9772791 + ], + [ + 34.1304311, + -2.9774359 + ], + [ + 34.1300355, + -2.9776046 + ], + [ + 34.1297176, + -2.9777439 + ], + [ + 34.1295765, + -2.9778621 + ], + [ + 34.1294494, + -2.977997 + ], + [ + 34.1292268, + -2.9782783 + ], + [ + 34.129082, + -2.9784792 + ], + [ + 34.1288486, + -2.9788703 + ], + [ + 34.1286763, + -2.9792398 + ], + [ + 34.1284712, + -2.9796656 + ], + [ + 34.1283416, + -2.9799176 + ], + [ + 34.1281029, + -2.98048 + ], + [ + 34.1278777, + -2.9809461 + ], + [ + 34.1277836, + -2.9811236 + ], + [ + 34.1275129, + -2.9816345 + ], + [ + 34.127256, + -2.9821761 + ], + [ + 34.126963, + -2.9829123 + ], + [ + 34.1267806, + -2.9835283 + ], + [ + 34.1266277, + -2.9840265 + ], + [ + 34.1264963, + -2.9844095 + ], + [ + 34.1264614, + -2.984522 + ], + [ + 34.126448, + -2.9846453 + ], + [ + 34.1264668, + -2.9847604 + ], + [ + 34.1265258, + -2.9848622 + ], + [ + 34.1266546, + -2.9850176 + ], + [ + 34.1271239, + -2.985722 + ], + [ + 34.1272178, + -2.9859417 + ], + [ + 34.1272527, + -2.9861319 + ], + [ + 34.1272473, + -2.9863167 + ], + [ + 34.1271588, + -2.9868872 + ], + [ + 34.1270623, + -2.9875836 + ], + [ + 34.1269818, + -2.988189 + ], + [ + 34.126853, + -2.9889792 + ], + [ + 34.1267645, + -2.9893274 + ], + [ + 34.1266787, + -2.989539 + ], + [ + 34.1265127, + -2.9898282 + ], + [ + 34.1259676, + -2.9908182 + ], + [ + 34.1257958, + -2.9913561 + ], + [ + 34.1257341, + -2.991555 + ], + [ + 34.1256015, + -2.9920639 + ], + [ + 34.1255501, + -2.9922611 + ], + [ + 34.1254583, + -2.9926916 + ], + [ + 34.1253939, + -2.9929675 + ], + [ + 34.1253454, + -2.9931806 + ], + [ + 34.125319, + -2.9935032 + ], + [ + 34.1253519, + -2.9939459 + ], + [ + 34.1253604, + -2.9941813 + ], + [ + 34.1253161, + -2.9943925 + ], + [ + 34.1251571, + -2.9947112 + ], + [ + 34.1250656, + -2.9950417 + ], + [ + 34.1250337, + -2.9953103 + ], + [ + 34.1250803, + -2.9959648 + ], + [ + 34.1252332, + -2.9978262 + ], + [ + 34.1252665, + -2.9981318 + ], + [ + 34.1252424, + -2.9983956 + ], + [ + 34.1252196, + -2.9987492 + ], + [ + 34.1252102, + -2.9991175 + ], + [ + 34.1252437, + -2.9994001 + ], + [ + 34.1252853, + -2.9996813 + ], + [ + 34.1253135, + -2.999838 + ], + [ + 34.1253591, + -2.9999733 + ], + [ + 34.1254221, + -3.0000878 + ], + [ + 34.1256648, + -3.0004808 + ], + [ + 34.1257399, + -3.0006442 + ], + [ + 34.1257721, + -3.000888 + ], + [ + 34.125807, + -3.0013701 + ], + [ + 34.1258177, + -3.0018362 + ], + [ + 34.1258258, + -3.0023505 + ], + [ + 34.125807, + -3.002629 + ], + [ + 34.1257265, + -3.0030335 + ], + [ + 34.1256916, + -3.0032879 + ], + [ + 34.125638, + -3.0036603 + ], + [ + 34.1255619, + -3.0040813 + ], + [ + 34.1254771, + -3.0044477 + ], + [ + 34.1254047, + -3.0047879 + ], + [ + 34.1253912, + -3.0049701 + ], + [ + 34.1253993, + -3.0050986 + ], + [ + 34.1254744, + -3.0056343 + ], + [ + 34.1254824, + -3.0057816 + ], + [ + 34.1254261, + -3.0066173 + ], + [ + 34.1254127, + -3.0069039 + ], + [ + 34.1253805, + -3.0070834 + ], + [ + 34.1253188, + -3.0072468 + ], + [ + 34.1250533, + -3.0076379 + ], + [ + 34.1249862, + -3.0077584 + ], + [ + 34.1249594, + -3.0079004 + ], + [ + 34.1249202, + -3.0084486 + ], + [ + 34.1248846, + -3.0088877 + ], + [ + 34.1247331, + -3.0105319 + ], + [ + 34.1247185, + -3.0109278 + ], + [ + 34.124722, + -3.0116114 + ], + [ + 34.1247221, + -3.0117034 + ], + [ + 34.1247379, + -3.0117634 + ], + [ + 34.1252188, + -3.0125188 + ], + [ + 34.1256731, + -3.0131855 + ], + [ + 34.1258586, + -3.0134466 + ], + [ + 34.1258967, + -3.0135074 + ], + [ + 34.1262742, + -3.0139366 + ], + [ + 34.1265239, + -3.0142266 + ], + [ + 34.1271298, + -3.0151072 + ], + [ + 34.1275158, + -3.0156322 + ], + [ + 34.1277212, + -3.0158577 + ], + [ + 34.1279881, + -3.0160956 + ], + [ + 34.1281729, + -3.0163007 + ], + [ + 34.1283742, + -3.0166123 + ], + [ + 34.1285097, + -3.0169404 + ], + [ + 34.1286535, + -3.0174014 + ], + [ + 34.1288481, + -3.017993 + ], + [ + 34.1289379, + -3.0181904 + ], + [ + 34.1290656, + -3.0183463 + ], + [ + 34.1295144, + -3.0186961 + ] + ] + }, + "id": "way/436853005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268428", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8370254, + -3.1728175 + ], + [ + 33.8371235, + -3.1728104 + ] + ] + }, + "id": "way/437268428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268429", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8286563, + -3.1740516 + ], + [ + 33.8287481, + -3.1740417 + ] + ] + }, + "id": "way/437268429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268430", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9485524, + -2.9462728 + ], + [ + 33.948476, + -2.9464565 + ], + [ + 33.9483849, + -2.9466881 + ] + ] + }, + "id": "way/437268430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268431", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9483849, + -2.9466881 + ], + [ + 33.9481671, + -2.9471746 + ], + [ + 33.9480482, + -2.9475721 + ], + [ + 33.9479413, + -2.948035 + ], + [ + 33.9478581, + -2.9486996 + ], + [ + 33.9478403, + -2.9494533 + ], + [ + 33.9478165, + -2.9497796 + ], + [ + 33.9477749, + -2.9501298 + ], + [ + 33.9477214, + -2.9504205 + ], + [ + 33.9474813, + -2.9511889 + ], + [ + 33.9472876, + -2.9516845 + ], + [ + 33.9468441, + -2.9526143 + ], + [ + 33.9465687, + -2.9531917 + ], + [ + 33.946361, + -2.9536601 + ], + [ + 33.9461514, + -2.9541329 + ], + [ + 33.9460139, + -2.95445 + ], + [ + 33.9454813, + -2.9557612 + ], + [ + 33.9451696, + -2.9566404 + ], + [ + 33.9451426, + -2.9567166 + ], + [ + 33.9447929, + -2.9580102 + ], + [ + 33.9446197, + -2.9586511 + ], + [ + 33.9445331, + -2.958942 + ], + [ + 33.9444236, + -2.9593098 + ], + [ + 33.9443485, + -2.959509 + ], + [ + 33.9440051, + -2.9604201 + ], + [ + 33.9438175, + -2.9609179 + ], + [ + 33.9432055, + -2.9626091 + ], + [ + 33.9431336, + -2.9628084 + ], + [ + 33.9426767, + -2.9640748 + ], + [ + 33.9423142, + -2.9651429 + ], + [ + 33.9419157, + -2.966204 + ], + [ + 33.9414344, + -2.9673018 + ], + [ + 33.9412387, + -2.967748 + ], + [ + 33.9409713, + -2.9684126 + ], + [ + 33.9407515, + -2.9688636 + ], + [ + 33.9403712, + -2.9697477 + ], + [ + 33.9395544, + -2.9716005 + ], + [ + 33.9392352, + -2.9723827 + ], + [ + 33.9386302, + -2.9740617 + ], + [ + 33.9385648, + -2.9742717 + ], + [ + 33.9385123, + -2.9744402 + ], + [ + 33.9384638, + -2.9745958 + ], + [ + 33.9379231, + -2.9761149 + ], + [ + 33.9375963, + -2.9768804 + ], + [ + 33.9374106, + -2.977268 + ], + [ + 33.93673, + -2.9782676 + ], + [ + 33.9361258, + -2.9790122 + ], + [ + 33.9348525, + -2.9805738 + ], + [ + 33.9339513, + -2.9816613 + ], + [ + 33.9336616, + -2.9820202 + ], + [ + 33.9313924, + -2.9848408 + ], + [ + 33.9311671, + -2.9851086 + ], + [ + 33.9303132, + -2.9861633 + ], + [ + 33.9296889, + -2.986926 + ], + [ + 33.929456, + -2.9872106 + ], + [ + 33.9286524, + -2.9881924 + ], + [ + 33.9285712, + -2.9882916 + ], + [ + 33.9274439, + -2.989669 + ], + [ + 33.9262496, + -2.9911283 + ], + [ + 33.9257933, + -2.9916858 + ], + [ + 33.9251474, + -2.9924749 + ], + [ + 33.924837, + -2.9928542 + ], + [ + 33.9245638, + -2.993188 + ], + [ + 33.9243637, + -2.9934949 + ], + [ + 33.923696, + -2.9945187 + ], + [ + 33.9234715, + -2.994863 + ], + [ + 33.9229891, + -2.995713 + ], + [ + 33.9223963, + -2.9970148 + ], + [ + 33.922212, + -2.9973987 + ], + [ + 33.9192007, + -3.0035428 + ], + [ + 33.9188158, + -3.0044326 + ], + [ + 33.9182047, + -3.0058455 + ], + [ + 33.9169503, + -3.0091723 + ], + [ + 33.9167743, + -3.0096389 + ], + [ + 33.9165788, + -3.0101574 + ], + [ + 33.9164336, + -3.0105426 + ], + [ + 33.9164108, + -3.010603 + ], + [ + 33.9162494, + -3.0110125 + ], + [ + 33.9160589, + -3.0114958 + ], + [ + 33.9157809, + -3.0122011 + ], + [ + 33.9156818, + -3.0124525 + ], + [ + 33.9151946, + -3.0138681 + ], + [ + 33.9147949, + -3.014843 + ], + [ + 33.9144853, + -3.0153985 + ], + [ + 33.9138367, + -3.0164643 + ], + [ + 33.9116915, + -3.0199894 + ], + [ + 33.9112561, + -3.0205666 + ], + [ + 33.9104658, + -3.0213839 + ], + [ + 33.9095157, + -3.0222351 + ], + [ + 33.9090243, + -3.0227062 + ], + [ + 33.9087252, + -3.0229997 + ], + [ + 33.9084047, + -3.0233137 + ], + [ + 33.9082114, + -3.0235079 + ], + [ + 33.9081216, + -3.0236258 + ], + [ + 33.9080438, + -3.0237884 + ], + [ + 33.9079231, + -3.024116 + ], + [ + 33.9075543, + -3.0251816 + ], + [ + 33.9074796, + -3.0254114 + ], + [ + 33.9065643, + -3.0282274 + ], + [ + 33.9060925, + -3.029679 + ], + [ + 33.9056648, + -3.0309765 + ], + [ + 33.905483, + -3.0317302 + ], + [ + 33.9054126, + -3.032022 + ], + [ + 33.9053676, + -3.0322085 + ], + [ + 33.9053299, + -3.0327622 + ], + [ + 33.9052965, + -3.0333758 + ], + [ + 33.9053208, + -3.0337453 + ], + [ + 33.9053472, + -3.0347581 + ], + [ + 33.9053741, + -3.0357913 + ], + [ + 33.9053795, + -3.0359993 + ], + [ + 33.905411, + -3.037209 + ], + [ + 33.9054331, + -3.0380554 + ], + [ + 33.9054509, + -3.0387389 + ], + [ + 33.905465, + -3.0392789 + ], + [ + 33.9055035, + -3.04073 + ], + [ + 33.9056092, + -3.0447177 + ], + [ + 33.9055896, + -3.0455435 + ], + [ + 33.9054331, + -3.0464292 + ], + [ + 33.9051055, + -3.0475191 + ], + [ + 33.9050309, + -3.0477268 + ], + [ + 33.9048512, + -3.0482274 + ], + [ + 33.9048011, + -3.0483669 + ], + [ + 33.9043706, + -3.0492502 + ], + [ + 33.9037119, + -3.0506016 + ], + [ + 33.9030197, + -3.0520216 + ], + [ + 33.9021351, + -3.0538366 + ], + [ + 33.9019146, + -3.0542889 + ], + [ + 33.9015257, + -3.0550867 + ], + [ + 33.9006632, + -3.0568563 + ], + [ + 33.9005026, + -3.0571864 + ], + [ + 33.9002654, + -3.0576739 + ], + [ + 33.8987484, + -3.0607914 + ], + [ + 33.8982882, + -3.0617626 + ], + [ + 33.8980201, + -3.0623283 + ], + [ + 33.8975625, + -3.0632939 + ], + [ + 33.897182, + -3.0640969 + ], + [ + 33.8969963, + -3.0644887 + ], + [ + 33.8967407, + -3.0650014 + ], + [ + 33.8965837, + -3.065278 + ], + [ + 33.8965015, + -3.0654226 + ], + [ + 33.8961306, + -3.0659667 + ], + [ + 33.8959632, + -3.0662122 + ], + [ + 33.8956343, + -3.0665407 + ], + [ + 33.8949856, + -3.0671885 + ], + [ + 33.8929417, + -3.0692297 + ], + [ + 33.8928998, + -3.0692715 + ], + [ + 33.8919774, + -3.0702463 + ], + [ + 33.8913336, + -3.0708784 + ], + [ + 33.8911191, + -3.0710364 + ], + [ + 33.8909229, + -3.0712031 + ], + [ + 33.8904397, + -3.0714971 + ], + [ + 33.8883174, + -3.0727883 + ], + [ + 33.8859491, + -3.0742291 + ], + [ + 33.8843906, + -3.0751772 + ], + [ + 33.883561, + -3.0756818 + ], + [ + 33.8829509, + -3.076053 + ], + [ + 33.8824743, + -3.0763476 + ], + [ + 33.8817796, + -3.0767815 + ], + [ + 33.8811547, + -3.0772074 + ], + [ + 33.8808489, + -3.0774323 + ], + [ + 33.8805243, + -3.0777511 + ], + [ + 33.8802588, + -3.0780537 + ], + [ + 33.8799664, + -3.0784314 + ], + [ + 33.8797545, + -3.0787688 + ], + [ + 33.87921, + -3.0797563 + ], + [ + 33.8788884, + -3.0803324 + ] + ] + }, + "id": "way/437268431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268455", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8371235, + -3.1728104 + ], + [ + 33.8375044, + -3.172793 + ], + [ + 33.8377592, + -3.1727904 + ], + [ + 33.8382232, + -3.1728305 + ], + [ + 33.8390279, + -3.1729109 + ], + [ + 33.8398755, + -3.1729885 + ], + [ + 33.8410959, + -3.173093 + ], + [ + 33.8421607, + -3.1731894 + ], + [ + 33.8436654, + -3.1732992 + ], + [ + 33.8459299, + -3.1734481 + ], + [ + 33.8470638, + -3.1735242 + ], + [ + 33.8475211, + -3.1735133 + ], + [ + 33.8477719, + -3.173476 + ], + [ + 33.8489374, + -3.1732759 + ], + [ + 33.8499633, + -3.1731039 + ], + [ + 33.8500896, + -3.1730672 + ], + [ + 33.8503633, + -3.1729875 + ], + [ + 33.8503911, + -3.1729794 + ], + [ + 33.8505056, + -3.1729357 + ], + [ + 33.8506846, + -3.1728675 + ], + [ + 33.8511906, + -3.1726746 + ], + [ + 33.8514963, + -3.1725581 + ], + [ + 33.8517737, + -3.1724663 + ], + [ + 33.8524309, + -3.1722039 + ], + [ + 33.8526535, + -3.1721396 + ], + [ + 33.8530746, + -3.1720673 + ], + [ + 33.8552761, + -3.1718536 + ], + [ + 33.8558102, + -3.1717987 + ], + [ + 33.85676, + -3.1716816 + ], + [ + 33.857519, + -3.1715745 + ], + [ + 33.8580028, + -3.1714487 + ], + [ + 33.859512, + -3.1710393 + ], + [ + 33.8601053, + -3.1708686 + ], + [ + 33.8610086, + -3.1706023 + ], + [ + 33.8615423, + -3.1704122 + ], + [ + 33.8624355, + -3.1699275 + ], + [ + 33.8632821, + -3.1694273 + ], + [ + 33.8637255, + -3.1691757 + ], + [ + 33.8641111, + -3.1689569 + ], + [ + 33.8641937, + -3.168904 + ], + [ + 33.8650559, + -3.1683517 + ], + [ + 33.8653946, + -3.1680195 + ], + [ + 33.8656944, + -3.1676055 + ], + [ + 33.8659626, + -3.1671235 + ], + [ + 33.866476, + -3.165937 + ], + [ + 33.8672018, + -3.1643195 + ], + [ + 33.8674137, + -3.1639499 + ], + [ + 33.8676739, + -3.1636259 + ], + [ + 33.8682613, + -3.1629162 + ], + [ + 33.8687575, + -3.1622841 + ], + [ + 33.8692564, + -3.1616655 + ], + [ + 33.8698332, + -3.1609533 + ], + [ + 33.8703799, + -3.160366 + ], + [ + 33.870628, + -3.1601108 + ], + [ + 33.8709179, + -3.1598128 + ], + [ + 33.8713782, + -3.1593396 + ], + [ + 33.8715021, + -3.1592198 + ], + [ + 33.8715218, + -3.1592008 + ], + [ + 33.871553, + -3.1591707 + ], + [ + 33.8721275, + -3.1586155 + ], + [ + 33.8724834, + -3.1582717 + ], + [ + 33.8727336, + -3.1580536 + ], + [ + 33.8732717, + -3.1575843 + ], + [ + 33.8733271, + -3.157536 + ], + [ + 33.8734361, + -3.1574477 + ], + [ + 33.8736152, + -3.1573027 + ], + [ + 33.8741279, + -3.1568876 + ], + [ + 33.8745215, + -3.1565689 + ], + [ + 33.8750015, + -3.1561999 + ] + ] + }, + "id": "way/437268455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268466", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8018925, + -3.1730299 + ], + [ + 33.8019679, + -3.1730781 + ], + [ + 33.8024011, + -3.1734133 + ], + [ + 33.8030669, + -3.1740498 + ], + [ + 33.8036193, + -3.1745451 + ], + [ + 33.8040015, + -3.1748921 + ], + [ + 33.804307, + -3.1751657 + ], + [ + 33.8044952, + -3.1753169 + ], + [ + 33.8045699, + -3.175381 + ], + [ + 33.8049587, + -3.1757144 + ], + [ + 33.8051845, + -3.1759517 + ], + [ + 33.8053434, + -3.1761444 + ], + [ + 33.8056459, + -3.176489 + ], + [ + 33.8057956, + -3.1765884 + ], + [ + 33.806085, + -3.1766147 + ], + [ + 33.8063237, + -3.1766013 + ], + [ + 33.8067877, + -3.1764888 + ], + [ + 33.8070774, + -3.1764111 + ], + [ + 33.8072839, + -3.176387 + ], + [ + 33.8075495, + -3.1763844 + ], + [ + 33.8079008, + -3.1764058 + ], + [ + 33.80822, + -3.1764486 + ], + [ + 33.8094152, + -3.1766755 + ], + [ + 33.8097175, + -3.1767405 + ], + [ + 33.8098846, + -3.1767764 + ], + [ + 33.8100893, + -3.176805 + ], + [ + 33.8105225, + -3.1768721 + ], + [ + 33.8110555, + -3.176918 + ], + [ + 33.8114597, + -3.1769414 + ], + [ + 33.8118581, + -3.176935 + ], + [ + 33.8124187, + -3.1769288 + ], + [ + 33.8129822, + -3.1769114 + ], + [ + 33.8133725, + -3.176901 + ], + [ + 33.813653, + -3.176887 + ], + [ + 33.8139314, + -3.1768732 + ], + [ + 33.8149234, + -3.1768238 + ], + [ + 33.8159726, + -3.1766986 + ], + [ + 33.8166948, + -3.1765978 + ], + [ + 33.8172908, + -3.1765236 + ], + [ + 33.8178588, + -3.1764401 + ], + [ + 33.8183863, + -3.1763733 + ], + [ + 33.8191813, + -3.1762086 + ], + [ + 33.8208151, + -3.1758701 + ], + [ + 33.8212516, + -3.1757797 + ], + [ + 33.8233967, + -3.1752457 + ], + [ + 33.8236259, + -3.1751905 + ], + [ + 33.8263023, + -3.1745456 + ], + [ + 33.8273485, + -3.174276 + ], + [ + 33.8279616, + -3.1741512 + ], + [ + 33.8285189, + -3.1740725 + ], + [ + 33.8286563, + -3.1740516 + ] + ] + }, + "id": "way/437268466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437268480", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8287481, + -3.1740417 + ], + [ + 33.8294208, + -3.1739682 + ], + [ + 33.8302412, + -3.1739336 + ], + [ + 33.8309404, + -3.1738833 + ], + [ + 33.8324905, + -3.1736246 + ], + [ + 33.8366567, + -3.1728636 + ], + [ + 33.8370254, + -3.1728175 + ] + ] + }, + "id": "way/437268480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437284725", + "highway": "trunk", + "ref": "T36", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.785413, + -3.1818807 + ], + [ + 33.7855299, + -3.1819354 + ] + ] + }, + "id": "way/437284725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437417507", + "highway": "trunk", + "ref": "T36", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7568852, + -3.1868422 + ], + [ + 33.7570753, + -3.1868353 + ], + [ + 33.7572067, + -3.1868326 + ], + [ + 33.7576052, + -3.1868066 + ], + [ + 33.7577377, + -3.186779 + ], + [ + 33.7578504, + -3.1867764 + ], + [ + 33.7581937, + -3.1867415 + ], + [ + 33.7586872, + -3.1866772 + ], + [ + 33.7592103, + -3.1865889 + ], + [ + 33.7593272, + -3.1865642 + ], + [ + 33.7594991, + -3.1865279 + ], + [ + 33.7598835, + -3.1864469 + ], + [ + 33.7607096, + -3.1862863 + ], + [ + 33.7609629, + -3.1862313 + ], + [ + 33.7615116, + -3.1861122 + ], + [ + 33.7623914, + -3.1859086 + ], + [ + 33.7630914, + -3.1857051 + ], + [ + 33.763516, + -3.1855803 + ], + [ + 33.7638934, + -3.1854694 + ], + [ + 33.764454, + -3.1853007 + ], + [ + 33.7645586, + -3.1852659 + ], + [ + 33.7646879, + -3.1852442 + ], + [ + 33.7648295, + -3.1852204 + ], + [ + 33.7649288, + -3.1852104 + ], + [ + 33.7656021, + -3.1851426 + ], + [ + 33.7663631, + -3.1850661 + ], + [ + 33.7667335, + -3.1850288 + ], + [ + 33.7672303, + -3.1849561 + ], + [ + 33.7679398, + -3.1848522 + ], + [ + 33.7690131, + -3.1846951 + ], + [ + 33.7691842, + -3.1846701 + ], + [ + 33.7701148, + -3.1845153 + ] + ] + }, + "id": "way/437417507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/437417509", + "highway": "trunk", + "ref": "T36", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7568852, + -3.1868422 + ], + [ + 33.7555307, + -3.1869279 + ], + [ + 33.7547234, + -3.1869681 + ], + [ + 33.7537819, + -3.1869895 + ], + [ + 33.7526884, + -3.1870346 + ], + [ + 33.7522745, + -3.1870351 + ], + [ + 33.7517005, + -3.1870618 + ], + [ + 33.7510836, + -3.1871074 + ], + [ + 33.7504452, + -3.1871288 + ], + [ + 33.7494341, + -3.1871877 + ], + [ + 33.748852, + -3.1871931 + ], + [ + 33.7476584, + -3.18726 + ], + [ + 33.7466446, + -3.1873055 + ], + [ + 33.7454268, + -3.1873645 + ], + [ + 33.7447187, + -3.1873832 + ], + [ + 33.7442225, + -3.1874127 + ], + [ + 33.74378, + -3.1874475 + ], + [ + 33.7431818, + -3.1874796 + ], + [ + 33.7419856, + -3.1876242 + ], + [ + 33.7410736, + -3.1877822 + ], + [ + 33.7400356, + -3.1879456 + ], + [ + 33.7392256, + -3.188109 + ], + [ + 33.7379569, + -3.1883553 + ], + [ + 33.7372327, + -3.1884785 + ], + [ + 33.7364712, + -3.1885687 + ], + [ + 33.7358808, + -3.1885803 + ], + [ + 33.7352478, + -3.1885857 + ], + [ + 33.7345156, + -3.1885562 + ], + [ + 33.7339631, + -3.188508 + ], + [ + 33.7330921, + -3.1883429 + ], + [ + 33.7325456, + -3.1882651 + ], + [ + 33.7321949, + -3.1882152 + ], + [ + 33.7317141, + -3.1881468 + ], + [ + 33.7315695, + -3.1881395 + ], + [ + 33.7308015, + -3.1880656 + ], + [ + 33.7304413, + -3.1880608 + ], + [ + 33.7298476, + -3.188071 + ], + [ + 33.7292799, + -3.1880902 + ], + [ + 33.7288588, + -3.188125 + ], + [ + 33.7284329, + -3.1881788 + ], + [ + 33.7280488, + -3.1882589 + ], + [ + 33.7277227, + -3.1883311 + ], + [ + 33.7274738, + -3.1883975 + ], + [ + 33.7267979, + -3.1885537 + ], + [ + 33.7263556, + -3.1886502 + ], + [ + 33.7258708, + -3.1887597 + ], + [ + 33.7253132, + -3.1889115 + ], + [ + 33.7241859, + -3.1892305 + ], + [ + 33.7237487, + -3.1893764 + ], + [ + 33.7223323, + -3.1897527 + ], + [ + 33.7221513, + -3.1897838 + ], + [ + 33.7219551, + -3.189829 + ] + ] + }, + "id": "way/437417509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438389149", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.7522, + -2.34086 + ], + [ + 34.7510839, + -2.3405384 + ], + [ + 34.7498179, + -2.3401739 + ], + [ + 34.7484875, + -2.3396968 + ], + [ + 34.7465026, + -2.3392236 + ], + [ + 34.744888, + -2.3387749 + ], + [ + 34.7415406, + -2.3379656 + ], + [ + 34.7412012, + -2.3378961 + ], + [ + 34.7397596, + -2.3376011 + ], + [ + 34.7385013, + -2.3371408 + ], + [ + 34.7380644, + -2.3368668 + ], + [ + 34.7375065, + -2.3365023 + ], + [ + 34.7368923, + -2.3358591 + ], + [ + 34.7358583, + -2.3346076 + ], + [ + 34.7351971, + -2.3336937 + ], + [ + 34.7342476, + -2.3324877 + ], + [ + 34.7331909, + -2.3312924 + ], + [ + 34.7323017, + -2.3302955 + ], + [ + 34.7321555, + -2.3301347 + ], + [ + 34.7315185, + -2.3293896 + ], + [ + 34.72948, + -2.3270956 + ], + [ + 34.7280155, + -2.3253053 + ], + [ + 34.7265135, + -2.3231881 + ], + [ + 34.724416, + -2.3201919 + ], + [ + 34.7239552, + -2.3195494 + ], + [ + 34.7222059, + -2.3171099 + ], + [ + 34.7211276, + -2.3158663 + ], + [ + 34.7205536, + -2.315266 + ], + [ + 34.7200906, + -2.3148647 + ], + [ + 34.7194979, + -2.3144412 + ], + [ + 34.7191358, + -2.3142376 + ], + [ + 34.7187254, + -2.3140473 + ], + [ + 34.7181916, + -2.3138838 + ], + [ + 34.7151409, + -2.3130684 + ], + [ + 34.7131776, + -2.3125806 + ], + [ + 34.7128674, + -2.3124741 + ], + [ + 34.712566, + -2.3123126 + ], + [ + 34.7118536, + -2.3117987 + ], + [ + 34.7108477, + -2.3109545 + ], + [ + 34.7093474, + -2.3096916 + ], + [ + 34.7085105, + -2.3089197 + ], + [ + 34.7072606, + -2.3076762 + ], + [ + 34.7064613, + -2.3068346 + ], + [ + 34.7061941, + -2.3065352 + ], + [ + 34.7059195, + -2.3061485 + ], + [ + 34.705603, + -2.3054464 + ], + [ + 34.7038864, + -2.3010833 + ], + [ + 34.7029637, + -2.2992984 + ], + [ + 34.7024524, + -2.298554 + ], + [ + 34.7018747, + -2.2978458 + ], + [ + 34.7009094, + -2.2969048 + ], + [ + 34.6997234, + -2.2959775 + ], + [ + 34.6974437, + -2.2944582 + ], + [ + 34.6964513, + -2.2938203 + ], + [ + 34.694842, + -2.2927108 + ], + [ + 34.6935501, + -2.2917653 + ], + [ + 34.6931575, + -2.291478 + ], + [ + 34.6911781, + -2.2900361 + ], + [ + 34.6899652, + -2.2892989 + ], + [ + 34.6890065, + -2.2886311 + ], + [ + 34.6886461, + -2.2884173 + ], + [ + 34.6857047, + -2.2868796 + ], + [ + 34.6852675, + -2.2866224 + ], + [ + 34.6847901, + -2.2862525 + ], + [ + 34.684487, + -2.2859925 + ], + [ + 34.6828793, + -2.2846009 + ], + [ + 34.6814202, + -2.283486 + ], + [ + 34.680299, + -2.2825426 + ], + [ + 34.6795718, + -2.2818371 + ], + [ + 34.6794515, + -2.281685 + ], + [ + 34.6792352, + -2.2813319 + ], + [ + 34.6789472, + -2.280763 + ], + [ + 34.6782445, + -2.2793265 + ], + [ + 34.6777992, + -2.2784206 + ], + [ + 34.6774291, + -2.2778364 + ], + [ + 34.6770197, + -2.2773841 + ], + [ + 34.6765879, + -2.2770143 + ], + [ + 34.6755901, + -2.2763094 + ], + [ + 34.6744035, + -2.2755529 + ], + [ + 34.6738574, + -2.2751864 + ], + [ + 34.6736364, + -2.2750008 + ], + [ + 34.6733075, + -2.2746799 + ], + [ + 34.6728961, + -2.2741646 + ], + [ + 34.6723758, + -2.2734464 + ], + [ + 34.671893, + -2.2728353 + ], + [ + 34.6716607, + -2.272576 + ], + [ + 34.671371, + -2.2722893 + ], + [ + 34.6711805, + -2.272166 + ], + [ + 34.6704708, + -2.2719055 + ], + [ + 34.6697956, + -2.2716862 + ], + [ + 34.6695499, + -2.2715606 + ], + [ + 34.6693804, + -2.2714612 + ], + [ + 34.6692541, + -2.2713303 + ], + [ + 34.6690831, + -2.2711314 + ], + [ + 34.6689677, + -2.2708956 + ], + [ + 34.668906, + -2.2706571 + ], + [ + 34.6687666, + -2.2693385 + ], + [ + 34.6686593, + -2.2688145 + ], + [ + 34.6685573, + -2.2684111 + ], + [ + 34.6681781, + -2.2673572 + ], + [ + 34.6672608, + -2.2647146 + ], + [ + 34.6667837, + -2.2635164 + ], + [ + 34.6661182, + -2.2621363 + ], + [ + 34.6656783, + -2.2613323 + ], + [ + 34.6653779, + -2.2608445 + ], + [ + 34.6648039, + -2.2599869 + ], + [ + 34.6640904, + -2.2592203 + ], + [ + 34.6629837, + -2.257948 + ], + [ + 34.6627155, + -2.2577228 + ], + [ + 34.6623577, + -2.257489 + ], + [ + 34.6621039, + -2.2572753 + ], + [ + 34.6619001, + -2.2570662 + ], + [ + 34.6614941, + -2.2565241 + ], + [ + 34.6613368, + -2.2563386 + ], + [ + 34.6611239, + -2.2562079 + ], + [ + 34.6604584, + -2.2559459 + ], + [ + 34.6603002, + -2.2558186 + ], + [ + 34.6601687, + -2.2556524 + ], + [ + 34.6600028, + -2.255302 + ], + [ + 34.6593681, + -2.2537026 + ], + [ + 34.6592045, + -2.2533301 + ], + [ + 34.658431, + -2.2520858 + ], + [ + 34.6580699, + -2.2515559 + ], + [ + 34.6577695, + -2.2511914 + ], + [ + 34.6574386, + -2.2508422 + ], + [ + 34.6567734, + -2.250258 + ], + [ + 34.6561173, + -2.2498352 + ], + [ + 34.6557971, + -2.2495933 + ], + [ + 34.6550085, + -2.2487893 + ], + [ + 34.6547091, + -2.2485219 + ], + [ + 34.6542665, + -2.2482593 + ], + [ + 34.6534206, + -2.2479316 + ], + [ + 34.6520259, + -2.2475296 + ], + [ + 34.6511354, + -2.2473581 + ], + [ + 34.6502084, + -2.2472676 + ], + [ + 34.6494922, + -2.2472489 + ], + [ + 34.6484639, + -2.247283 + ], + [ + 34.6476039, + -2.2473185 + ], + [ + 34.6474119, + -2.2473324 + ], + [ + 34.6470112, + -2.2473614 + ], + [ + 34.6463362, + -2.2474971 + ], + [ + 34.6459034, + -2.2476857 + ], + [ + 34.6454424, + -2.247933 + ], + [ + 34.6449003, + -2.2483343 + ], + [ + 34.6441841, + -2.2489213 + ], + [ + 34.6432089, + -2.2498383 + ], + [ + 34.6413855, + -2.2514106 + ], + [ + 34.6408823, + -2.2517863 + ], + [ + 34.6404532, + -2.2520436 + ], + [ + 34.6400025, + -2.2521991 + ], + [ + 34.6388777, + -2.2523538 + ], + [ + 34.6378201, + -2.2525826 + ], + [ + 34.6366836, + -2.2528738 + ], + [ + 34.6350368, + -2.2532651 + ], + [ + 34.6333094, + -2.253651 + ], + [ + 34.632723, + -2.2538018 + ] + ] + }, + "id": "way/438389149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438748539", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "highway": "secondary", + "horse": "no", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5532335, + -2.2750372 + ], + [ + 34.5529844, + -2.2754182 + ], + [ + 34.5527476, + -2.2756623 + ], + [ + 34.5525513, + -2.2757911 + ], + [ + 34.5523166, + -2.2758905 + ], + [ + 34.5518977, + -2.275943 + ], + [ + 34.5513739, + -2.2759407 + ], + [ + 34.5507663, + -2.2758724 + ], + [ + 34.54942, + -2.2756655 + ], + [ + 34.5392395, + -2.2738869 + ], + [ + 34.5378974, + -2.2736424 + ], + [ + 34.5371034, + -2.2736168 + ], + [ + 34.536682, + -2.2736443 + ], + [ + 34.5359871, + -2.2736896 + ], + [ + 34.5232806, + -2.2755471 + ], + [ + 34.510608, + -2.2774297 + ], + [ + 34.5051894, + -2.2782024 + ], + [ + 34.5040457, + -2.2783737 + ], + [ + 34.5032317, + -2.2785399 + ], + [ + 34.4950552, + -2.2808393 + ], + [ + 34.4895452, + -2.282425 + ], + [ + 34.4871139, + -2.2830703 + ], + [ + 34.4835272, + -2.2841879 + ], + [ + 34.4813614, + -2.2847495 + ], + [ + 34.4785065, + -2.28561 + ], + [ + 34.4759018, + -2.2863193 + ], + [ + 34.4717517, + -2.2875415 + ], + [ + 34.4682572, + -2.288514 + ], + [ + 34.4678865, + -2.2885788 + ], + [ + 34.4674642, + -2.2886243 + ], + [ + 34.4671959, + -2.2886083 + ], + [ + 34.4669606, + -2.288563 + ], + [ + 34.4667506, + -2.2884435 + ], + [ + 34.4664596, + -2.2881701 + ], + [ + 34.4662316, + -2.2878297 + ], + [ + 34.4655472, + -2.2868848 + ], + [ + 34.4641865, + -2.2855414 + ], + [ + 34.4603118, + -2.2826455 + ], + [ + 34.4584954, + -2.2814357 + ], + [ + 34.4575319, + -2.2808709 + ], + [ + 34.4574045, + -2.2808093 + ], + [ + 34.4572623, + -2.2807717 + ], + [ + 34.4570906, + -2.2807731 + ], + [ + 34.4565207, + -2.280962 + ], + [ + 34.4564268, + -2.2809969 + ], + [ + 34.4562954, + -2.2809768 + ], + [ + 34.4561961, + -2.2809138 + ], + [ + 34.454543, + -2.2791036 + ], + [ + 34.4537888, + -2.2783416 + ], + [ + 34.4533905, + -2.2779938 + ], + [ + 34.4532929, + -2.2779342 + ], + [ + 34.4527562, + -2.2777258 + ], + [ + 34.4526301, + -2.2776401 + ], + [ + 34.4524866, + -2.2774793 + ], + [ + 34.4517043, + -2.2761037 + ], + [ + 34.4496896, + -2.2730345 + ], + [ + 34.4488221, + -2.2720756 + ], + [ + 34.4479276, + -2.2709381 + ], + [ + 34.4463792, + -2.2691133 + ], + [ + 34.4460279, + -2.268655 + ], + [ + 34.4458589, + -2.2682825 + ], + [ + 34.4457641, + -2.2678868 + ], + [ + 34.4455665, + -2.2671622 + ], + [ + 34.4453734, + -2.2666316 + ], + [ + 34.445183, + -2.2663073 + ], + [ + 34.4448879, + -2.265991 + ], + [ + 34.4446036, + -2.265782 + ], + [ + 34.4433717, + -2.2651923 + ], + [ + 34.4426312, + -2.2646871 + ], + [ + 34.4417272, + -2.2639754 + ], + [ + 34.4409236, + -2.2633886 + ], + [ + 34.4388717, + -2.2618422 + ], + [ + 34.4384962, + -2.2615903 + ], + [ + 34.438405, + -2.2615018 + ], + [ + 34.4383353, + -2.2613705 + ], + [ + 34.4378471, + -2.2601001 + ], + [ + 34.4372539, + -2.2587084 + ], + [ + 34.4365999, + -2.2571734 + ], + [ + 34.4364336, + -2.2568304 + ], + [ + 34.4363773, + -2.2566856 + ], + [ + 34.4362941, + -2.2563506 + ], + [ + 34.4362485, + -2.2562273 + ], + [ + 34.4360501, + -2.2559674 + ], + [ + 34.435975, + -2.2558226 + ], + [ + 34.4350081, + -2.2536766 + ], + [ + 34.4345614, + -2.2525743 + ], + [ + 34.4344944, + -2.2524537 + ], + [ + 34.4340957, + -2.2520356 + ], + [ + 34.4331932, + -2.2509894 + ], + [ + 34.4330019, + -2.2507235 + ], + [ + 34.4327963, + -2.2505108 + ], + [ + 34.4322655, + -2.250063 + ], + [ + 34.4321126, + -2.2499397 + ], + [ + 34.4319731, + -2.2498834 + ], + [ + 34.4312355, + -2.2498379 + ], + [ + 34.4310692, + -2.2498164 + ], + [ + 34.4309378, + -2.2497709 + ], + [ + 34.4307956, + -2.2496932 + ], + [ + 34.4305569, + -2.2496583 + ], + [ + 34.4303209, + -2.2496637 + ], + [ + 34.4291723, + -2.2498465 + ], + [ + 34.4279739, + -2.2498888 + ], + [ + 34.4201258, + -2.2499665 + ], + [ + 34.4195464, + -2.249996 + ], + [ + 34.4179049, + -2.2502104 + ], + [ + 34.4170466, + -2.2502131 + ], + [ + 34.416486, + -2.2501836 + ], + [ + 34.4162634, + -2.2501836 + ], + [ + 34.4157726, + -2.2502801 + ], + [ + 34.4155741, + -2.2503444 + ], + [ + 34.4149277, + -2.25065 + ], + [ + 34.4146889, + -2.2507143 + ], + [ + 34.4143975, + -2.2507394 + ], + [ + 34.4141203, + -2.250733 + ], + [ + 34.4134524, + -2.2507652 + ], + [ + 34.4132647, + -2.2507357 + ], + [ + 34.4130743, + -2.2506634 + ], + [ + 34.4126505, + -2.250516 + ], + [ + 34.4120309, + -2.2503819 + ], + [ + 34.4113013, + -2.2502613 + ], + [ + 34.410789, + -2.2502319 + ], + [ + 34.4090405, + -2.2502138 + ], + [ + 34.4072684, + -2.2502314 + ], + [ + 34.4062579, + -2.2502573 + ], + [ + 34.4029191, + -2.2504334 + ], + [ + 34.4011803, + -2.250678 + ], + [ + 34.4001031, + -2.2508751 + ], + [ + 34.3998724, + -2.2509635 + ], + [ + 34.3997222, + -2.2510707 + ], + [ + 34.3992689, + -2.2513361 + ], + [ + 34.3990543, + -2.2514111 + ], + [ + 34.3987888, + -2.2514433 + ], + [ + 34.397903, + -2.2515105 + ], + [ + 34.3962836, + -2.251655 + ], + [ + 34.3955606, + -2.2517445 + ], + [ + 34.3932018, + -2.2520088 + ], + [ + 34.392617, + -2.2520276 + ], + [ + 34.3923193, + -2.2520249 + ], + [ + 34.3921477, + -2.2520624 + ], + [ + 34.3918607, + -2.2521348 + ], + [ + 34.3910265, + -2.252317 + ], + [ + 34.3890175, + -2.2526279 + ], + [ + 34.3874028, + -2.2529281 + ], + [ + 34.385897, + -2.2532252 + ], + [ + 34.3829745, + -2.2539439 + ], + [ + 34.3824246, + -2.2541636 + ], + [ + 34.3820599, + -2.2543807 + ], + [ + 34.3814993, + -2.2547265 + ], + [ + 34.3798926, + -2.2558601 + ], + [ + 34.3794823, + -2.2560826 + ], + [ + 34.3790853, + -2.2562407 + ], + [ + 34.3778113, + -2.2565731 + ], + [ + 34.3761749, + -2.2568433 + ], + [ + 34.374378, + -2.2572083 + ], + [ + 34.3735144, + -2.2574897 + ], + [ + 34.3730476, + -2.2577121 + ], + [ + 34.3728304, + -2.2578676 + ], + [ + 34.3726426, + -2.2580686 + ], + [ + 34.3722376, + -2.2585698 + ], + [ + 34.3715098, + -2.2592677 + ], + [ + 34.3708438, + -2.259643 + ], + [ + 34.370335, + -2.2598312 + ], + [ + 34.3698349, + -2.259926 + ], + [ + 34.3693454, + -2.2598891 + ], + [ + 34.3689448, + -2.2597747 + ], + [ + 34.3684144, + -2.259485 + ], + [ + 34.3680443, + -2.2591708 + ], + [ + 34.3676849, + -2.2587741 + ], + [ + 34.367127, + -2.2579969 + ], + [ + 34.3663009, + -2.2568176 + ], + [ + 34.3656571, + -2.2561315 + ], + [ + 34.3635892, + -2.2541482 + ], + [ + 34.360805, + -2.2518647 + ], + [ + 34.3604279, + -2.2516014 + ], + [ + 34.3582113, + -2.2504603 + ], + [ + 34.35407, + -2.2483055 + ], + [ + 34.3507548, + -2.2466652 + ], + [ + 34.3430408, + -2.2428058 + ], + [ + 34.33302, + -2.2377028 + ], + [ + 34.3273176, + -2.2347385 + ], + [ + 34.3242534, + -2.2331867 + ] + ] + }, + "id": "way/438748539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438772348", + "highway": "secondary", + "ref": "R186", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7214246, + -1.6499098 + ], + [ + 33.7208669, + -1.6503205 + ], + [ + 33.7203857, + -1.6507517 + ], + [ + 33.7201712, + -1.6509715 + ], + [ + 33.7200376, + -1.6511407 + ], + [ + 33.7199646, + -1.6513442 + ], + [ + 33.7195972, + -1.6528698 + ], + [ + 33.7188596, + -1.6561166 + ], + [ + 33.7186396, + -1.6572131 + ], + [ + 33.7184733, + -1.6579156 + ], + [ + 33.7182909, + -1.65861 + ], + [ + 33.7179664, + -1.6595725 + ], + [ + 33.7178993, + -1.6598299 + ], + [ + 33.7178376, + -1.6601677 + ], + [ + 33.7176096, + -1.6622589 + ], + [ + 33.717548, + -1.6629426 + ], + [ + 33.7174031, + -1.6639748 + ], + [ + 33.7173012, + -1.6644145 + ], + [ + 33.7171724, + -1.6648006 + ], + [ + 33.7168962, + -1.6653422 + ], + [ + 33.715834, + -1.6670634 + ], + [ + 33.7156243, + -1.6674245 + ] + ] + }, + "id": "way/438772348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438967119", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2143808, + -1.3130533 + ], + [ + 34.2147724, + -1.313839 + ], + [ + 34.2150764, + -1.3144588 + ], + [ + 34.215839, + -1.3160134 + ], + [ + 34.2160897, + -1.3163514 + ], + [ + 34.2162759, + -1.3166212 + ] + ] + }, + "id": "way/438967119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438967120", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2162759, + -1.3166212 + ], + [ + 34.2165542, + -1.3165671 + ], + [ + 34.2168707, + -1.3165242 + ], + [ + 34.2171228, + -1.3165269 + ], + [ + 34.2173722, + -1.3165564 + ], + [ + 34.2176351, + -1.3166342 + ], + [ + 34.2188394, + -1.317208 + ], + [ + 34.2195252, + -1.3174815 + ], + [ + 34.2200659, + -1.3176122 + ], + [ + 34.2212094, + -1.3177663 + ], + [ + 34.2217603, + -1.3178221 + ], + [ + 34.2219695, + -1.3178274 + ], + [ + 34.2223209, + -1.3178569 + ], + [ + 34.2231792, + -1.3179508 + ], + [ + 34.2234153, + -1.3179937 + ], + [ + 34.2237639, + -1.3180259 + ], + [ + 34.2240187, + -1.3180393 + ], + [ + 34.2242172, + -1.3180446 + ], + [ + 34.2244828, + -1.3180527 + ], + [ + 34.2248958, + -1.3180607 + ], + [ + 34.2252445, + -1.3180768 + ], + [ + 34.2256334, + -1.3181304 + ], + [ + 34.2258802, + -1.3181867 + ], + [ + 34.2262584, + -1.3183074 + ], + [ + 34.2267305, + -1.3185166 + ], + [ + 34.2273448, + -1.3188359 + ], + [ + 34.227519, + -1.3189376 + ], + [ + 34.2278007, + -1.3191199 + ], + [ + 34.2281467, + -1.3194015 + ], + [ + 34.2282352, + -1.3194631 + ], + [ + 34.2285034, + -1.3196723 + ], + [ + 34.2286858, + -1.3198305 + ], + [ + 34.2289243, + -1.3200129 + ], + [ + 34.2295121, + -1.3205458 + ], + [ + 34.2295636, + -1.3205925 + ], + [ + 34.2297097, + -1.320725 + ], + [ + 34.2301717, + -1.3211337 + ], + [ + 34.2303863, + -1.3213026 + ], + [ + 34.230585, + -1.3214395 + ], + [ + 34.230912, + -1.3217263 + ], + [ + 34.2311596, + -1.3218893 + ], + [ + 34.2315473, + -1.3221449 + ], + [ + 34.2316824, + -1.3222339 + ], + [ + 34.2319665, + -1.3224619 + ], + [ + 34.2320332, + -1.3225174 + ], + [ + 34.2320868, + -1.3225576 + ], + [ + 34.2321338, + -1.3225965 + ], + [ + 34.2323242, + -1.3227828 + ], + [ + 34.2324825, + -1.322941 + ], + [ + 34.2326453, + -1.3231269 + ], + [ + 34.2328233, + -1.3233388 + ], + [ + 34.2330363, + -1.3236353 + ], + [ + 34.2331125, + -1.3237414 + ], + [ + 34.2331561, + -1.3238021 + ], + [ + 34.2334144, + -1.3241567 + ], + [ + 34.2335823, + -1.3243341 + ], + [ + 34.233779, + -1.3245215 + ], + [ + 34.2340067, + -1.3247109 + ], + [ + 34.2342256, + -1.3248595 + ], + [ + 34.2347581, + -1.3251972 + ], + [ + 34.23482, + -1.3252364 + ], + [ + 34.235616, + -1.3256555 + ], + [ + 34.2361772, + -1.3259684 + ], + [ + 34.2364562, + -1.3261186 + ], + [ + 34.2366438, + -1.3262549 + ], + [ + 34.2378563, + -1.3270115 + ], + [ + 34.2391931, + -1.3278654 + ], + [ + 34.240025, + -1.3283762 + ], + [ + 34.2406905, + -1.3288158 + ], + [ + 34.241558, + -1.329291 + ], + [ + 34.2417497, + -1.3293855 + ], + [ + 34.2418181, + -1.3294192 + ], + [ + 34.2424018, + -1.3297069 + ], + [ + 34.2428118, + -1.3298979 + ], + [ + 34.2436258, + -1.3302771 + ], + [ + 34.2438613, + -1.3303838 + ], + [ + 34.2457768, + -1.3312514 + ], + [ + 34.246139, + -1.3314601 + ], + [ + 34.246324, + -1.3315942 + ], + [ + 34.2464921, + -1.3317561 + ], + [ + 34.2467366, + -1.3320754 + ], + [ + 34.2469415, + -1.3323088 + ] + ] + }, + "id": "way/438967120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438967121", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1215046, + -1.4100686 + ], + [ + 34.1198122, + -1.4109809 + ], + [ + 34.1164499, + -1.4127476 + ], + [ + 34.1140267, + -1.413968 + ], + [ + 34.1129217, + -1.4145686 + ], + [ + 34.1119453, + -1.4150137 + ], + [ + 34.1089895, + -1.4158745 + ], + [ + 34.1072863, + -1.4163947 + ], + [ + 34.1061625, + -1.4167245 + ], + [ + 34.1030542, + -1.4176081 + ], + [ + 34.1020163, + -1.4179385 + ], + [ + 34.1016326, + -1.4180515 + ], + [ + 34.1001168, + -1.4185076 + ], + [ + 34.0992558, + -1.4187623 + ], + [ + 34.0986485, + -1.4189338 + ], + [ + 34.0981614, + -1.419108 + ], + [ + 34.0979924, + -1.4191684 + ], + [ + 34.0977994, + -1.4193093 + ], + [ + 34.0974775, + -1.4196123 + ], + [ + 34.0971851, + -1.4199421 + ], + [ + 34.0971315, + -1.4199958 + ], + [ + 34.0968275, + -1.4203398 + ], + [ + 34.096342, + -1.4208336 + ], + [ + 34.0961635, + -1.4210261 + ], + [ + 34.0955723, + -1.4216636 + ], + [ + 34.0955319, + -1.4217046 + ], + [ + 34.0951511, + -1.4220909 + ], + [ + 34.0941142, + -1.4231855 + ], + [ + 34.0939405, + -1.4233613 + ], + [ + 34.0935769, + -1.4237515 + ], + [ + 34.0931011, + -1.4242547 + ], + [ + 34.0923974, + -1.4250046 + ], + [ + 34.0921077, + -1.4253103 + ], + [ + 34.091936, + -1.4254148 + ], + [ + 34.0917563, + -1.4254685 + ], + [ + 34.0914559, + -1.4254604 + ], + [ + 34.0897281, + -1.4252495 + ], + [ + 34.0889798, + -1.4251851 + ], + [ + 34.0886888, + -1.4251822 + ], + [ + 34.0886251, + -1.4251763 + ], + [ + 34.0874201, + -1.4250537 + ], + [ + 34.0870778, + -1.4250331 + ], + [ + 34.0865631, + -1.4249358 + ], + [ + 34.0862117, + -1.4248848 + ], + [ + 34.0858738, + -1.424858 + ], + [ + 34.0852059, + -1.4247722 + ], + [ + 34.0847794, + -1.4246998 + ], + [ + 34.0837937, + -1.4245684 + ], + [ + 34.083359, + -1.4244996 + ], + [ + 34.0830978, + -1.4244807 + ], + [ + 34.0828168, + -1.4244491 + ], + [ + 34.0824464, + -1.4243783 + ], + [ + 34.0820861, + -1.4243254 + ], + [ + 34.0804481, + -1.4240822 + ], + [ + 34.0796354, + -1.4239776 + ], + [ + 34.077428, + -1.4236639 + ], + [ + 34.0755424, + -1.4234011 + ], + [ + 34.0753037, + -1.4233743 + ], + [ + 34.0738821, + -1.4234548 + ], + [ + 34.0736511, + -1.4234447 + ], + [ + 34.0719995, + -1.4230703 + ], + [ + 34.0709342, + -1.4229374 + ], + [ + 34.0692028, + -1.4227539 + ], + [ + 34.0689005, + -1.4227116 + ], + [ + 34.0667534, + -1.4223399 + ], + [ + 34.0662186, + -1.4222437 + ], + [ + 34.0653933, + -1.4221054 + ], + [ + 34.0652984, + -1.4220858 + ], + [ + 34.0650258, + -1.4220472 + ], + [ + 34.0641681, + -1.4219259 + ], + [ + 34.0635771, + -1.4218607 + ], + [ + 34.0625793, + -1.4217467 + ], + [ + 34.062134, + -1.4217494 + ], + [ + 34.0613022, + -1.4218235 + ], + [ + 34.061155, + -1.4218434 + ], + [ + 34.0605408, + -1.4218835 + ], + [ + 34.0601706, + -1.4218647 + ], + [ + 34.0597451, + -1.4217984 + ], + [ + 34.0592641, + -1.4217521 + ], + [ + 34.0589932, + -1.4217548 + ], + [ + 34.0586666, + -1.4217979 + ], + [ + 34.0581051, + -1.4218488 + ], + [ + 34.0567974, + -1.4219921 + ], + [ + 34.0548877, + -1.4222832 + ], + [ + 34.0545836, + -1.4223152 + ], + [ + 34.0516585, + -1.4224187 + ], + [ + 34.0512363, + -1.422404 + ], + [ + 34.0497299, + -1.4223868 + ], + [ + 34.0489647, + -1.4223876 + ], + [ + 34.0485855, + -1.4224015 + ], + [ + 34.045043, + -1.4225875 + ], + [ + 34.0441736, + -1.4226353 + ], + [ + 34.0435081, + -1.4227238 + ], + [ + 34.0426102, + -1.4229694 + ], + [ + 34.0417626, + -1.4231035 + ], + [ + 34.0402365, + -1.4231893 + ], + [ + 34.0396652, + -1.4232456 + ], + [ + 34.0384384, + -1.4232311 + ], + [ + 34.0378574, + -1.4232349 + ], + [ + 34.0339253, + -1.4233871 + ], + [ + 34.0327558, + -1.4234574 + ], + [ + 34.031868, + -1.4235325 + ], + [ + 34.0314415, + -1.4235701 + ], + [ + 34.0309131, + -1.4236076 + ], + [ + 34.0290463, + -1.4238301 + ], + [ + 34.0264875, + -1.4241412 + ], + [ + 34.0250463, + -1.4242339 + ], + [ + 34.0234511, + -1.4241862 + ], + [ + 34.0228263, + -1.4241251 + ], + [ + 34.0226305, + -1.4241171 + ], + [ + 34.0221798, + -1.4240983 + ], + [ + 34.0208682, + -1.424042 + ], + [ + 34.020144, + -1.4240152 + ], + [ + 34.0185454, + -1.4240205 + ], + [ + 34.017089, + -1.4240152 + ], + [ + 34.0155923, + -1.4241251 + ], + [ + 34.0146348, + -1.4242136 + ], + [ + 34.0139052, + -1.4242136 + ], + [ + 34.013151, + -1.4241373 + ], + [ + 34.0118858, + -1.4240076 + ], + [ + 34.0112193, + -1.4239328 + ], + [ + 34.0099676, + -1.4238148 + ], + [ + 34.0081654, + -1.4237601 + ], + [ + 34.0073138, + -1.4237564 + ], + [ + 34.0070652, + -1.4237398 + ], + [ + 34.0061456, + -1.4237289 + ] + ] + }, + "id": "way/438967121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438982524", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5678484, + -1.4101282 + ], + [ + 34.5674783, + -1.4100371 + ], + [ + 34.5668936, + -1.4099218 + ], + [ + 34.566291, + -1.4098296 + ], + [ + 34.5641478, + -1.4094579 + ], + [ + 34.563233, + -1.409315 + ], + [ + 34.5615971, + -1.409078 + ], + [ + 34.5614766, + -1.4090683 + ], + [ + 34.5613856, + -1.409061 + ], + [ + 34.5609099, + -1.4090227 + ], + [ + 34.559792, + -1.4090065 + ], + [ + 34.5593271, + -1.4090147 + ], + [ + 34.558053, + -1.4090372 + ], + [ + 34.5575174, + -1.4090466 + ], + [ + 34.5571329, + -1.4090292 + ], + [ + 34.5570085, + -1.4090236 + ], + [ + 34.5566757, + -1.4090239 + ], + [ + 34.5559059, + -1.4090244 + ], + [ + 34.5552251, + -1.4090249 + ], + [ + 34.5549906, + -1.4090227 + ], + [ + 34.5529902, + -1.4090387 + ], + [ + 34.5525679, + -1.4090421 + ], + [ + 34.551696, + -1.409049 + ], + [ + 34.5510337, + -1.4090369 + ], + [ + 34.5507199, + -1.4090388 + ], + [ + 34.5505911, + -1.4090396 + ], + [ + 34.5495801, + -1.4090499 + ], + [ + 34.5487457, + -1.4090584 + ], + [ + 34.5483193, + -1.4090745 + ], + [ + 34.5480591, + -1.4090745 + ], + [ + 34.5479196, + -1.4090745 + ], + [ + 34.5475012, + -1.4090771 + ], + [ + 34.5473913, + -1.4090778 + ], + [ + 34.5472277, + -1.4090789 + ], + [ + 34.5470989, + -1.4090798 + ], + [ + 34.5465517, + -1.4090637 + ], + [ + 34.5460427, + -1.409094 + ], + [ + 34.5459898, + -1.4090944 + ], + [ + 34.5454439, + -1.4090986 + ], + [ + 34.5451838, + -1.4091335 + ], + [ + 34.5448968, + -1.4092488 + ], + [ + 34.5446832, + -1.4093428 + ], + [ + 34.5446131, + -1.4093737 + ], + [ + 34.5444423, + -1.4094507 + ], + [ + 34.5433203, + -1.4099366 + ], + [ + 34.5431613, + -1.4100083 + ], + [ + 34.5431105, + -1.4100312 + ], + [ + 34.5429706, + -1.4100943 + ], + [ + 34.5429065, + -1.4101232 + ], + [ + 34.5406482, + -1.4113188 + ], + [ + 34.53889, + -1.4121849 + ], + [ + 34.5382789, + -1.4124131 + ], + [ + 34.5366658, + -1.4130098 + ], + [ + 34.5355251, + -1.4133781 + ], + [ + 34.5351587, + -1.4134764 + ], + [ + 34.5340553, + -1.4137723 + ], + [ + 34.5337227, + -1.4139546 + ], + [ + 34.5334089, + -1.4142308 + ], + [ + 34.5330709, + -1.4146276 + ], + [ + 34.5328161, + -1.415062 + ], + [ + 34.5327572, + -1.4152033 + ], + [ + 34.5324288, + -1.4159909 + ], + [ + 34.5322853, + -1.4164009 + ], + [ + 34.5322153, + -1.4166011 + ], + [ + 34.5321335, + -1.4168551 + ], + [ + 34.5320396, + -1.4170919 + ], + [ + 34.5319268, + -1.4173263 + ], + [ + 34.5318827, + -1.4174243 + ], + [ + 34.5316985, + -1.4180888 + ], + [ + 34.5315796, + -1.4186765 + ], + [ + 34.5315195, + -1.4196216 + ], + [ + 34.5314766, + -1.4203117 + ], + [ + 34.5314278, + -1.4214807 + ], + [ + 34.5314193, + -1.4216841 + ], + [ + 34.531447, + -1.4219104 + ], + [ + 34.5314725, + -1.4221189 + ] + ] + }, + "id": "way/438982524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438982528", + "highway": "secondary", + "ref": "R192", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6231158, + -1.5532674 + ], + [ + 34.6232974, + -1.5533336 + ], + [ + 34.6241274, + -1.5535122 + ], + [ + 34.6248065, + -1.5536697 + ], + [ + 34.627094, + -1.5541088 + ], + [ + 34.6282066, + -1.554297 + ], + [ + 34.6285896, + -1.5543061 + ], + [ + 34.6287696, + -1.554291 + ], + [ + 34.6290992, + -1.5542176 + ], + [ + 34.6294318, + -1.5540246 + ], + [ + 34.6296571, + -1.5537243 + ], + [ + 34.6296801, + -1.5534502 + ], + [ + 34.6298074, + -1.5530578 + ], + [ + 34.62991, + -1.5527423 + ], + [ + 34.6300848, + -1.5522378 + ], + [ + 34.6304584, + -1.5511617 + ], + [ + 34.6305763, + -1.5508102 + ], + [ + 34.6307354, + -1.5503218 + ], + [ + 34.6308782, + -1.5499989 + ], + [ + 34.6309887, + -1.5498191 + ], + [ + 34.6311323, + -1.5496408 + ], + [ + 34.6313867, + -1.5493789 + ], + [ + 34.6321571, + -1.5485243 + ], + [ + 34.6329939, + -1.5476288 + ], + [ + 34.6336622, + -1.5469055 + ], + [ + 34.6339193, + -1.5466254 + ], + [ + 34.6341729, + -1.5463568 + ], + [ + 34.6345599, + -1.5459469 + ], + [ + 34.6361635, + -1.5442483 + ], + [ + 34.6361795, + -1.5442314 + ], + [ + 34.6363954, + -1.5439347 + ], + [ + 34.636501, + -1.5438202 + ], + [ + 34.637596, + -1.5426328 + ], + [ + 34.6378162, + -1.5423936 + ], + [ + 34.6381379, + -1.5420442 + ], + [ + 34.6384536, + -1.5417013 + ], + [ + 34.6386882, + -1.5414465 + ], + [ + 34.6389654, + -1.5411734 + ], + [ + 34.6395103, + -1.5405541 + ], + [ + 34.6405263, + -1.5394523 + ], + [ + 34.6414609, + -1.5384413 + ], + [ + 34.6419977, + -1.5378607 + ], + [ + 34.6427545, + -1.5370149 + ], + [ + 34.643712, + -1.5359761 + ], + [ + 34.6445489, + -1.5351074 + ], + [ + 34.6458811, + -1.5336462 + ], + [ + 34.6463404, + -1.5331474 + ], + [ + 34.6466289, + -1.5328378 + ], + [ + 34.6467684, + -1.5326728 + ], + [ + 34.6469096, + -1.5325013 + ], + [ + 34.6469708, + -1.5323517 + ], + [ + 34.6469976, + -1.532277 + ], + [ + 34.6470232, + -1.5321982 + ], + [ + 34.647032, + -1.5321195 + ], + [ + 34.6470379, + -1.5320491 + ], + [ + 34.6470379, + -1.5319808 + ], + [ + 34.6470392, + -1.5314897 + ], + [ + 34.6470313, + -1.530863 + ], + [ + 34.6470359, + -1.5305201 + ], + [ + 34.6470345, + -1.5298515 + ], + [ + 34.6470367, + -1.5296024 + ], + [ + 34.6471022, + -1.5289014 + ], + [ + 34.6470253, + -1.5286458 + ], + [ + 34.6470219, + -1.5285197 + ], + [ + 34.6470198, + -1.5284391 + ], + [ + 34.6470017, + -1.5274079 + ], + [ + 34.6469576, + -1.5255841 + ], + [ + 34.646955, + -1.5255031 + ], + [ + 34.6469151, + -1.5239859 + ], + [ + 34.6469126, + -1.5238707 + ], + [ + 34.6468981, + -1.5231917 + ], + [ + 34.6468428, + -1.5205989 + ], + [ + 34.6467909, + -1.5181606 + ], + [ + 34.6467878, + -1.5180167 + ], + [ + 34.6467865, + -1.5179556 + ], + [ + 34.6467769, + -1.5175051 + ], + [ + 34.6467628, + -1.5168451 + ], + [ + 34.6467349, + -1.5152286 + ], + [ + 34.6467161, + -1.5143785 + ], + [ + 34.6466893, + -1.5130031 + ], + [ + 34.6466466, + -1.5119409 + ], + [ + 34.6466382, + -1.5117318 + ], + [ + 34.6466389, + -1.5110323 + ], + [ + 34.6466319, + -1.5104953 + ], + [ + 34.6466161, + -1.5099595 + ], + [ + 34.6466195, + -1.5089892 + ], + [ + 34.646621, + -1.5086856 + ], + [ + 34.6465552, + -1.5067396 + ], + [ + 34.6465373, + -1.506045 + ], + [ + 34.6465131, + -1.5051046 + ], + [ + 34.6465108, + -1.504997 + ], + [ + 34.6465076, + -1.5048468 + ], + [ + 34.6464445, + -1.5018728 + ], + [ + 34.6464028, + -1.4999076 + ], + [ + 34.6464155, + -1.4991027 + ], + [ + 34.6463691, + -1.4983171 + ], + [ + 34.6463574, + -1.4968065 + ], + [ + 34.64633, + -1.4964769 + ], + [ + 34.6463075, + -1.4954179 + ], + [ + 34.6462952, + -1.4948361 + ], + [ + 34.6462915, + -1.4932936 + ], + [ + 34.6462936, + -1.4931225 + ], + [ + 34.64627, + -1.4927303 + ], + [ + 34.6461734, + -1.4923469 + ], + [ + 34.645509, + -1.4903714 + ], + [ + 34.6453588, + -1.4894222 + ], + [ + 34.6454259, + -1.488662 + ], + [ + 34.6455371, + -1.4884717 + ], + [ + 34.6456791, + -1.4882392 + ], + [ + 34.6461931, + -1.4875496 + ], + [ + 34.6467495, + -1.4867262 + ], + [ + 34.6468037, + -1.4865575 + ], + [ + 34.6468689, + -1.4863092 + ], + [ + 34.6468532, + -1.4859889 + ], + [ + 34.6468033, + -1.4857503 + ], + [ + 34.6466918, + -1.4853869 + ], + [ + 34.6465257, + -1.4851243 + ], + [ + 34.6462225, + -1.4847808 + ], + [ + 34.6459116, + -1.4844792 + ], + [ + 34.645855, + -1.4844243 + ], + [ + 34.6456227, + -1.4841655 + ], + [ + 34.6455272, + -1.484015 + ], + [ + 34.6454866, + -1.4838681 + ], + [ + 34.6455024, + -1.4836791 + ], + [ + 34.6455699, + -1.4832745 + ], + [ + 34.6456171, + -1.4829953 + ], + [ + 34.6457632, + -1.4821195 + ], + [ + 34.6459143, + -1.4812049 + ], + [ + 34.64602, + -1.4807082 + ], + [ + 34.6460389, + -1.4806355 + ], + [ + 34.6461004, + -1.4803983 + ], + [ + 34.6461915, + -1.4801787 + ], + [ + 34.6463772, + -1.4799695 + ], + [ + 34.6465796, + -1.4797981 + ], + [ + 34.6467514, + -1.4796503 + ], + [ + 34.6470852, + -1.4793632 + ], + [ + 34.6479886, + -1.4785862 + ], + [ + 34.648322, + -1.4782994 + ], + [ + 34.6486183, + -1.4780552 + ], + [ + 34.6486716, + -1.4780113 + ], + [ + 34.6496645, + -1.4771618 + ], + [ + 34.6510011, + -1.4760355 + ], + [ + 34.651071, + -1.475977 + ], + [ + 34.6524578, + -1.4748161 + ], + [ + 34.6532057, + -1.4741765 + ], + [ + 34.6536803, + -1.4737929 + ], + [ + 34.653966, + -1.4735438 + ], + [ + 34.6540599, + -1.4733946 + ], + [ + 34.6541351, + -1.4732488 + ], + [ + 34.6541725, + -1.4731413 + ], + [ + 34.6542275, + -1.4729616 + ], + [ + 34.6542531, + -1.4726093 + ], + [ + 34.654257, + -1.4722457 + ], + [ + 34.6543013, + -1.4720674 + ], + [ + 34.6543698, + -1.4719108 + ], + [ + 34.6545427, + -1.4717296 + ], + [ + 34.6546888, + -1.4716143 + ], + [ + 34.6548915, + -1.4715033 + ], + [ + 34.6552281, + -1.471349 + ], + [ + 34.6559353, + -1.4710957 + ], + [ + 34.6563961, + -1.4708447 + ], + [ + 34.6565236, + -1.470723 + ], + [ + 34.6565799, + -1.4706144 + ], + [ + 34.6566415, + -1.4704532 + ], + [ + 34.6566577, + -1.4703087 + ], + [ + 34.6566214, + -1.4701248 + ], + [ + 34.6565302, + -1.469964 + ], + [ + 34.6563654, + -1.4697162 + ], + [ + 34.656136, + -1.4694185 + ], + [ + 34.656093, + -1.4692788 + ], + [ + 34.6560863, + -1.4691407 + ], + [ + 34.6561399, + -1.469012 + ], + [ + 34.6562284, + -1.4689007 + ], + [ + 34.6563144, + -1.4688099 + ], + [ + 34.6563531, + -1.4687131 + ], + [ + 34.6563747, + -1.4686326 + ], + [ + 34.6563693, + -1.4685315 + ], + [ + 34.6562914, + -1.4682548 + ], + [ + 34.6559219, + -1.4670965 + ], + [ + 34.6557523, + -1.4663816 + ], + [ + 34.6556532, + -1.4657987 + ], + [ + 34.6556345, + -1.4651874 + ], + [ + 34.6556266, + -1.4648473 + ], + [ + 34.655676, + -1.4646987 + ], + [ + 34.6557606, + -1.4645642 + ], + [ + 34.6558776, + -1.464472 + ], + [ + 34.6560234, + -1.4643951 + ], + [ + 34.6561503, + -1.464363 + ], + [ + 34.6565701, + -1.464268 + ], + [ + 34.6569184, + -1.4641875 + ], + [ + 34.657812, + -1.4639771 + ], + [ + 34.6588919, + -1.4637229 + ], + [ + 34.6591254, + -1.4636636 + ], + [ + 34.6592166, + -1.4636401 + ], + [ + 34.6598684, + -1.4634992 + ], + [ + 34.6603757, + -1.4633717 + ], + [ + 34.6607009, + -1.4632978 + ], + [ + 34.6618045, + -1.4630274 + ], + [ + 34.6620291, + -1.4629626 + ], + [ + 34.6628374, + -1.4627614 + ], + [ + 34.6636012, + -1.4625922 + ], + [ + 34.6641726, + -1.4624632 + ], + [ + 34.664805, + -1.4623262 + ], + [ + 34.6652277, + -1.4622411 + ], + [ + 34.6655183, + -1.4621636 + ], + [ + 34.6658273, + -1.4620722 + ], + [ + 34.6660876, + -1.4620031 + ], + [ + 34.6662205, + -1.4619499 + ], + [ + 34.6663821, + -1.461868 + ], + [ + 34.6675519, + -1.4612734 + ], + [ + 34.66845, + -1.4608551 + ], + [ + 34.6688221, + -1.4606799 + ], + [ + 34.6693633, + -1.4604033 + ], + [ + 34.6694592, + -1.4603214 + ], + [ + 34.6696717, + -1.4602296 + ], + [ + 34.6697536, + -1.4601559 + ], + [ + 34.669932, + -1.4600741 + ], + [ + 34.6702534, + -1.4599347 + ], + [ + 34.6706126, + -1.4597873 + ], + [ + 34.6706468, + -1.4597362 + ], + [ + 34.6706901, + -1.4596908 + ], + [ + 34.6708834, + -1.4595231 + ], + [ + 34.6709025, + -1.4593225 + ], + [ + 34.6710397, + -1.4589639 + ], + [ + 34.6713246, + -1.458509 + ], + [ + 34.6713817, + -1.4582724 + ], + [ + 34.6713846, + -1.4582667 + ], + [ + 34.6715011, + -1.4580624 + ], + [ + 34.6716109, + -1.4579983 + ], + [ + 34.6717641, + -1.4578185 + ], + [ + 34.6718203, + -1.4577118 + ], + [ + 34.6719485, + -1.4576167 + ], + [ + 34.6721234, + -1.4575443 + ], + [ + 34.67226, + -1.4575116 + ], + [ + 34.6723605, + -1.4574879 + ], + [ + 34.6727438, + -1.4574707 + ], + [ + 34.6737819, + -1.4576974 + ], + [ + 34.6741337, + -1.4577735 + ], + [ + 34.6744342, + -1.4577555 + ], + [ + 34.6750168, + -1.45768 + ], + [ + 34.6760978, + -1.4576615 + ], + [ + 34.6762819, + -1.4576459 + ], + [ + 34.6775856, + -1.4580427 + ], + [ + 34.6778355, + -1.4580457 + ], + [ + 34.6783904, + -1.4579458 + ], + [ + 34.6785429, + -1.4579009 + ], + [ + 34.6795288, + -1.4576246 + ], + [ + 34.679777, + -1.4574491 + ], + [ + 34.680101, + -1.4572442 + ], + [ + 34.6805792, + -1.4566754 + ], + [ + 34.6810108, + -1.4561057 + ], + [ + 34.6813713, + -1.4556029 + ], + [ + 34.6815967, + -1.4553305 + ], + [ + 34.6817362, + -1.4551178 + ], + [ + 34.6822357, + -1.4544533 + ], + [ + 34.682424, + -1.4542053 + ], + [ + 34.6825875, + -1.454079 + ], + [ + 34.6827027, + -1.454034 + ], + [ + 34.6828859, + -1.4540271 + ], + [ + 34.6830983, + -1.4540344 + ], + [ + 34.6835116, + -1.4540682 + ], + [ + 34.6839333, + -1.4540872 + ], + [ + 34.6841135, + -1.4541273 + ], + [ + 34.6844984, + -1.4541505 + ], + [ + 34.6849595, + -1.4542076 + ], + [ + 34.6855016, + -1.4542929 + ], + [ + 34.6857223, + -1.454295 + ], + [ + 34.6859891, + -1.4542938 + ], + [ + 34.6862104, + -1.4542658 + ], + [ + 34.6865567, + -1.4541854 + ], + [ + 34.6868435, + -1.4541177 + ], + [ + 34.6871921, + -1.4540268 + ], + [ + 34.6875103, + -1.4539155 + ], + [ + 34.6884899, + -1.4536852 + ], + [ + 34.688635, + -1.4536496 + ], + [ + 34.6890523, + -1.4534813 + ], + [ + 34.6893179, + -1.4533561 + ], + [ + 34.6895367, + -1.4532434 + ], + [ + 34.6899367, + -1.4530173 + ], + [ + 34.6902895, + -1.4528386 + ], + [ + 34.6905627, + -1.4526579 + ], + [ + 34.6907511, + -1.452523 + ], + [ + 34.6909384, + -1.4523619 + ], + [ + 34.6911341, + -1.4521622 + ], + [ + 34.6914649, + -1.4518327 + ], + [ + 34.6916726, + -1.4515903 + ], + [ + 34.69177, + -1.4513604 + ], + [ + 34.6918231, + -1.4511367 + ], + [ + 34.6918695, + -1.4509748 + ], + [ + 34.6919529, + -1.4507819 + ], + [ + 34.6920728, + -1.4505916 + ], + [ + 34.6922411, + -1.4504154 + ], + [ + 34.692445, + -1.45018 + ], + [ + 34.6927715, + -1.4498402 + ], + [ + 34.6928874, + -1.44978 + ], + [ + 34.6932445, + -1.4492889 + ], + [ + 34.6933667, + -1.449226 + ], + [ + 34.693421, + -1.4491068 + ], + [ + 34.6935422, + -1.4490025 + ], + [ + 34.6937383, + -1.4488713 + ], + [ + 34.694032, + -1.4485196 + ], + [ + 34.6942599, + -1.4483022 + ], + [ + 34.6946809, + -1.4479151 + ], + [ + 34.6946933, + -1.447834 + ], + [ + 34.6947964, + -1.4477393 + ], + [ + 34.6951941, + -1.447426 + ], + [ + 34.6952561, + -1.4473538 + ], + [ + 34.6956736, + -1.4471731 + ], + [ + 34.6967079, + -1.4467285 + ], + [ + 34.6975122, + -1.4463274 + ], + [ + 34.6975832, + -1.4463012 + ], + [ + 34.6984766, + -1.4459325 + ], + [ + 34.698608, + -1.4458775 + ], + [ + 34.6989006, + -1.4457767 + ], + [ + 34.6991222, + -1.4456815 + ], + [ + 34.6997918, + -1.4453802 + ], + [ + 34.6998757, + -1.4453463 + ], + [ + 34.7002351, + -1.4452173 + ], + [ + 34.7016831, + -1.4446539 + ], + [ + 34.7022296, + -1.4444178 + ], + [ + 34.7023737, + -1.444354 + ], + [ + 34.7024146, + -1.4443373 + ], + [ + 34.702495, + -1.4442991 + ], + [ + 34.7031, + -1.4440663 + ], + [ + 34.7036717, + -1.4438006 + ], + [ + 34.7037711, + -1.443754 + ], + [ + 34.7041822, + -1.4435611 + ], + [ + 34.704301, + -1.4435266 + ], + [ + 34.7045553, + -1.4434224 + ], + [ + 34.704593, + -1.4433965 + ], + [ + 34.704809, + -1.4433268 + ], + [ + 34.7052863, + -1.4431269 + ], + [ + 34.7055155, + -1.4429805 + ], + [ + 34.7059024, + -1.4427598 + ], + [ + 34.7064392, + -1.4424273 + ], + [ + 34.7068572, + -1.4422173 + ], + [ + 34.7073787, + -1.4418989 + ], + [ + 34.7078711, + -1.4416504 + ], + [ + 34.7083015, + -1.4413893 + ], + [ + 34.7085833, + -1.4412518 + ], + [ + 34.7089291, + -1.4410489 + ], + [ + 34.7092594, + -1.4408465 + ], + [ + 34.7098574, + -1.4405446 + ], + [ + 34.709968, + -1.4404822 + ], + [ + 34.7101171, + -1.4403586 + ], + [ + 34.7103039, + -1.44029 + ], + [ + 34.7103686, + -1.4401889 + ], + [ + 34.7105098, + -1.4399988 + ], + [ + 34.7105882, + -1.4397685 + ], + [ + 34.7106579, + -1.4393984 + ], + [ + 34.710732, + -1.4389559 + ], + [ + 34.7107807, + -1.4387077 + ], + [ + 34.710829, + -1.4384195 + ], + [ + 34.7109345, + -1.4378928 + ], + [ + 34.7109751, + -1.4377465 + ], + [ + 34.7111545, + -1.4373082 + ], + [ + 34.7112211, + -1.4371414 + ], + [ + 34.7112541, + -1.437056 + ], + [ + 34.7113444, + -1.4369937 + ], + [ + 34.7112742, + -1.4368335 + ], + [ + 34.7112215, + -1.4365614 + ], + [ + 34.7111519, + -1.4362571 + ], + [ + 34.7111427, + -1.4362169 + ], + [ + 34.7109319, + -1.4352891 + ], + [ + 34.7107816, + -1.434541 + ], + [ + 34.7107602, + -1.4344083 + ], + [ + 34.7105805, + -1.4336522 + ], + [ + 34.7104132, + -1.4328034 + ], + [ + 34.7103022, + -1.4325189 + ], + [ + 34.7102184, + -1.4322123 + ], + [ + 34.7101614, + -1.43194 + ], + [ + 34.7100741, + -1.4312716 + ], + [ + 34.7100603, + -1.4301864 + ], + [ + 34.7100608, + -1.42963 + ], + [ + 34.710087, + -1.4292011 + ], + [ + 34.7101106, + -1.4287159 + ], + [ + 34.7100721, + -1.4282169 + ], + [ + 34.7100564, + -1.4279181 + ], + [ + 34.7100367, + -1.427365 + ], + [ + 34.7100528, + -1.4270339 + ], + [ + 34.7101091, + -1.4266617 + ], + [ + 34.7101729, + -1.4263756 + ], + [ + 34.7103279, + -1.4258273 + ], + [ + 34.7105097, + -1.4249798 + ], + [ + 34.7108166, + -1.4238072 + ], + [ + 34.7108711, + -1.4232892 + ], + [ + 34.7108719, + -1.4231437 + ], + [ + 34.7108162, + -1.4228603 + ], + [ + 34.7107576, + -1.4226705 + ], + [ + 34.7106211, + -1.4222575 + ], + [ + 34.7105044, + -1.4217816 + ], + [ + 34.7104039, + -1.4213099 + ], + [ + 34.7103371, + -1.4210971 + ], + [ + 34.7096862, + -1.4201272 + ], + [ + 34.7093327, + -1.4196236 + ], + [ + 34.709283, + -1.4195051 + ], + [ + 34.7092646, + -1.4193874 + ], + [ + 34.7092449, + -1.419242 + ], + [ + 34.7092283, + -1.4187391 + ], + [ + 34.7092282, + -1.4185127 + ], + [ + 34.7092208, + -1.4183196 + ], + [ + 34.7092146, + -1.4182294 + ], + [ + 34.7091999, + -1.4181651 + ], + [ + 34.7091667, + -1.4180518 + ], + [ + 34.7088946, + -1.4174852 + ], + [ + 34.708844, + -1.4173334 + ], + [ + 34.7088148, + -1.4172087 + ], + [ + 34.7086919, + -1.4168873 + ], + [ + 34.7086668, + -1.4167754 + ], + [ + 34.7086621, + -1.4167118 + ], + [ + 34.7086657, + -1.4165679 + ], + [ + 34.7086832, + -1.416435 + ], + [ + 34.708878, + -1.4157739 + ], + [ + 34.7089129, + -1.4156492 + ], + [ + 34.708944, + -1.4153844 + ], + [ + 34.708926, + -1.4153145 + ], + [ + 34.7089199, + -1.4152578 + ], + [ + 34.7089139, + -1.4151874 + ], + [ + 34.7089062, + -1.4150392 + ], + [ + 34.7089076, + -1.4148771 + ], + [ + 34.7089102, + -1.414594 + ], + [ + 34.7089356, + -1.4142281 + ], + [ + 34.7089705, + -1.4138139 + ], + [ + 34.7089625, + -1.4135859 + ], + [ + 34.708925, + -1.4133285 + ], + [ + 34.7088337, + -1.4131167 + ], + [ + 34.7086842, + -1.4128794 + ], + [ + 34.7085642, + -1.4126609 + ], + [ + 34.7084689, + -1.4124597 + ], + [ + 34.7084072, + -1.4122989 + ], + [ + 34.7083361, + -1.4120214 + ], + [ + 34.708186, + -1.4113349 + ], + [ + 34.7080613, + -1.4106753 + ], + [ + 34.7079337, + -1.4100894 + ], + [ + 34.7078748, + -1.4096939 + ], + [ + 34.7078548, + -1.4094378 + ], + [ + 34.7078615, + -1.4092005 + ], + [ + 34.7079154, + -1.4089536 + ], + [ + 34.7080234, + -1.4087133 + ], + [ + 34.7080785, + -1.408586 + ], + [ + 34.7085668, + -1.4080407 + ], + [ + 34.7087436, + -1.4077828 + ], + [ + 34.7088696, + -1.4075549 + ], + [ + 34.7090108, + -1.4072766 + ], + [ + 34.7091623, + -1.4070045 + ], + [ + 34.709279, + -1.4067041 + ], + [ + 34.7093688, + -1.4065204 + ], + [ + 34.7094694, + -1.4062496 + ], + [ + 34.7095257, + -1.4061169 + ], + [ + 34.7095446, + -1.4059775 + ], + [ + 34.7094667, + -1.4057335 + ], + [ + 34.7093983, + -1.4054814 + ], + [ + 34.709338, + -1.4048995 + ], + [ + 34.7093621, + -1.4046193 + ], + [ + 34.7093602, + -1.4036951 + ], + [ + 34.7093642, + -1.4036077 + ], + [ + 34.7093612, + -1.4028577 + ], + [ + 34.7093736, + -1.4015515 + ], + [ + 34.7093534, + -1.4011948 + ], + [ + 34.7094296, + -1.4008117 + ], + [ + 34.7094836, + -1.4005937 + ], + [ + 34.709602, + -1.4002509 + ], + [ + 34.7096465, + -1.4001093 + ], + [ + 34.7097221, + -1.3998376 + ], + [ + 34.7097645, + -1.3996171 + ], + [ + 34.70974, + -1.3994187 + ], + [ + 34.7096813, + -1.3992592 + ], + [ + 34.7095043, + -1.398991 + ], + [ + 34.7093364, + -1.3987091 + ], + [ + 34.7087586, + -1.3980431 + ], + [ + 34.7084797, + -1.3977121 + ], + [ + 34.7081737, + -1.3968883 + ], + [ + 34.7079513, + -1.3963927 + ], + [ + 34.707734, + -1.3959047 + ], + [ + 34.7075985, + -1.3957062 + ], + [ + 34.7074551, + -1.3954301 + ], + [ + 34.707085, + -1.3948335 + ], + [ + 34.7067819, + -1.3942718 + ], + [ + 34.706594, + -1.393718 + ], + [ + 34.7064949, + -1.3932501 + ], + [ + 34.7064989, + -1.3930611 + ], + [ + 34.7065083, + -1.392923 + ], + [ + 34.7065189, + -1.3925838 + ], + [ + 34.7065967, + -1.391951 + ], + [ + 34.7067872, + -1.3914616 + ], + [ + 34.7069911, + -1.3909294 + ], + [ + 34.7070446, + -1.3907202 + ], + [ + 34.7071305, + -1.390558 + ], + [ + 34.707329, + -1.3903449 + ], + [ + 34.7076816, + -1.3899774 + ], + [ + 34.7077337, + -1.3898742 + ], + [ + 34.7077783, + -1.3897428 + ], + [ + 34.7078118, + -1.389476 + ], + [ + 34.7077615, + -1.3891965 + ], + [ + 34.7077266, + -1.3890751 + ], + [ + 34.7076774, + -1.3890068 + ], + [ + 34.7076118, + -1.3889238 + ], + [ + 34.7075057, + -1.3889022 + ], + [ + 34.7073665, + -1.3888674 + ], + [ + 34.7066528, + -1.3888017 + ], + [ + 34.7059956, + -1.3886958 + ], + [ + 34.7053914, + -1.3884801 + ], + [ + 34.7044453, + -1.3882131 + ], + [ + 34.7036353, + -1.3878528 + ], + [ + 34.7031659, + -1.3877237 + ], + [ + 34.7027219, + -1.3876155 + ], + [ + 34.7022982, + -1.3875065 + ], + [ + 34.7021212, + -1.3874446 + ], + [ + 34.7018342, + -1.3873041 + ], + [ + 34.7015008, + -1.3870472 + ], + [ + 34.701232, + -1.3869233 + ], + [ + 34.7011337, + -1.386848 + ], + [ + 34.700992, + -1.3868394 + ], + [ + 34.7008313, + -1.3868971 + ], + [ + 34.7007492, + -1.3869876 + ], + [ + 34.7003714, + -1.3878377 + ], + [ + 34.7001833, + -1.3880656 + ], + [ + 34.6998993, + -1.3883324 + ], + [ + 34.6997357, + -1.3884597 + ], + [ + 34.6994085, + -1.3885804 + ], + [ + 34.6990725, + -1.3886487 + ], + [ + 34.6987987, + -1.388709 + ], + [ + 34.6976969, + -1.3888204 + ], + [ + 34.6966162, + -1.3888687 + ], + [ + 34.6964258, + -1.3888566 + ], + [ + 34.6960235, + -1.3888097 + ], + [ + 34.6956828, + -1.3886421 + ], + [ + 34.6948979, + -1.3883362 + ], + [ + 34.6944971, + -1.388148 + ], + [ + 34.6938804, + -1.3877706 + ], + [ + 34.6930404, + -1.3873006 + ], + [ + 34.692429, + -1.386918 + ], + [ + 34.6914393, + -1.3863817 + ], + [ + 34.6910506, + -1.3861161 + ], + [ + 34.6900627, + -1.3856429 + ], + [ + 34.6899085, + -1.3855789 + ], + [ + 34.6897096, + -1.3854539 + ], + [ + 34.689082, + -1.3851529 + ], + [ + 34.6889125, + -1.3851258 + ], + [ + 34.6884959, + -1.3851442 + ], + [ + 34.6881633, + -1.3851724 + ], + [ + 34.6879776, + -1.3851761 + ], + [ + 34.6865646, + -1.3853447 + ], + [ + 34.685182, + -1.385633 + ], + [ + 34.6847718, + -1.3857447 + ], + [ + 34.6843871, + -1.3858824 + ], + [ + 34.6841568, + -1.385996 + ], + [ + 34.6837877, + -1.3862235 + ], + [ + 34.6837274, + -1.3862517 + ], + [ + 34.6835448, + -1.3863926 + ], + [ + 34.6830733, + -1.386789 + ], + [ + 34.6830074, + -1.3868521 + ], + [ + 34.6826784, + -1.3870664 + ], + [ + 34.682208, + -1.3873086 + ], + [ + 34.6814881, + -1.3876119 + ], + [ + 34.6812308, + -1.3877238 + ], + [ + 34.68032, + -1.3882082 + ], + [ + 34.6800468, + -1.3883129 + ], + [ + 34.6796795, + -1.388437 + ], + [ + 34.6792596, + -1.3885995 + ], + [ + 34.6783292, + -1.388977 + ], + [ + 34.677118, + -1.389527 + ], + [ + 34.6768635, + -1.3895998 + ], + [ + 34.6762204, + -1.3894251 + ], + [ + 34.6759106, + -1.3893674 + ], + [ + 34.6756407, + -1.3893433 + ], + [ + 34.674968, + -1.3893751 + ], + [ + 34.6746448, + -1.3893726 + ], + [ + 34.6744663, + -1.3893663 + ], + [ + 34.673729, + -1.3892957 + ], + [ + 34.6729766, + -1.3893138 + ], + [ + 34.6724778, + -1.3893949 + ], + [ + 34.6720151, + -1.3895096 + ], + [ + 34.6715202, + -1.3895887 + ], + [ + 34.6708052, + -1.3896331 + ], + [ + 34.6703921, + -1.3896787 + ], + [ + 34.6702623, + -1.3896718 + ], + [ + 34.6698076, + -1.3896913 + ], + [ + 34.6694142, + -1.3897087 + ], + [ + 34.6672521, + -1.3897041 + ], + [ + 34.6665377, + -1.3897202 + ], + [ + 34.6660766, + -1.3897253 + ], + [ + 34.6652924, + -1.3897816 + ], + [ + 34.664703, + -1.3898622 + ], + [ + 34.6642048, + -1.3899784 + ], + [ + 34.6640593, + -1.3900069 + ], + [ + 34.6633059, + -1.3901544 + ], + [ + 34.6627302, + -1.3902242 + ], + [ + 34.662145, + -1.3902734 + ], + [ + 34.6620087, + -1.3902791 + ], + [ + 34.66153, + -1.3902992 + ], + [ + 34.6608383, + -1.3903028 + ], + [ + 34.6607551, + -1.3903108 + ], + [ + 34.6601704, + -1.3903757 + ], + [ + 34.6596608, + -1.3905017 + ], + [ + 34.6590894, + -1.390696 + ], + [ + 34.6586899, + -1.3909149 + ], + [ + 34.6580363, + -1.3911728 + ], + [ + 34.6577792, + -1.3912028 + ], + [ + 34.6571783, + -1.3913115 + ], + [ + 34.6567291, + -1.3914492 + ], + [ + 34.6562731, + -1.3915969 + ], + [ + 34.6553716, + -1.3918411 + ], + [ + 34.6549545, + -1.3919832 + ], + [ + 34.6545914, + -1.3921776 + ], + [ + 34.6536445, + -1.3926991 + ], + [ + 34.6525368, + -1.3933721 + ], + [ + 34.6513138, + -1.3940894 + ], + [ + 34.6509406, + -1.3942651 + ], + [ + 34.6505681, + -1.3943562 + ], + [ + 34.6500759, + -1.3942168 + ], + [ + 34.6493705, + -1.3939982 + ], + [ + 34.6488407, + -1.3939728 + ], + [ + 34.6481469, + -1.3939807 + ], + [ + 34.6472455, + -1.3939788 + ], + [ + 34.6470429, + -1.3939534 + ], + [ + 34.6450356, + -1.393597 + ], + [ + 34.6443627, + -1.3934727 + ], + [ + 34.6438244, + -1.3933942 + ], + [ + 34.6436319, + -1.3933617 + ], + [ + 34.6434305, + -1.3933223 + ], + [ + 34.6423294, + -1.3931791 + ], + [ + 34.6420786, + -1.3931308 + ], + [ + 34.6418399, + -1.3930732 + ], + [ + 34.6417447, + -1.3930289 + ], + [ + 34.6409413, + -1.3926991 + ], + [ + 34.6402895, + -1.3924068 + ], + [ + 34.6399327, + -1.3921695 + ], + [ + 34.6396632, + -1.391935 + ], + [ + 34.6393267, + -1.3915723 + ], + [ + 34.6391483, + -1.3913933 + ], + [ + 34.6386668, + -1.3908999 + ], + [ + 34.6384824, + -1.3907262 + ], + [ + 34.638302, + -1.390613 + ], + [ + 34.6381224, + -1.3905996 + ], + [ + 34.6379963, + -1.3906345 + ], + [ + 34.6379479, + -1.3906813 + ], + [ + 34.6377441, + -1.3908342 + ], + [ + 34.6370494, + -1.3913557 + ], + [ + 34.6368429, + -1.3915474 + ], + [ + 34.6361657, + -1.3918873 + ], + [ + 34.6355961, + -1.3923124 + ], + [ + 34.6352567, + -1.3925462 + ], + [ + 34.6343696, + -1.3931759 + ], + [ + 34.6338107, + -1.3936101 + ], + [ + 34.6336561, + -1.3936766 + ], + [ + 34.6325317, + -1.3944287 + ], + [ + 34.6313269, + -1.3949702 + ], + [ + 34.6307107, + -1.3952688 + ], + [ + 34.6298291, + -1.3955349 + ], + [ + 34.6297017, + -1.3955483 + ], + [ + 34.6296414, + -1.3955676 + ], + [ + 34.6282598, + -1.3957988 + ], + [ + 34.6272799, + -1.3959871 + ], + [ + 34.6266506, + -1.3960992 + ], + [ + 34.6263695, + -1.3961355 + ], + [ + 34.6263371, + -1.3961369 + ], + [ + 34.6249949, + -1.3963228 + ], + [ + 34.6245793, + -1.3963736 + ], + [ + 34.6241831, + -1.3964237 + ], + [ + 34.6237549, + -1.3964928 + ], + [ + 34.6236322, + -1.3964932 + ], + [ + 34.6225421, + -1.396626 + ], + [ + 34.6222404, + -1.3966374 + ], + [ + 34.6213156, + -1.3965791 + ], + [ + 34.6209267, + -1.3965375 + ], + [ + 34.6205002, + -1.3965296 + ], + [ + 34.6200693, + -1.3965674 + ], + [ + 34.6195868, + -1.3965636 + ], + [ + 34.6191168, + -1.3965947 + ], + [ + 34.6189427, + -1.396603 + ], + [ + 34.6183732, + -1.3966649 + ], + [ + 34.6178917, + -1.3966826 + ], + [ + 34.6176545, + -1.3966996 + ], + [ + 34.6165348, + -1.3967327 + ], + [ + 34.6154496, + -1.3967857 + ], + [ + 34.6151251, + -1.3968298 + ], + [ + 34.6146753, + -1.3969371 + ], + [ + 34.6143231, + -1.3970443 + ], + [ + 34.6137411, + -1.3971851 + ], + [ + 34.6133522, + -1.3972575 + ], + [ + 34.6131134, + -1.3972508 + ], + [ + 34.6116803, + -1.3972664 + ], + [ + 34.6108805, + -1.3972277 + ], + [ + 34.6104668, + -1.3971828 + ], + [ + 34.6101174, + -1.3971469 + ], + [ + 34.6091477, + -1.3970966 + ], + [ + 34.6085188, + -1.3970859 + ], + [ + 34.6083672, + -1.3970738 + ], + [ + 34.6081245, + -1.3970309 + ], + [ + 34.6080601, + -1.3969773 + ], + [ + 34.6078389, + -1.3969264 + ], + [ + 34.6077933, + -1.3969076 + ], + [ + 34.6076524, + -1.3967118 + ], + [ + 34.6070892, + -1.39637 + ], + [ + 34.6067445, + -1.3961019 + ], + [ + 34.6064481, + -1.3958377 + ], + [ + 34.6057322, + -1.395391 + ], + [ + 34.605585, + -1.395311 + ], + [ + 34.6054078, + -1.3951774 + ], + [ + 34.6050601, + -1.3949636 + ], + [ + 34.6045276, + -1.3945936 + ], + [ + 34.6042198, + -1.3944299 + ], + [ + 34.6040641, + -1.3943351 + ], + [ + 34.6037566, + -1.3941874 + ], + [ + 34.6035916, + -1.3941431 + ], + [ + 34.6034481, + -1.3941297 + ], + [ + 34.603271, + -1.3941162 + ], + [ + 34.6029318, + -1.3940948 + ], + [ + 34.6023698, + -1.394064 + ], + [ + 34.6017422, + -1.3940532 + ], + [ + 34.601188, + -1.3940594 + ], + [ + 34.6008477, + -1.394051 + ], + [ + 34.5999586, + -1.3940291 + ], + [ + 34.5998244, + -1.3940036 + ], + [ + 34.5996233, + -1.3940251 + ], + [ + 34.5995267, + -1.3940224 + ], + [ + 34.5988464, + -1.3940806 + ], + [ + 34.5985137, + -1.3941195 + ], + [ + 34.5982875, + -1.3941605 + ], + [ + 34.598012, + -1.394178 + ], + [ + 34.5975892, + -1.3942297 + ], + [ + 34.5972738, + -1.3942559 + ], + [ + 34.5961396, + -1.3944219 + ], + [ + 34.5957252, + -1.3944791 + ], + [ + 34.5956995, + -1.3944824 + ], + [ + 34.593036, + -1.3949128 + ], + [ + 34.5928737, + -1.3949316 + ], + [ + 34.592506, + -1.3950185 + ], + [ + 34.5917006, + -1.39521 + ], + [ + 34.5912373, + -1.3953269 + ], + [ + 34.5908939, + -1.3954489 + ], + [ + 34.5907656, + -1.3954626 + ], + [ + 34.5907096, + -1.395462 + ], + [ + 34.5906432, + -1.3954502 + ], + [ + 34.5905398, + -1.3953979 + ], + [ + 34.5896695, + -1.3951552 + ], + [ + 34.5893423, + -1.3951151 + ], + [ + 34.5889977, + -1.3950467 + ], + [ + 34.5884304, + -1.3950226 + ], + [ + 34.5877987, + -1.3950132 + ], + [ + 34.5873923, + -1.3950158 + ], + [ + 34.5870315, + -1.3950493 + ], + [ + 34.586758, + -1.3950936 + ], + [ + 34.5862495, + -1.3951934 + ], + [ + 34.5854476, + -1.3953373 + ], + [ + 34.5853217, + -1.3953565 + ], + [ + 34.5849891, + -1.3954247 + ], + [ + 34.5843305, + -1.395473 + ], + [ + 34.5834789, + -1.3954829 + ], + [ + 34.5833033, + -1.395485 + ], + [ + 34.5821788, + -1.3955085 + ], + [ + 34.5815661, + -1.3955433 + ], + [ + 34.581203, + -1.3955505 + ], + [ + 34.5794754, + -1.3956809 + ], + [ + 34.5791431, + -1.3957024 + ], + [ + 34.5777793, + -1.3957908 + ], + [ + 34.5772308, + -1.3958538 + ], + [ + 34.5768828, + -1.3958666 + ] + ] + }, + "id": "way/438982528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438983291", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6766764, + -1.8389232 + ], + [ + 34.6766563, + -1.8392154 + ], + [ + 34.6766053, + -1.8396645 + ], + [ + 34.6765624, + -1.8399795 + ], + [ + 34.6765034, + -1.8401979 + ], + [ + 34.6764497, + -1.8404245 + ], + [ + 34.6763907, + -1.8407301 + ], + [ + 34.6763233, + -1.841189 + ], + [ + 34.6759924, + -1.8431053 + ], + [ + 34.6759388, + -1.8433064 + ], + [ + 34.6759012, + -1.8435155 + ], + [ + 34.6758423, + -1.8437942 + ], + [ + 34.6757349, + -1.8442366 + ], + [ + 34.6755566, + -1.8450971 + ], + [ + 34.6754935, + -1.8454157 + ], + [ + 34.6754799, + -1.8454713 + ], + [ + 34.6752872, + -1.8463393 + ], + [ + 34.6751663, + -1.8468692 + ], + [ + 34.6750054, + -1.8476064 + ], + [ + 34.6748178, + -1.8483001 + ], + [ + 34.6747572, + -1.848577 + ], + [ + 34.6746728, + -1.8489629 + ], + [ + 34.6744396, + -1.8499642 + ], + [ + 34.6743, + -1.8506062 + ], + [ + 34.6741095, + -1.8512742 + ], + [ + 34.6739982, + -1.8518234 + ], + [ + 34.6738869, + -1.8523729 + ], + [ + 34.6736348, + -1.8534318 + ], + [ + 34.6734202, + -1.8543861 + ], + [ + 34.6733344, + -1.8547762 + ], + [ + 34.6732592, + -1.8551716 + ], + [ + 34.6730447, + -1.8556329 + ], + [ + 34.6727411, + -1.8561394 + ], + [ + 34.6727121, + -1.8561876 + ], + [ + 34.6726064, + -1.8563794 + ], + [ + 34.6724626, + -1.8566188 + ], + [ + 34.6721917, + -1.8570696 + ], + [ + 34.6720684, + -1.8572707 + ], + [ + 34.6718913, + -1.8575655 + ], + [ + 34.6716016, + -1.8580347 + ], + [ + 34.6713495, + -1.8584771 + ], + [ + 34.6709874, + -1.8590454 + ], + [ + 34.6706253, + -1.8596539 + ], + [ + 34.670223, + -1.8603 + ], + [ + 34.6695069, + -1.8614983 + ], + [ + 34.6693474, + -1.8617556 + ], + [ + 34.6691501, + -1.8621631 + ], + [ + 34.6689946, + -1.8625412 + ], + [ + 34.6689355, + -1.8628306 + ], + [ + 34.6687961, + -1.863399 + ], + [ + 34.6687418, + -1.8636782 + ], + [ + 34.6687004, + -1.8638913 + ], + [ + 34.6684896, + -1.8649673 + ], + [ + 34.6684613, + -1.8651147 + ], + [ + 34.6684519, + -1.8651645 + ], + [ + 34.6683302, + -1.8658115 + ], + [ + 34.6682838, + -1.8660583 + ], + [ + 34.668191, + -1.8664754 + ], + [ + 34.668173, + -1.8665619 + ], + [ + 34.6681514, + -1.8666654 + ], + [ + 34.6681285, + -1.8667755 + ], + [ + 34.6680182, + -1.8673049 + ], + [ + 34.6679029, + -1.8677472 + ], + [ + 34.6677473, + -1.8681413 + ], + [ + 34.667412, + -1.8689268 + ], + [ + 34.6673021, + -1.8692029 + ], + [ + 34.6671304, + -1.8695836 + ], + [ + 34.6667656, + -1.8704441 + ], + [ + 34.6665484, + -1.8709749 + ], + [ + 34.6663633, + -1.8714735 + ], + [ + 34.6662211, + -1.8719882 + ], + [ + 34.6661165, + -1.872444 + ], + [ + 34.6659824, + -1.8731758 + ], + [ + 34.665828, + -1.8739035 + ], + [ + 34.6657642, + -1.8741899 + ], + [ + 34.6656552, + -1.8746422 + ], + [ + 34.6654969, + -1.8759156 + ], + [ + 34.6652824, + -1.8774624 + ], + [ + 34.6651912, + -1.878465 + ], + [ + 34.6652207, + -1.8789663 + ], + [ + 34.6653226, + -1.8793657 + ], + [ + 34.6656096, + -1.8803174 + ], + [ + 34.6657678, + -1.8809768 + ], + [ + 34.6657598, + -1.8814808 + ], + [ + 34.6656659, + -1.8821671 + ], + [ + 34.6654138, + -1.8839176 + ], + [ + 34.6653697, + -1.8842828 + ], + [ + 34.66534, + -1.8845289 + ] + ] + }, + "id": "way/438983291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438983297", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5878255, + -1.9301735 + ], + [ + 34.5878524, + -1.929254 + ], + [ + 34.5878229, + -1.928742 + ], + [ + 34.5877585, + -1.9283426 + ], + [ + 34.5877182, + -1.9280719 + ], + [ + 34.58767, + -1.9276805 + ], + [ + 34.5877129, + -1.9271417 + ], + [ + 34.5877665, + -1.9268682 + ], + [ + 34.5878282, + -1.9266913 + ], + [ + 34.5879382, + -1.9264018 + ], + [ + 34.5881125, + -1.9260292 + ], + [ + 34.5888475, + -1.9249864 + ], + [ + 34.5891505, + -1.9245092 + ], + [ + 34.5893249, + -1.9241125 + ], + [ + 34.5895153, + -1.9234075 + ], + [ + 34.5896682, + -1.922614 + ], + [ + 34.589754, + -1.9219465 + ], + [ + 34.5898077, + -1.9209064 + ], + [ + 34.589856, + -1.9203595 + ], + [ + 34.5899069, + -1.9194025 + ], + [ + 34.5899391, + -1.9188798 + ], + [ + 34.5900142, + -1.9184079 + ], + [ + 34.590084, + -1.9178155 + ], + [ + 34.5900813, + -1.917081 + ], + [ + 34.5900598, + -1.9162527 + ], + [ + 34.5900518, + -1.915872 + ], + [ + 34.5899418, + -1.9153895 + ], + [ + 34.5897406, + -1.914529 + ], + [ + 34.5896521, + -1.9139526 + ], + [ + 34.5895717, + -1.9137328 + ], + [ + 34.5893651, + -1.9133789 + ], + [ + 34.589054, + -1.9129366 + ], + [ + 34.5888448, + -1.912623 + ], + [ + 34.588598, + -1.9122021 + ], + [ + 34.5883405, + -1.9116338 + ], + [ + 34.5881474, + -1.9111432 + ], + [ + 34.5879999, + -1.9106366 + ], + [ + 34.5879838, + -1.9103524 + ], + [ + 34.5880187, + -1.9101621 + ], + [ + 34.5880562, + -1.9099851 + ], + [ + 34.588142, + -1.9097546 + ], + [ + 34.5882815, + -1.9094436 + ], + [ + 34.5885417, + -1.908937 + ], + [ + 34.5890325, + -1.9083124 + ], + [ + 34.5896789, + -1.9075725 + ], + [ + 34.590784, + -1.9066316 + ], + [ + 34.591409, + -1.9061195 + ], + [ + 34.5924389, + -1.9051813 + ], + [ + 34.5932432, + -1.9046089 + ], + [ + 34.5951803, + -1.9030529 + ], + [ + 34.5957676, + -1.9026266 + ], + [ + 34.5961189, + -1.9024148 + ], + [ + 34.597511, + -1.9015596 + ], + [ + 34.5982459, + -1.9010985 + ], + [ + 34.5989004, + -1.9007688 + ], + [ + 34.5993993, + -1.9006589 + ], + [ + 34.5999035, + -1.9005999 + ], + [ + 34.6007216, + -1.9006267 + ], + [ + 34.6014512, + -1.9006348 + ], + [ + 34.6019608, + -1.9006267 + ], + [ + 34.6022183, + -1.9005812 + ], + [ + 34.6023738, + -1.9005329 + ], + [ + 34.6026555, + -1.9003694 + ], + [ + 34.6032509, + -1.8999619 + ], + [ + 34.6048656, + -1.8987878 + ], + [ + 34.6054852, + -1.8983427 + ], + [ + 34.6056917, + -1.8981899 + ], + [ + 34.6058661, + -1.8981015 + ], + [ + 34.6060695, + -1.8980492 + ], + [ + 34.6061879, + -1.8980211 + ], + [ + 34.6064401, + -1.8979943 + ], + [ + 34.6070167, + -1.898005 + ], + [ + 34.60747, + -1.8980398 + ], + [ + 34.6084169, + -1.8981524 + ], + [ + 34.608779, + -1.8982221 + ], + [ + 34.6090901, + -1.8983293 + ], + [ + 34.6093556, + -1.8984232 + ], + [ + 34.6097767, + -1.8985894 + ], + [ + 34.6101201, + -1.8986698 + ], + [ + 34.6104419, + -1.8987234 + ], + [ + 34.6108791, + -1.8988018 + ], + [ + 34.6112355, + -1.8988958 + ], + [ + 34.6118313, + -1.8990022 + ], + [ + 34.612129, + -1.8990934 + ], + [ + 34.6125716, + -1.8993561 + ], + [ + 34.6129981, + -1.8995893 + ], + [ + 34.6135318, + -1.8999539 + ], + [ + 34.6137437, + -1.9001898 + ], + [ + 34.6140361, + -1.9005919 + ], + [ + 34.6141675, + -1.9007983 + ], + [ + 34.6142802, + -1.9009538 + ], + [ + 34.6144384, + -1.9011173 + ], + [ + 34.6145725, + -1.9012219 + ], + [ + 34.6148112, + -1.90138 + ], + [ + 34.6150526, + -1.9015141 + ], + [ + 34.6156105, + -1.9017982 + ], + [ + 34.6160853, + -1.9021226 + ], + [ + 34.6165305, + -1.9024335 + ], + [ + 34.617134, + -1.9028705 + ], + [ + 34.6182213, + -1.9034682 + ], + [ + 34.6192256, + -1.9040209 + ], + [ + 34.6198142, + -1.9043912 + ], + [ + 34.6201032, + -1.9045915 + ], + [ + 34.6207228, + -1.9050124 + ], + [ + 34.6212646, + -1.9053958 + ], + [ + 34.6216578, + -1.9056184 + ], + [ + 34.6219311, + -1.9057253 + ], + [ + 34.6221498, + -1.9057282 + ], + [ + 34.6222731, + -1.9057121 + ], + [ + 34.6223992, + -1.9056772 + ], + [ + 34.6225789, + -1.9056048 + ], + [ + 34.6227425, + -1.9055405 + ], + [ + 34.6230563, + -1.9053823 + ], + [ + 34.623912, + -1.9049642 + ], + [ + 34.6245557, + -1.9046693 + ], + [ + 34.62473, + -1.9046157 + ], + [ + 34.6251217, + -1.904546 + ], + [ + 34.625465, + -1.9044226 + ], + [ + 34.6257064, + -1.9042886 + ], + [ + 34.6263447, + -1.9039106 + ], + [ + 34.6268597, + -1.9035782 + ], + [ + 34.6284878, + -1.9025917 + ], + [ + 34.6289921, + -1.9022352 + ], + [ + 34.6294507, + -1.901892 + ], + [ + 34.6297619, + -1.9016401 + ], + [ + 34.6299362, + -1.901447 + ], + [ + 34.6301347, + -1.9011709 + ], + [ + 34.6303707, + -1.9008412 + ], + [ + 34.6307355, + -1.9003667 + ], + [ + 34.6311647, + -1.8997501 + ], + [ + 34.631398, + -1.8993427 + ], + [ + 34.6314973, + -1.8991362 + ], + [ + 34.6315429, + -1.8989191 + ], + [ + 34.6317306, + -1.898198 + ], + [ + 34.6320847, + -1.8973616 + ], + [ + 34.6324307, + -1.8964904 + ], + [ + 34.632884, + -1.8957022 + ], + [ + 34.6332917, + -1.8949382 + ], + [ + 34.633458, + -1.894646 + ], + [ + 34.6335501, + -1.8944878 + ], + [ + 34.6336672, + -1.8942868 + ], + [ + 34.6337986, + -1.8939302 + ], + [ + 34.6339193, + -1.8934397 + ], + [ + 34.6340507, + -1.8930268 + ], + [ + 34.6341205, + -1.8926569 + ], + [ + 34.6344423, + -1.8914905 + ], + [ + 34.6344585, + -1.8914318 + ], + [ + 34.6345582, + -1.8910235 + ], + [ + 34.6346784, + -1.8905311 + ], + [ + 34.6347991, + -1.890137 + ], + [ + 34.6349412, + -1.8893435 + ], + [ + 34.6350754, + -1.8887966 + ], + [ + 34.6353516, + -1.8874428 + ], + [ + 34.6354616, + -1.8869764 + ], + [ + 34.6356359, + -1.886341 + ], + [ + 34.6357884, + -1.8857747 + ], + [ + 34.6360052, + -1.8850378 + ], + [ + 34.636104, + -1.8847801 + ], + [ + 34.6363801, + -1.8840631 + ], + [ + 34.6364325, + -1.883927 + ], + [ + 34.6365396, + -1.8836729 + ], + [ + 34.6365921, + -1.8835142 + ], + [ + 34.6366712, + -1.8833011 + ], + [ + 34.6367598, + -1.8830209 + ], + [ + 34.6368965, + -1.8823869 + ], + [ + 34.6369502, + -1.882151 + ], + [ + 34.6370199, + -1.8818132 + ], + [ + 34.6371031, + -1.88158 + ], + [ + 34.6372244, + -1.8812706 + ], + [ + 34.6373364, + -1.8809849 + ], + [ + 34.6374464, + -1.880564 + ], + [ + 34.6374759, + -1.8802691 + ], + [ + 34.6374437, + -1.879733 + ], + [ + 34.637323, + -1.8790789 + ], + [ + 34.6372935, + -1.8787036 + ], + [ + 34.6372855, + -1.8782666 + ], + [ + 34.6373176, + -1.8780307 + ], + [ + 34.6377119, + -1.8769316 + ], + [ + 34.6377839, + -1.8767404 + ], + [ + 34.6379238, + -1.8763686 + ], + [ + 34.6379866, + -1.8760647 + ], + [ + 34.6380258, + -1.8758753 + ], + [ + 34.6380714, + -1.8752186 + ], + [ + 34.6380884, + -1.8751104 + ], + [ + 34.6381626, + -1.8746368 + ], + [ + 34.6383262, + -1.8741168 + ], + [ + 34.6386695, + -1.8734841 + ], + [ + 34.6387191, + -1.8734172 + ], + [ + 34.6389377, + -1.8731222 + ], + [ + 34.639619, + -1.8721223 + ], + [ + 34.6401501, + -1.8713502 + ], + [ + 34.6408153, + -1.8704066 + ], + [ + 34.6413141, + -1.8696613 + ], + [ + 34.6417862, + -1.8689777 + ], + [ + 34.6420866, + -1.8685595 + ], + [ + 34.6425211, + -1.8679322 + ], + [ + 34.6430656, + -1.8671253 + ], + [ + 34.6440211, + -1.8657806 + ], + [ + 34.6445011, + -1.8650526 + ], + [ + 34.644683, + -1.8648037 + ], + [ + 34.6450692, + -1.8641818 + ], + [ + 34.6457022, + -1.8632355 + ], + [ + 34.6458277, + -1.8630535 + ], + [ + 34.6464211, + -1.8621926 + ], + [ + 34.6470353, + -1.861257 + ], + [ + 34.6472847, + -1.8608898 + ], + [ + 34.6475717, + -1.8604367 + ], + [ + 34.6477275, + -1.8601218 + ], + [ + 34.6477889, + -1.8600498 + ], + [ + 34.6481059, + -1.8595319 + ], + [ + 34.6481887, + -1.8593966 + ], + [ + 34.6487145, + -1.8584528 + ], + [ + 34.6495593, + -1.8570777 + ], + [ + 34.650093, + -1.8561662 + ], + [ + 34.6505704, + -1.8554504 + ], + [ + 34.650836, + -1.8551475 + ], + [ + 34.651072, + -1.8549169 + ], + [ + 34.6512812, + -1.8547561 + ], + [ + 34.6518096, + -1.8544693 + ], + [ + 34.652617, + -1.8540484 + ], + [ + 34.6531372, + -1.85371 + ], + [ + 34.6532312, + -1.8536489 + ], + [ + 34.6536194, + -1.8533409 + ], + [ + 34.6539977, + -1.8530228 + ], + [ + 34.6545783, + -1.8525346 + ], + [ + 34.6548808, + -1.8522803 + ], + [ + 34.6552455, + -1.8520619 + ], + [ + 34.6556827, + -1.8518984 + ], + [ + 34.6559912, + -1.8518287 + ], + [ + 34.6586204, + -1.851059 + ], + [ + 34.6587027, + -1.8510336 + ], + [ + 34.6603127, + -1.8505368 + ], + [ + 34.6603525, + -1.8505246 + ], + [ + 34.6631499, + -1.8496688 + ], + [ + 34.6645796, + -1.8490299 + ], + [ + 34.6647537, + -1.8489243 + ], + [ + 34.6648713, + -1.848853 + ], + [ + 34.6651939, + -1.8486573 + ], + [ + 34.665615, + -1.8483382 + ], + [ + 34.6659958, + -1.847971 + ], + [ + 34.6662641, + -1.8477083 + ], + [ + 34.6669962, + -1.8469978 + ], + [ + 34.66748, + -1.8465572 + ], + [ + 34.6677883, + -1.8462486 + ], + [ + 34.6681683, + -1.8458934 + ], + [ + 34.6684107, + -1.8456478 + ], + [ + 34.6687911, + -1.8451648 + ], + [ + 34.6689597, + -1.8447352 + ], + [ + 34.6690911, + -1.8442607 + ], + [ + 34.6692011, + -1.8435959 + ], + [ + 34.6692185, + -1.8433069 + ], + [ + 34.669218, + -1.8432533 + ], + [ + 34.6692149, + -1.8429262 + ], + [ + 34.6692287, + -1.8426368 + ], + [ + 34.6692333, + -1.8425396 + ], + [ + 34.6692467, + -1.842159 + ], + [ + 34.6692147, + -1.841439 + ], + [ + 34.6692175, + -1.8409179 + ], + [ + 34.6692473, + -1.8404624 + ], + [ + 34.6692735, + -1.840344 + ], + [ + 34.6693539, + -1.8401644 + ], + [ + 34.6693959, + -1.84011 + ], + [ + 34.6695471, + -1.839832 + ], + [ + 34.6696972, + -1.8395612 + ], + [ + 34.6698582, + -1.8392315 + ], + [ + 34.6699145, + -1.8391323 + ], + [ + 34.670105, + -1.8387596 + ], + [ + 34.6701613, + -1.8386203 + ], + [ + 34.6702176, + -1.838505 + ], + [ + 34.6703115, + -1.8383307 + ], + [ + 34.6707621, + -1.8374487 + ], + [ + 34.6710035, + -1.8371726 + ], + [ + 34.6712622, + -1.836943 + ], + [ + 34.6714119, + -1.8368409 + ], + [ + 34.6716171, + -1.8367145 + ] + ] + }, + "id": "way/438983297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/438984733", + "highway": "secondary", + "ref": "R197", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0463921, + -2.0276039 + ], + [ + 34.0472659, + -2.0271748 + ], + [ + 34.0482404, + -2.0266403 + ], + [ + 34.0499754, + -2.0255595 + ], + [ + 34.0522572, + -2.0240869 + ], + [ + 34.0530296, + -2.0235287 + ], + [ + 34.0534478, + -2.0231604 + ], + [ + 34.0536832, + -2.0229348 + ], + [ + 34.0548597, + -2.0218066 + ], + [ + 34.055631, + -2.0211321 + ], + [ + 34.0561728, + -2.0206537 + ], + [ + 34.0566301, + -2.0202529 + ], + [ + 34.0568751, + -2.0200635 + ], + [ + 34.0572369, + -2.019818 + ], + [ + 34.0575693, + -2.01955 + ], + [ + 34.0579543, + -2.0191961 + ], + [ + 34.0582984, + -2.0188402 + ], + [ + 34.0588086, + -2.0182693 + ], + [ + 34.0592944, + -2.017708 + ], + [ + 34.0598185, + -2.017116 + ], + [ + 34.060168, + -2.0167488 + ], + [ + 34.0602317, + -2.0166844 + ], + [ + 34.0604199, + -2.0164901 + ], + [ + 34.060779, + -2.0161669 + ], + [ + 34.0613959, + -2.0156189 + ], + [ + 34.0623191, + -2.0147752 + ], + [ + 34.0634985, + -2.0135777 + ], + [ + 34.0640081, + -2.0130335 + ], + [ + 34.0642939, + -2.0127246 + ], + [ + 34.0645311, + -2.0124552 + ], + [ + 34.0645909, + -2.0123799 + ], + [ + 34.0689482, + -2.0074318 + ], + [ + 34.0696174, + -2.0066424 + ], + [ + 34.0706648, + -2.0053584 + ], + [ + 34.0723812, + -2.0031326 + ], + [ + 34.0725193, + -2.0029583 + ], + [ + 34.0738419, + -2.0011312 + ], + [ + 34.0741825, + -2.000646 + ], + [ + 34.0742938, + -2.0004892 + ], + [ + 34.0743797, + -2.0003136 + ], + [ + 34.0746278, + -1.999685 + ], + [ + 34.0752393, + -1.9981303 + ], + [ + 34.0754861, + -1.9975244 + ], + [ + 34.0759718, + -1.9964071 + ], + [ + 34.0761419, + -1.9959992 + ], + [ + 34.0763323, + -1.9956145 + ], + [ + 34.0767144, + -1.9950009 + ], + [ + 34.0768822, + -1.9948063 + ], + [ + 34.0772992, + -1.9943895 + ], + [ + 34.077487, + -1.9942099 + ], + [ + 34.0779832, + -1.9937046 + ], + [ + 34.0781763, + -1.9935344 + ], + [ + 34.0790674, + -1.9928987 + ], + [ + 34.0794892, + -1.9925548 + ], + [ + 34.0800552, + -1.9920383 + ], + [ + 34.0804361, + -1.9917756 + ], + [ + 34.0806479, + -1.9916559 + ], + [ + 34.0815371, + -1.9911053 + ], + [ + 34.0822902, + -1.9905855 + ], + [ + 34.0824662, + -1.990464 + ], + [ + 34.0830485, + -1.9899771 + ], + [ + 34.0833077, + -1.9897679 + ], + [ + 34.08357, + -1.9895239 + ], + [ + 34.0836543, + -1.9894156 + ], + [ + 34.0837362, + -1.9892938 + ], + [ + 34.0840482, + -1.9885194 + ], + [ + 34.0841491, + -1.988267 + ], + [ + 34.0842149, + -1.9881276 + ], + [ + 34.0843208, + -1.9879949 + ], + [ + 34.0844402, + -1.9878788 + ], + [ + 34.0847749, + -1.9875763 + ], + [ + 34.0849444, + -1.9874303 + ], + [ + 34.0852321, + -1.9872172 + ], + [ + 34.0857018, + -1.9868755 + ], + [ + 34.086605, + -1.9863173 + ], + [ + 34.0882212, + -1.9853672 + ], + [ + 34.0890294, + -1.9849277 + ], + [ + 34.0910615, + -1.9838707 + ], + [ + 34.0920751, + -1.9833493 + ], + [ + 34.0929328, + -1.9830291 + ], + [ + 34.0936057, + -1.9828241 + ], + [ + 34.0948597, + -1.9826284 + ], + [ + 34.098089, + -1.9821714 + ], + [ + 34.0988991, + -1.9820641 + ], + [ + 34.0993384, + -1.9820137 + ], + [ + 34.0998673, + -1.9819529 + ], + [ + 34.101643, + -1.9816567 + ], + [ + 34.1034164, + -1.9814021 + ], + [ + 34.1037431, + -1.9813497 + ], + [ + 34.1040858, + -1.9812902 + ], + [ + 34.1043761, + -1.9812398 + ], + [ + 34.1046551, + -1.9812037 + ], + [ + 34.1049895, + -1.9811747 + ], + [ + 34.1053203, + -1.9811594 + ], + [ + 34.1056851, + -1.9811567 + ], + [ + 34.1062966, + -1.9812063 + ], + [ + 34.1066976, + -1.9812653 + ], + [ + 34.1072877, + -1.9814168 + ], + [ + 34.1080762, + -1.9816835 + ], + [ + 34.1088045, + -1.9819247 + ], + [ + 34.1095018, + -1.9821419 + ], + [ + 34.1100678, + -1.9822987 + ], + [ + 34.1118555, + -1.9828321 + ], + [ + 34.1147344, + -1.9837163 + ], + [ + 34.1162555, + -1.9842033 + ], + [ + 34.1177864, + -1.984668 + ], + [ + 34.1187987, + -1.9849752 + ], + [ + 34.1209066, + -1.9855918 + ], + [ + 34.1219231, + -1.9858974 + ], + [ + 34.1224274, + -1.9860462 + ], + [ + 34.1230388, + -1.9862096 + ], + [ + 34.1236236, + -1.986353 + ], + [ + 34.1246657, + -1.9865836 + ], + [ + 34.1251685, + -1.9867093 + ], + [ + 34.1261704, + -1.9870125 + ], + [ + 34.1265473, + -1.9870996 + ], + [ + 34.1274378, + -1.9872632 + ], + [ + 34.1278305, + -1.987315 + ], + [ + 34.1283631, + -1.9873476 + ], + [ + 34.128567, + -1.9873717 + ], + [ + 34.1288486, + -1.9874039 + ], + [ + 34.1292389, + -1.9874173 + ], + [ + 34.129656, + -1.9873918 + ], + [ + 34.130981, + -1.9872136 + ], + [ + 34.1319533, + -1.9870836 + ], + [ + 34.1322671, + -1.9870286 + ], + [ + 34.1326238, + -1.9869442 + ], + [ + 34.1329525, + -1.9868518 + ], + [ + 34.1333722, + -1.9866908 + ], + [ + 34.1340458, + -1.9863767 + ], + [ + 34.1357214, + -1.9854503 + ], + [ + 34.1391552, + -1.9835205 + ], + [ + 34.1400549, + -1.9830399 + ], + [ + 34.1402923, + -1.9829259 + ], + [ + 34.1410336, + -1.9826593 + ], + [ + 34.1423173, + -1.9822933 + ], + [ + 34.142548, + -1.9822169 + ], + [ + 34.1427116, + -1.9821593 + ], + [ + 34.1430522, + -1.9819944 + ], + [ + 34.143405, + -1.9817894 + ], + [ + 34.1437121, + -1.9815736 + ], + [ + 34.1442304, + -1.9811984 + ], + [ + 34.1451967, + -1.9804772 + ], + [ + 34.1458713, + -1.980051 + ], + [ + 34.1461837, + -1.9798634 + ], + [ + 34.1464922, + -1.9796985 + ], + [ + 34.1467497, + -1.9795913 + ], + [ + 34.1475919, + -1.9793366 + ] + ] + }, + "id": "way/438984733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/439291782", + "highway": "trunk", + "ref": "T36", + "source": "Bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7894526, + -3.1828466 + ], + [ + 33.7892622, + -3.1829028 + ], + [ + 33.7890986, + -3.1829349 + ], + [ + 33.7889162, + -3.1829617 + ], + [ + 33.7886882, + -3.1829671 + ], + [ + 33.7884656, + -3.1829537 + ], + [ + 33.7880605, + -3.182876 + ], + [ + 33.7876824, + -3.1827448 + ], + [ + 33.7874973, + -3.1826778 + ], + [ + 33.7873927, + -3.1826457 + ], + [ + 33.7865436, + -3.1823762 + ], + [ + 33.7860408, + -3.1821637 + ], + [ + 33.7858383, + -3.1820766 + ], + [ + 33.7857378, + -3.1820244 + ], + [ + 33.7855299, + -3.1819354 + ] + ] + }, + "id": "way/439291782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/439656015", + "highway": "primary", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9649795, + -1.7661074 + ], + [ + 33.9653483, + -1.7652771 + ], + [ + 33.9656671, + -1.7645991 + ], + [ + 33.9660492, + -1.7637864 + ], + [ + 33.9662009, + -1.7634639 + ], + [ + 33.9662673, + -1.7633226 + ], + [ + 33.9664654, + -1.7629014 + ], + [ + 33.9669263, + -1.7619202 + ], + [ + 33.9671248, + -1.7616387 + ], + [ + 33.9672831, + -1.7613223 + ], + [ + 33.9678115, + -1.7602741 + ], + [ + 33.9680743, + -1.75977 + ], + [ + 33.9683291, + -1.7591722 + ], + [ + 33.9685303, + -1.7585743 + ], + [ + 33.9686832, + -1.7580569 + ], + [ + 33.9691418, + -1.7569148 + ], + [ + 33.9694798, + -1.7561427 + ], + [ + 33.9697909, + -1.7555422 + ], + [ + 33.9704132, + -1.7539336 + ], + [ + 33.970558, + -1.7532741 + ], + [ + 33.9706653, + -1.7525073 + ], + [ + 33.9706922, + -1.7518961 + ], + [ + 33.9708981, + -1.7496808 + ], + [ + 33.9709442, + -1.7491789 + ], + [ + 33.9711132, + -1.7486159 + ], + [ + 33.9715755, + -1.7469963 + ], + [ + 33.9717537, + -1.7462123 + ], + [ + 33.9720033, + -1.7452383 + ], + [ + 33.9720037, + -1.7444658 + ], + [ + 33.9719098, + -1.7438706 + ], + [ + 33.9718132, + -1.7433852 + ], + [ + 33.9715063, + -1.7418778 + ], + [ + 33.9713972, + -1.7413421 + ], + [ + 33.9713022, + -1.74057 + ], + [ + 33.9714083, + -1.7397982 + ], + [ + 33.9717355, + -1.7384711 + ], + [ + 33.9719914, + -1.7376717 + ], + [ + 33.9722053, + -1.7370065 + ], + [ + 33.9722885, + -1.736662 + ], + [ + 33.9723479, + -1.73608 + ], + [ + 33.972241, + -1.735391 + ], + [ + 33.971942, + -1.7347687 + ], + [ + 33.9705167, + -1.7322046 + ], + [ + 33.9696146, + -1.7305564 + ], + [ + 33.9695107, + -1.7303524 + ], + [ + 33.9685839, + -1.7286587 + ], + [ + 33.9684381, + -1.7283708 + ], + [ + 33.9677132, + -1.7268503 + ], + [ + 33.9672973, + -1.7257575 + ], + [ + 33.9670068, + -1.7251051 + ], + [ + 33.9667681, + -1.7247405 + ], + [ + 33.9662692, + -1.7242257 + ], + [ + 33.9658266, + -1.7238102 + ], + [ + 33.9655235, + -1.7235984 + ], + [ + 33.9652526, + -1.7234751 + ], + [ + 33.964228, + -1.7230649 + ], + [ + 33.9633107, + -1.7227834 + ], + [ + 33.9628346, + -1.7226748 + ], + [ + 33.962213, + -1.7225836 + ], + [ + 33.9617094, + -1.7225421 + ], + [ + 33.9613312, + -1.7225153 + ], + [ + 33.9611086, + -1.7224643 + ], + [ + 33.9608377, + -1.7223919 + ], + [ + 33.9606339, + -1.7223196 + ], + [ + 33.9596468, + -1.7217056 + ], + [ + 33.9593987, + -1.7215421 + ], + [ + 33.9593182, + -1.7214697 + ], + [ + 33.9592673, + -1.7213986 + ], + [ + 33.9592056, + -1.7212565 + ], + [ + 33.9591265, + -1.7211144 + ], + [ + 33.9590514, + -1.7210541 + ], + [ + 33.9589642, + -1.7210085 + ], + [ + 33.9587992, + -1.720963 + ], + [ + 33.958704, + -1.7209482 + ], + [ + 33.9586303, + -1.7209348 + ], + [ + 33.9585337, + -1.7208718 + ], + [ + 33.9583325, + -1.7206707 + ], + [ + 33.9582387, + -1.7205367 + ], + [ + 33.9581582, + -1.7203651 + ], + [ + 33.9577378, + -1.7191323 + ], + [ + 33.9577138, + -1.7190522 + ], + [ + 33.9571339, + -1.7171203 + ], + [ + 33.9569786, + -1.7166027 + ], + [ + 33.9564693, + -1.715109 + ], + [ + 33.9559748, + -1.7136586 + ], + [ + 33.955821, + -1.7132457 + ], + [ + 33.955543, + -1.7124213 + ], + [ + 33.9554706, + -1.7122604 + ], + [ + 33.9553821, + -1.7121425 + ], + [ + 33.9551782, + -1.7117175 + ], + [ + 33.9549647, + -1.7113153 + ], + [ + 33.9546552, + -1.7105097 + ], + [ + 33.9543688, + -1.7095513 + ], + [ + 33.9543267, + -1.7094346 + ], + [ + 33.9542744, + -1.7093421 + ], + [ + 33.9533973, + -1.7081022 + ], + [ + 33.9532551, + -1.7078502 + ], + [ + 33.9528099, + -1.7068528 + ], + [ + 33.9527589, + -1.7066866 + ], + [ + 33.9526972, + -1.7062952 + ], + [ + 33.9526704, + -1.7060217 + ], + [ + 33.9526248, + -1.7057992 + ], + [ + 33.9525685, + -1.7056383 + ], + [ + 33.952378, + -1.7052469 + ], + [ + 33.9521983, + -1.7049144 + ], + [ + 33.952032, + -1.7045177 + ], + [ + 33.9516485, + -1.7037482 + ], + [ + 33.9511335, + -1.7028152 + ], + [ + 33.950817, + -1.7022683 + ], + [ + 33.9504817, + -1.7017964 + ], + [ + 33.9501572, + -1.7013098 + ], + [ + 33.949862, + -1.7009337 + ], + [ + 33.9469874, + -1.6979597 + ], + [ + 33.9456338, + -1.6964222 + ], + [ + 33.9453846, + -1.6961443 + ], + [ + 33.94501, + -1.6957266 + ], + [ + 33.9449188, + -1.6956408 + ], + [ + 33.9448303, + -1.6955523 + ], + [ + 33.9445621, + -1.6950912 + ], + [ + 33.9443663, + -1.6946595 + ], + [ + 33.9441115, + -1.694126 + ], + [ + 33.943685, + -1.693252 + ], + [ + 33.9432961, + -1.6924235 + ], + [ + 33.9424324, + -1.6906111 + ], + [ + 33.941963, + -1.6895494 + ], + [ + 33.9411074, + -1.687729 + ], + [ + 33.9406675, + -1.6867719 + ], + [ + 33.9403175, + -1.6858496 + ], + [ + 33.9402719, + -1.6856941 + ], + [ + 33.9401659, + -1.6851512 + ], + [ + 33.9400542, + -1.6846186 + ], + [ + 33.9398816, + -1.6833367 + ], + [ + 33.9398328, + -1.6829743 + ], + [ + 33.9397897, + -1.6822712 + ], + [ + 33.9397885, + -1.6822507 + ], + [ + 33.9397743, + -1.6820197 + ], + [ + 33.9397675, + -1.6815791 + ], + [ + 33.9397537, + -1.6806818 + ], + [ + 33.9394632, + -1.6791671 + ], + [ + 33.9394061, + -1.6786991 + ], + [ + 33.939357, + -1.6782883 + ] + ] + }, + "id": "way/439656015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440586717", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4790082, + -1.1104915 + ], + [ + 34.4790809, + -1.1106598 + ] + ] + }, + "id": "way/440586717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440586718", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4790809, + -1.1106598 + ], + [ + 34.4791625, + -1.1108531 + ], + [ + 34.479243, + -1.1110703 + ], + [ + 34.4793127, + -1.1112902 + ], + [ + 34.4793664, + -1.1114726 + ], + [ + 34.4794281, + -1.1117206 + ], + [ + 34.4795273, + -1.112084 + ], + [ + 34.4796628, + -1.1125734 + ], + [ + 34.479762, + -1.1129395 + ], + [ + 34.4798027, + -1.1130918 + ], + [ + 34.479825, + -1.1131754 + ], + [ + 34.4798894, + -1.113398 + ], + [ + 34.4799444, + -1.1135737 + ], + [ + 34.4800141, + -1.1137681 + ], + [ + 34.4800866, + -1.113925 + ], + [ + 34.4801858, + -1.114114 + ], + [ + 34.4803011, + -1.1143111 + ], + [ + 34.4804312, + -1.1144948 + ], + [ + 34.4805519, + -1.1146356 + ], + [ + 34.4806699, + -1.1147644 + ], + [ + 34.4808188, + -1.1149078 + ], + [ + 34.4809918, + -1.115058 + ], + [ + 34.4811742, + -1.1151948 + ], + [ + 34.4813485, + -1.1153047 + ], + [ + 34.4815189, + -1.1153986 + ], + [ + 34.4818394, + -1.115542 + ], + [ + 34.4823664, + -1.1157552 + ], + [ + 34.482636, + -1.1158639 + ], + [ + 34.4828862, + -1.1159621 + ], + [ + 34.4831892, + -1.1160811 + ], + [ + 34.4837424, + -1.116301 + ], + [ + 34.4845578, + -1.1166268 + ], + [ + 34.4852445, + -1.1169084 + ], + [ + 34.4859767, + -1.1172087 + ], + [ + 34.4862851, + -1.1173281 + ], + [ + 34.4864394, + -1.1173897 + ], + [ + 34.4865574, + -1.1174407 + ], + [ + 34.4866835, + -1.1175051 + ], + [ + 34.4869597, + -1.1176512 + ], + [ + 34.4871421, + -1.1177638 + ], + [ + 34.4873232, + -1.1178912 + ], + [ + 34.487582, + -1.1181031 + ], + [ + 34.4878475, + -1.1183686 + ], + [ + 34.4880192, + -1.118571 + ], + [ + 34.4881989, + -1.118803 + ], + [ + 34.4884644, + -1.1191463 + ], + [ + 34.4886468, + -1.1193916 + ], + [ + 34.4887769, + -1.1195619 + ], + [ + 34.4889218, + -1.119763 + ], + [ + 34.4891149, + -1.1200004 + ], + [ + 34.489139, + -1.1200326 + ], + [ + 34.4893026, + -1.1202002 + ], + [ + 34.4894341, + -1.1203249 + ], + [ + 34.4895802, + -1.1204509 + ], + [ + 34.4896942, + -1.1205394 + ], + [ + 34.489819, + -1.1206225 + ], + [ + 34.4899745, + -1.1207217 + ], + [ + 34.4901958, + -1.1208411 + ], + [ + 34.4903903, + -1.1209215 + ], + [ + 34.4905807, + -1.1209886 + ], + [ + 34.4908074, + -1.121069 + ], + [ + 34.4910528, + -1.1211106 + ], + [ + 34.4911963, + -1.121124 + ], + [ + 34.4913854, + -1.1211334 + ], + [ + 34.4917086, + -1.1211401 + ], + [ + 34.4919741, + -1.1211146 + ], + [ + 34.4922021, + -1.1210731 + ], + [ + 34.4924475, + -1.1210087 + ], + [ + 34.4926916, + -1.1209229 + ], + [ + 34.4930068, + -1.1207848 + ], + [ + 34.4937216, + -1.1204214 + ], + [ + 34.4945718, + -1.1199762 + ], + [ + 34.4955012, + -1.1194909 + ], + [ + 34.4960801, + -1.1191938 + ], + [ + 34.4968235, + -1.118807 + ], + [ + 34.4971789, + -1.1186273 + ], + [ + 34.497887, + -1.1182626 + ], + [ + 34.503177, + -1.1155447 + ], + [ + 34.5036055, + -1.1153302 + ], + [ + 34.5041459, + -1.1150454 + ], + [ + 34.5042855, + -1.1149615 + ], + [ + 34.5045577, + -1.1147898 + ], + [ + 34.5048688, + -1.1145445 + ], + [ + 34.5051867, + -1.1142374 + ], + [ + 34.5055736, + -1.1138425 + ], + [ + 34.5060825, + -1.1132881 + ], + [ + 34.5063789, + -1.1129958 + ], + [ + 34.5066498, + -1.1127571 + ], + [ + 34.5069529, + -1.1125292 + ], + [ + 34.5072506, + -1.1123616 + ], + [ + 34.5074464, + -1.1122851 + ], + [ + 34.507663, + -1.112208 + ], + [ + 34.5078903, + -1.1121457 + ], + [ + 34.5081049, + -1.1121028 + ], + [ + 34.5084851, + -1.112084 + ], + [ + 34.5088117, + -1.1120981 + ] + ] + }, + "id": "way/440586718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440637814", + "highway": "secondary", + "maxspeed": "50", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3321735, + -1.121301 + ], + [ + 34.3319736, + -1.1212675 + ], + [ + 34.3316571, + -1.1212152 + ], + [ + 34.3313178, + -1.1211267 + ], + [ + 34.3310697, + -1.1210355 + ], + [ + 34.3306828, + -1.1208599 + ], + [ + 34.3301806, + -1.120652 + ], + [ + 34.3299399, + -1.1205743 + ], + [ + 34.329726, + -1.1205186 + ], + [ + 34.3295871, + -1.1204972 + ], + [ + 34.3294618, + -1.1204844 + ], + [ + 34.3292753, + -1.120475 + ], + [ + 34.329152, + -1.1204764 + ], + [ + 34.3287107, + -1.1204871 + ], + [ + 34.3283044, + -1.1204884 + ], + [ + 34.3281488, + -1.1204925 + ], + [ + 34.3280201, + -1.1204752 + ], + [ + 34.3278783, + -1.1204479 + ], + [ + 34.3273686, + -1.1202334 + ], + [ + 34.3269418, + -1.1200071 + ], + [ + 34.3267034, + -1.1198874 + ], + [ + 34.3261076, + -1.1196008 + ], + [ + 34.3248068, + -1.1189451 + ], + [ + 34.3245815, + -1.1188191 + ], + [ + 34.3243441, + -1.1186287 + ], + [ + 34.3240303, + -1.1183645 + ], + [ + 34.3236682, + -1.1180628 + ], + [ + 34.3233262, + -1.1177531 + ], + [ + 34.3232591, + -1.1176968 + ], + [ + 34.32318, + -1.1176365 + ], + [ + 34.3231237, + -1.1175788 + ], + [ + 34.3226154, + -1.1170907 + ], + [ + 34.3222922, + -1.1168319 + ], + [ + 34.3219516, + -1.1165825 + ], + [ + 34.3216176, + -1.1163412 + ], + [ + 34.3211945, + -1.1160633 + ], + [ + 34.3209571, + -1.1158967 + ], + [ + 34.3207627, + -1.11577 + ], + [ + 34.3205857, + -1.1156674 + ], + [ + 34.3204589, + -1.1156017 + ], + [ + 34.3202725, + -1.1155273 + ], + [ + 34.3201833, + -1.1155012 + ], + [ + 34.3200995, + -1.115479 + ], + [ + 34.3200291, + -1.1154536 + ], + [ + 34.3199647, + -1.11542 + ], + [ + 34.3198299, + -1.1153369 + ], + [ + 34.3196761, + -1.1152427 + ], + [ + 34.3195751, + -1.1151814 + ], + [ + 34.3194611, + -1.1151183 + ], + [ + 34.3193284, + -1.1150647 + ], + [ + 34.3192057, + -1.1150272 + ], + [ + 34.3190752, + -1.1150041 + ], + [ + 34.3187966, + -1.1149829 + ], + [ + 34.3185733, + -1.1149735 + ], + [ + 34.3183896, + -1.1149735 + ], + [ + 34.3182924, + -1.1150017 + ], + [ + 34.3181864, + -1.1150412 + ], + [ + 34.3180704, + -1.1151063 + ], + [ + 34.3179718, + -1.115168 + ], + [ + 34.3178592, + -1.115243 + ], + [ + 34.317709, + -1.1153409 + ], + [ + 34.317589, + -1.1154127 + ], + [ + 34.3174689, + -1.115467 + ], + [ + 34.3173234, + -1.1155159 + ], + [ + 34.3171994, + -1.1155501 + ], + [ + 34.3170357, + -1.1155876 + ], + [ + 34.316842, + -1.1156292 + ], + [ + 34.3166609, + -1.1156708 + ], + [ + 34.3164846, + -1.115705 + ], + [ + 34.3162955, + -1.1157445 + ], + [ + 34.3161446, + -1.1157646 + ], + [ + 34.3159883, + -1.1157807 + ], + [ + 34.3157899, + -1.1158015 + ], + [ + 34.3156088, + -1.1158189 + ], + [ + 34.3154593, + -1.115831 + ], + [ + 34.3152199, + -1.1158511 + ], + [ + 34.3149872, + -1.1158672 + ], + [ + 34.314774, + -1.1158839 + ], + [ + 34.3146365, + -1.1158954 + ], + [ + 34.3145004, + -1.1159121 + ], + [ + 34.3143093, + -1.1159349 + ], + [ + 34.3140934, + -1.1159637 + ], + [ + 34.3138969, + -1.1159946 + ], + [ + 34.3136602, + -1.1160301 + ], + [ + 34.3134288, + -1.116073 + ], + [ + 34.3131881, + -1.1161173 + ], + [ + 34.3129916, + -1.1161548 + ], + [ + 34.3128032, + -1.1161883 + ], + [ + 34.3126396, + -1.1162232 + ], + [ + 34.3125115, + -1.1162587 + ], + [ + 34.3123348, + -1.1163018 + ], + [ + 34.3120556, + -1.1163687 + ], + [ + 34.3117934, + -1.1164404 + ], + [ + 34.3115694, + -1.1165068 + ], + [ + 34.3113682, + -1.1165812 + ], + [ + 34.3111919, + -1.1166576 + ], + [ + 34.310976, + -1.1167602 + ], + [ + 34.3107071, + -1.1169037 + ], + [ + 34.3105086, + -1.117013 + ], + [ + 34.3102491, + -1.1171625 + ], + [ + 34.3100352, + -1.1172878 + ], + [ + 34.3098796, + -1.117377 + ], + [ + 34.3096784, + -1.1174984 + ], + [ + 34.3091735, + -1.1177726 + ], + [ + 34.3088767, + -1.1179416 + ], + [ + 34.3087933, + -1.1179891 + ], + [ + 34.3084118, + -1.1181989 + ], + [ + 34.3080819, + -1.1183746 + ], + [ + 34.3078022, + -1.1185181 + ], + [ + 34.3075696, + -1.1186434 + ], + [ + 34.3073288, + -1.1187708 + ], + [ + 34.3071015, + -1.1188888 + ], + [ + 34.3069057, + -1.1189934 + ], + [ + 34.3067776, + -1.1190511 + ], + [ + 34.3066053, + -1.1191255 + ], + [ + 34.3064128, + -1.1192217 + ], + [ + 34.3062187, + -1.1192894 + ], + [ + 34.3061044, + -1.1193092 + ], + [ + 34.3060189, + -1.1192937 + ], + [ + 34.3059009, + -1.1192059 + ], + [ + 34.3058181, + -1.1191235 + ], + [ + 34.305753, + -1.1190517 + ], + [ + 34.3056478, + -1.118929 + ], + [ + 34.3055525, + -1.1188218 + ], + [ + 34.3054583, + -1.1187081 + ], + [ + 34.3053567, + -1.1185995 + ], + [ + 34.3052763, + -1.1185026 + ], + [ + 34.3052096, + -1.1184292 + ], + [ + 34.3051562, + -1.1183806 + ], + [ + 34.3051281, + -1.1183552 + ], + [ + 34.3051117, + -1.1183397 + ], + [ + 34.3050875, + -1.1183149 + ], + [ + 34.3050583, + -1.1182814 + ], + [ + 34.3050087, + -1.1182177 + ], + [ + 34.3048847, + -1.1180602 + ], + [ + 34.3047794, + -1.1179227 + ], + [ + 34.3046895, + -1.1178094 + ], + [ + 34.3045256, + -1.1176496 + ], + [ + 34.3044066, + -1.1175584 + ], + [ + 34.3042922, + -1.1174796 + ], + [ + 34.3039707, + -1.1172717 + ], + [ + 34.3032183, + -1.1168373 + ], + [ + 34.3030963, + -1.1167823 + ], + [ + 34.3029783, + -1.1167254 + ], + [ + 34.3020107, + -1.1162936 + ], + [ + 34.301548, + -1.1160925 + ], + [ + 34.3012737, + -1.1159557 + ], + [ + 34.3008265, + -1.1157673 + ], + [ + 34.3006233, + -1.1156902 + ], + [ + 34.3004007, + -1.115597 + ], + [ + 34.300103, + -1.115465 + ], + [ + 34.2998703, + -1.1153543 + ], + [ + 34.2997321, + -1.1152739 + ], + [ + 34.2995082, + -1.1151372 + ], + [ + 34.2992896, + -1.1149574 + ], + [ + 34.2991836, + -1.1148582 + ], + [ + 34.299079, + -1.1147496 + ], + [ + 34.2989436, + -1.1145706 + ], + [ + 34.298786, + -1.1143554 + ], + [ + 34.2985962, + -1.1141201 + ], + [ + 34.2983877, + -1.113864 + ], + [ + 34.2982026, + -1.1135978 + ], + [ + 34.2979753, + -1.1133122 + ], + [ + 34.2978291, + -1.1131258 + ], + [ + 34.2976467, + -1.112855 + ], + [ + 34.297467, + -1.112617 + ], + [ + 34.2973088, + -1.1123991 + ], + [ + 34.297172, + -1.1122134 + ], + [ + 34.2970499, + -1.1120565 + ], + [ + 34.2969473, + -1.1119365 + ], + [ + 34.2968367, + -1.1118212 + ], + [ + 34.2966872, + -1.111669 + ], + [ + 34.2965249, + -1.1115128 + ], + [ + 34.2963794, + -1.1113666 + ], + [ + 34.2962573, + -1.1112634 + ], + [ + 34.2961387, + -1.1111756 + ], + [ + 34.29603, + -1.1110857 + ], + [ + 34.2958959, + -1.1109711 + ], + [ + 34.2957766, + -1.1108759 + ], + [ + 34.2956699, + -1.1108008 + ], + [ + 34.2955117, + -1.1107096 + ], + [ + 34.2953534, + -1.1106258 + ], + [ + 34.2951375, + -1.1105259 + ], + [ + 34.2949759, + -1.1104502 + ], + [ + 34.2948311, + -1.110367 + ], + [ + 34.2947218, + -1.1102933 + ], + [ + 34.294583, + -1.1101967 + ], + [ + 34.2944321, + -1.1100861 + ], + [ + 34.2943235, + -1.1099963 + ], + [ + 34.2942162, + -1.1098743 + ], + [ + 34.2941102, + -1.1097442 + ], + [ + 34.2940123, + -1.1096141 + ], + [ + 34.2938809, + -1.1094244 + ], + [ + 34.2937495, + -1.1092608 + ], + [ + 34.2936348, + -1.1091361 + ], + [ + 34.2935295, + -1.1090195 + ], + [ + 34.2934337, + -1.1089203 + ], + [ + 34.2933116, + -1.1087694 + ], + [ + 34.2931909, + -1.1086125 + ], + [ + 34.2930434, + -1.1084349 + ], + [ + 34.2929213, + -1.1082659 + ], + [ + 34.2928181, + -1.108111 + ], + [ + 34.2927651, + -1.1080306 + ], + [ + 34.2926753, + -1.1078838 + ], + [ + 34.2925968, + -1.1077416 + ], + [ + 34.2924875, + -1.1075492 + ], + [ + 34.2923252, + -1.1072811 + ], + [ + 34.2921998, + -1.1070551 + ], + [ + 34.2921107, + -1.1068875 + ], + [ + 34.29208, + -1.1068318 + ], + [ + 34.291998, + -1.1067032 + ], + [ + 34.2918867, + -1.1064967 + ], + [ + 34.2917935, + -1.1063096 + ], + [ + 34.2917311, + -1.1061682 + ], + [ + 34.2916842, + -1.1060441 + ], + [ + 34.2916439, + -1.1058953 + ], + [ + 34.2916185, + -1.1057525 + ], + [ + 34.2915856, + -1.1055795 + ], + [ + 34.2915373, + -1.1053315 + ], + [ + 34.2915098, + -1.1052014 + ], + [ + 34.291481, + -1.1050935 + ], + [ + 34.291424, + -1.1049165 + ], + [ + 34.291371, + -1.1047448 + ], + [ + 34.2912926, + -1.1045162 + ], + [ + 34.291259, + -1.1044069 + ], + [ + 34.2912141, + -1.1042507 + ], + [ + 34.2911719, + -1.1040905 + ], + [ + 34.291139, + -1.1038874 + ], + [ + 34.2911149, + -1.1037097 + ], + [ + 34.2910954, + -1.103518 + ], + [ + 34.291078, + -1.103343 + ], + [ + 34.2910619, + -1.1032129 + ], + [ + 34.2910515, + -1.1031092 + ], + [ + 34.2910331, + -1.1029729 + ], + [ + 34.2910069, + -1.1028435 + ], + [ + 34.2909808, + -1.1027369 + ], + [ + 34.2909526, + -1.102627 + ], + [ + 34.2908956, + -1.1024312 + ], + [ + 34.2908473, + -1.1022649 + ], + [ + 34.2907923, + -1.1020437 + ], + [ + 34.2907654, + -1.1018745 + ] + ] + }, + "id": "way/440637814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/441102488", + "bridge": "yes", + "ford": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5088117, + -1.1120981 + ], + [ + 34.5090055, + -1.1121168 + ] + ] + }, + "id": "way/441102488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/441102489", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5090055, + -1.1121168 + ], + [ + 34.5091624, + -1.1121497 + ], + [ + 34.5092891, + -1.1121839 + ], + [ + 34.5094648, + -1.1122436 + ], + [ + 34.509536, + -1.112268 + ], + [ + 34.5097418, + -1.1123548 + ], + [ + 34.5098584, + -1.1124112 + ], + [ + 34.5100871, + -1.1125251 + ], + [ + 34.5103986, + -1.1127021 + ], + [ + 34.5106178, + -1.1128367 + ], + [ + 34.5108404, + -1.112982 + ], + [ + 34.5109846, + -1.1130766 + ], + [ + 34.5113584, + -1.1132988 + ], + [ + 34.5117554, + -1.1135522 + ], + [ + 34.5119512, + -1.1136635 + ], + [ + 34.5124488, + -1.1139665 + ], + [ + 34.5126647, + -1.1141033 + ], + [ + 34.5130281, + -1.1142977 + ], + [ + 34.5133057, + -1.1144077 + ], + [ + 34.5137684, + -1.1145659 + ], + [ + 34.5143397, + -1.1147563 + ], + [ + 34.5148601, + -1.1149333 + ], + [ + 34.5151886, + -1.115062 + ], + [ + 34.5154135, + -1.1151752 + ], + [ + 34.5159195, + -1.1154911 + ], + [ + 34.5163433, + -1.1157338 + ], + [ + 34.5165941, + -1.1158732 + ], + [ + 34.5168744, + -1.1159872 + ], + [ + 34.5173036, + -1.116132 + ], + [ + 34.5192723, + -1.1167555 + ], + [ + 34.5204203, + -1.1171108 + ], + [ + 34.5222281, + -1.1176928 + ], + [ + 34.5226921, + -1.1178443 + ], + [ + 34.5232195, + -1.118017 + ], + [ + 34.523355, + -1.1180575 + ], + [ + 34.5265451, + -1.1190778 + ], + [ + 34.5277045, + -1.1194506 + ], + [ + 34.5287284, + -1.1197697 + ], + [ + 34.5291173, + -1.1198958 + ], + [ + 34.5299438, + -1.1201671 + ], + [ + 34.5308313, + -1.1204536 + ], + [ + 34.5320906, + -1.1208451 + ], + [ + 34.5329757, + -1.1211294 + ], + [ + 34.5332399, + -1.1212152 + ], + [ + 34.533488, + -1.1212889 + ], + [ + 34.5338581, + -1.1213975 + ] + ] + }, + "id": "way/441102489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/441505567", + "highway": "secondary", + "ref": "R186", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7245181, + -1.6476829 + ], + [ + 33.7236387, + -1.6482769 + ], + [ + 33.7224622, + -1.6491084 + ], + [ + 33.7216818, + -1.6497228 + ] + ] + }, + "id": "way/441505567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442092873", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8187851, + -2.3850854 + ], + [ + 34.8186637, + -2.3853555 + ] + ] + }, + "id": "way/442092873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442092876", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.84089, + -2.3125645 + ], + [ + 34.8408472, + -2.3127261 + ], + [ + 34.8408278, + -2.3128469 + ], + [ + 34.8408375, + -2.3129643 + ], + [ + 34.8408903, + -2.3131193 + ], + [ + 34.840964, + -2.3132585 + ], + [ + 34.8412674, + -2.313993 + ], + [ + 34.8414915, + -2.3144645 + ], + [ + 34.8417705, + -2.3149292 + ], + [ + 34.8425742, + -2.3162723 + ], + [ + 34.8432135, + -2.3172427 + ], + [ + 34.8435064, + -2.3176351 + ], + [ + 34.8436405, + -2.3177691 + ], + [ + 34.843898, + -2.3179326 + ], + [ + 34.844134, + -2.3181604 + ], + [ + 34.8449843, + -2.3191976 + ], + [ + 34.8452444, + -2.3195862 + ], + [ + 34.8461472, + -2.3214549 + ], + [ + 34.8471263, + -2.3236419 + ], + [ + 34.8472347, + -2.3240501 + ], + [ + 34.8472631, + -2.3243862 + ], + [ + 34.8472406, + -2.3248421 + ], + [ + 34.8466753, + -2.3267941 + ], + [ + 34.8464985, + -2.3273024 + ], + [ + 34.8461686, + -2.3279063 + ], + [ + 34.8457237, + -2.3287793 + ], + [ + 34.8453886, + -2.3293167 + ], + [ + 34.8439577, + -2.3312585 + ], + [ + 34.8414449, + -2.3348009 + ], + [ + 34.8405528, + -2.3361516 + ], + [ + 34.8402476, + -2.3367361 + ], + [ + 34.8401461, + -2.337126 + ], + [ + 34.8398911, + -2.3378012 + ], + [ + 34.8396279, + -2.3384533 + ], + [ + 34.8387975, + -2.3402756 + ], + [ + 34.8382906, + -2.3415145 + ], + [ + 34.8379977, + -2.3425026 + ], + [ + 34.8378012, + -2.343819 + ], + [ + 34.8376831, + -2.344518 + ], + [ + 34.8375522, + -2.3449748 + ], + [ + 34.8373001, + -2.3455699 + ], + [ + 34.8367953, + -2.3467032 + ], + [ + 34.8365889, + -2.3471484 + ], + [ + 34.8362565, + -2.3477415 + ], + [ + 34.8359519, + -2.3481413 + ], + [ + 34.8341301, + -2.3501859 + ], + [ + 34.8334204, + -2.3510289 + ], + [ + 34.8329694, + -2.3516451 + ], + [ + 34.8326064, + -2.3521496 + ], + [ + 34.8322394, + -2.3526665 + ], + [ + 34.8319297, + -2.3530374 + ], + [ + 34.8312942, + -2.3537128 + ], + [ + 34.8309241, + -2.3542545 + ], + [ + 34.8301594, + -2.3555283 + ], + [ + 34.8284324, + -2.3581233 + ], + [ + 34.8278803, + -2.3588848 + ], + [ + 34.827209, + -2.3597788 + ], + [ + 34.8268283, + -2.3603693 + ], + [ + 34.8264712, + -2.3610607 + ], + [ + 34.8260747, + -2.3621501 + ], + [ + 34.8259376, + -2.3628168 + ], + [ + 34.8258736, + -2.3631572 + ], + [ + 34.8257541, + -2.3638995 + ], + [ + 34.8255059, + -2.365083 + ], + [ + 34.8252374, + -2.3661093 + ] + ] + }, + "id": "way/442092876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442414392", + "highway": "trunk", + "ref": "T36", + "source": "Bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7894526, + -3.1828466 + ], + [ + 33.7896618, + -3.1827582 + ], + [ + 33.7900078, + -3.182552 + ], + [ + 33.7907749, + -3.1819146 + ], + [ + 33.7915322, + -3.181249 + ], + [ + 33.7917418, + -3.1810569 + ], + [ + 33.7926936, + -3.1802448 + ], + [ + 33.7933639, + -3.1796548 + ], + [ + 33.7936293, + -3.1794424 + ], + [ + 33.7943476, + -3.1789393 + ], + [ + 33.7957616, + -3.1780415 + ], + [ + 33.796142, + -3.1777916 + ], + [ + 33.7965618, + -3.1775158 + ], + [ + 33.7972889, + -3.1770381 + ], + [ + 33.7974229, + -3.1769501 + ], + [ + 33.7977444, + -3.1767349 + ], + [ + 33.79793, + -3.1766107 + ], + [ + 33.7981243, + -3.1764687 + ], + [ + 33.798302, + -3.1763616 + ], + [ + 33.8003327, + -3.1750022 + ], + [ + 33.8006366, + -3.1747611 + ], + [ + 33.800878, + -3.174512 + ], + [ + 33.801165, + -3.174188 + ], + [ + 33.8014216, + -3.1738694 + ], + [ + 33.8018925, + -3.1730299 + ], + [ + 33.8025124, + -3.1718336 + ], + [ + 33.8031242, + -3.1706648 + ], + [ + 33.803141, + -3.1706327 + ], + [ + 33.8037551, + -3.1694743 + ], + [ + 33.8042398, + -3.168584 + ], + [ + 33.8043549, + -3.1683429 + ], + [ + 33.8053457, + -3.1664741 + ], + [ + 33.8054316, + -3.1663121 + ], + [ + 33.8057427, + -3.1657253 + ], + [ + 33.8060727, + -3.1649932 + ], + [ + 33.8061318, + -3.1648621 + ], + [ + 33.8064598, + -3.1641344 + ], + [ + 33.8071624, + -3.1625758 + ], + [ + 33.8077946, + -3.160914 + ], + [ + 33.808277, + -3.1596461 + ], + [ + 33.8083606, + -3.1594263 + ], + [ + 33.8084657, + -3.1592794 + ], + [ + 33.8088021, + -3.158842 + ], + [ + 33.8091559, + -3.158422 + ], + [ + 33.8093946, + -3.1582186 + ], + [ + 33.8099138, + -3.1577761 + ], + [ + 33.8102933, + -3.1575059 + ], + [ + 33.8107225, + -3.1572003 + ], + [ + 33.8115299, + -3.1566165 + ], + [ + 33.812099, + -3.156231 + ], + [ + 33.8123491, + -3.1560615 + ], + [ + 33.8125974, + -3.1558832 + ], + [ + 33.8127275, + -3.1557898 + ], + [ + 33.8136249, + -3.1551454 + ], + [ + 33.81548, + -3.1538135 + ], + [ + 33.8157275, + -3.1536413 + ], + [ + 33.8161115, + -3.1533741 + ], + [ + 33.8187647, + -3.1515283 + ], + [ + 33.8200143, + -3.1506577 + ], + [ + 33.8214272, + -3.1496733 + ], + [ + 33.8219433, + -3.1493137 + ], + [ + 33.8246666, + -3.1474129 + ], + [ + 33.8259128, + -3.1465431 + ], + [ + 33.8274776, + -3.1454509 + ], + [ + 33.8276617, + -3.1453224 + ], + [ + 33.8279122, + -3.1451476 + ], + [ + 33.8291587, + -3.1442776 + ], + [ + 33.8295487, + -3.1439998 + ], + [ + 33.8317923, + -3.1424015 + ], + [ + 33.8352058, + -3.1399699 + ], + [ + 33.8357046, + -3.1396296 + ], + [ + 33.8364127, + -3.1391422 + ], + [ + 33.8366836, + -3.1389628 + ], + [ + 33.8372737, + -3.1384914 + ], + [ + 33.8374642, + -3.138312 + ], + [ + 33.8378262, + -3.1378968 + ], + [ + 33.8380945, + -3.1375808 + ], + [ + 33.8382044, + -3.1374148 + ], + [ + 33.8382648, + -3.137317 + ], + [ + 33.8383747, + -3.137098 + ], + [ + 33.8389233, + -3.1361132 + ], + [ + 33.8391703, + -3.13565 + ], + [ + 33.8401145, + -3.1339314 + ], + [ + 33.8402377, + -3.1336854 + ], + [ + 33.8405059, + -3.1331502 + ], + [ + 33.8407236, + -3.1327158 + ], + [ + 33.840884, + -3.1323957 + ], + [ + 33.8411019, + -3.1319608 + ], + [ + 33.8417557, + -3.1306562 + ], + [ + 33.8419488, + -3.1302708 + ], + [ + 33.8425786, + -3.1290138 + ], + [ + 33.8429591, + -3.1282545 + ], + [ + 33.8430856, + -3.128002 + ], + [ + 33.8438258, + -3.1265249 + ], + [ + 33.8439245, + -3.1263278 + ], + [ + 33.8444344, + -3.1253102 + ], + [ + 33.8444874, + -3.1252045 + ], + [ + 33.8448107, + -3.1245594 + ], + [ + 33.844867, + -3.1244469 + ], + [ + 33.8449493, + -3.1242827 + ], + [ + 33.8450881, + -3.1240116 + ], + [ + 33.8458224, + -3.122577 + ], + [ + 33.8474468, + -3.1194032 + ], + [ + 33.8478082, + -3.118665 + ], + [ + 33.8487422, + -3.1169197 + ], + [ + 33.8495385, + -3.1152909 + ], + [ + 33.8498097, + -3.1148025 + ], + [ + 33.849869, + -3.1147131 + ], + [ + 33.8500984, + -3.1143979 + ], + [ + 33.8508484, + -3.1134817 + ], + [ + 33.850934, + -3.113392 + ], + [ + 33.8514284, + -3.1128788 + ], + [ + 33.8517019, + -3.1126329 + ], + [ + 33.8524673, + -3.1119446 + ], + [ + 33.8537214, + -3.1108169 + ], + [ + 33.854301, + -3.1102957 + ], + [ + 33.8543606, + -3.1102421 + ], + [ + 33.856429, + -3.1083822 + ], + [ + 33.8573627, + -3.1075426 + ], + [ + 33.8583667, + -3.1066398 + ], + [ + 33.8590528, + -3.1060123 + ], + [ + 33.8598087, + -3.1053211 + ], + [ + 33.8599623, + -3.1051806 + ], + [ + 33.8614912, + -3.1037825 + ], + [ + 33.8634028, + -3.1020343 + ], + [ + 33.8634343, + -3.1020055 + ], + [ + 33.8636991, + -3.1017634 + ], + [ + 33.8642298, + -3.1012879 + ], + [ + 33.8647042, + -3.1008627 + ], + [ + 33.8665944, + -3.0991688 + ], + [ + 33.866824, + -3.0989631 + ], + [ + 33.8672863, + -3.0985488 + ], + [ + 33.8675032, + -3.0983544 + ], + [ + 33.8676086, + -3.09826 + ], + [ + 33.8681272, + -3.097825 + ], + [ + 33.868567, + -3.097426 + ], + [ + 33.8689999, + -3.0970133 + ], + [ + 33.8693556, + -3.0966278 + ], + [ + 33.8698411, + -3.095902 + ], + [ + 33.8701724, + -3.0953864 + ], + [ + 33.8702542, + -3.0952552 + ], + [ + 33.8706538, + -3.0945495 + ], + [ + 33.870914, + -3.0940835 + ], + [ + 33.8711855, + -3.0935784 + ], + [ + 33.8715769, + -3.0928998 + ], + [ + 33.8721673, + -3.0918761 + ], + [ + 33.8727661, + -3.0908379 + ], + [ + 33.8733841, + -3.0897663 + ], + [ + 33.8734226, + -3.0896996 + ], + [ + 33.8740072, + -3.0886859 + ], + [ + 33.8740366, + -3.088635 + ], + [ + 33.8745901, + -3.0877302 + ], + [ + 33.8746123, + -3.0876939 + ], + [ + 33.8752405, + -3.0866669 + ], + [ + 33.8755491, + -3.0861623 + ], + [ + 33.875889, + -3.0855392 + ], + [ + 33.8763121, + -3.0847634 + ], + [ + 33.8765199, + -3.0843823 + ], + [ + 33.8770095, + -3.0835846 + ], + [ + 33.8780751, + -3.0817215 + ], + [ + 33.8786319, + -3.0807761 + ] + ] + }, + "id": "way/442414392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442421155", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8252374, + -2.3661093 + ], + [ + 34.8251626, + -2.3663256 + ], + [ + 34.8250762, + -2.3666267 + ], + [ + 34.8249237, + -2.367003 + ], + [ + 34.8240942, + -2.3685827 + ], + [ + 34.823809, + -2.3692626 + ], + [ + 34.8236357, + -2.369687 + ], + [ + 34.8227016, + -2.3725967 + ], + [ + 34.8221935, + -2.3740185 + ], + [ + 34.8215662, + -2.3756507 + ], + [ + 34.821282, + -2.3765028 + ], + [ + 34.821042, + -2.3773808 + ], + [ + 34.8209162, + -2.3779364 + ], + [ + 34.8207805, + -2.3787542 + ], + [ + 34.8206179, + -2.379875 + ], + [ + 34.8202456, + -2.381926 + ], + [ + 34.8201301, + -2.3824474 + ], + [ + 34.8200439, + -2.3827948 + ], + [ + 34.8199331, + -2.3831468 + ], + [ + 34.8198426, + -2.3834047 + ], + [ + 34.8196686, + -2.3837595 + ], + [ + 34.8195115, + -2.3839959 + ], + [ + 34.8189715, + -2.3847803 + ], + [ + 34.8187851, + -2.3850854 + ] + ] + }, + "id": "way/442421155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442443773", + "highway": "secondary", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8746812, + -2.047623 + ], + [ + 33.8767666, + -2.0478542 + ], + [ + 33.8786937, + -2.0481113 + ], + [ + 33.8798672, + -2.0482885 + ], + [ + 33.8811136, + -2.0484375 + ], + [ + 33.8821793, + -2.0485243 + ], + [ + 33.8834374, + -2.0484951 + ], + [ + 33.8848293, + -2.0484332 + ], + [ + 33.8860588, + -2.0483325 + ], + [ + 33.8887652, + -2.0482046 + ], + [ + 33.8915496, + -2.0480309 + ], + [ + 33.8930449, + -2.047944 + ], + [ + 33.8941923, + -2.0478426 + ], + [ + 33.8954022, + -2.0478234 + ], + [ + 33.8993777, + -2.047785 + ], + [ + 33.9022851, + -2.0476961 + ], + [ + 33.9026847, + -2.0477148 + ], + [ + 33.9029154, + -2.0477738 + ], + [ + 33.9039101, + -2.0482264 + ], + [ + 33.9042994, + -2.0483608 + ], + [ + 33.9056727, + -2.04872 + ], + [ + 33.9059705, + -2.0487763 + ], + [ + 33.9072552, + -2.0489237 + ], + [ + 33.9075503, + -2.0489693 + ], + [ + 33.9084774, + -2.0492774 + ], + [ + 33.9085588, + -2.0493044 + ], + [ + 33.908778, + -2.0493833 + ], + [ + 33.9115146, + -2.0503685 + ], + [ + 33.9120457, + -2.0505937 + ], + [ + 33.9140385, + -2.0514782 + ], + [ + 33.9146742, + -2.0517463 + ], + [ + 33.9154038, + -2.0520519 + ], + [ + 33.9197195, + -2.0535179 + ], + [ + 33.9197928, + -2.0535428 + ], + [ + 33.9221254, + -2.0541212 + ], + [ + 33.9223668, + -2.0541882 + ], + [ + 33.9226858, + -2.0543017 + ], + [ + 33.9248747, + -2.0550808 + ], + [ + 33.9251078, + -2.0551445 + ], + [ + 33.9251885, + -2.0551666 + ], + [ + 33.9254674, + -2.0552336 + ], + [ + 33.9260924, + -2.0553328 + ], + [ + 33.9267603, + -2.0553757 + ], + [ + 33.9270848, + -2.0553904 + ], + [ + 33.9276233, + -2.0553641 + ], + [ + 33.9286292, + -2.0553149 + ], + [ + 33.9297965, + -2.0552524 + ], + [ + 33.9307487, + -2.05518 + ], + [ + 33.9316616, + -2.0550591 + ], + [ + 33.9317143, + -2.0550512 + ], + [ + 33.9331305, + -2.0548396 + ], + [ + 33.9343724, + -2.0546198 + ], + [ + 33.9346459, + -2.0545608 + ], + [ + 33.9349464, + -2.0545367 + ], + [ + 33.9358744, + -2.0544938 + ], + [ + 33.9361748, + -2.054467 + ], + [ + 33.9365305, + -2.0544316 + ], + [ + 33.9381175, + -2.0542736 + ], + [ + 33.9381945, + -2.0542659 + ], + [ + 33.9385593, + -2.0542177 + ], + [ + 33.9416674, + -2.0534277 + ], + [ + 33.9428911, + -2.0531589 + ], + [ + 33.9438969, + -2.0528882 + ], + [ + 33.9441329, + -2.0528051 + ], + [ + 33.945694, + -2.0521162 + ], + [ + 33.9459112, + -2.0520626 + ], + [ + 33.946099, + -2.0520438 + ], + [ + 33.9479578, + -2.0520867 + ], + [ + 33.9482582, + -2.0520894 + ], + [ + 33.9489663, + -2.0520653 + ], + [ + 33.9502081, + -2.0519044 + ], + [ + 33.9526275, + -2.0516176 + ], + [ + 33.955111, + -2.0516236 + ], + [ + 33.9552748, + -2.0516069 + ], + [ + 33.9565708, + -2.0513032 + ], + [ + 33.9582387, + -2.0510011 + ], + [ + 33.9585364, + -2.0509529 + ], + [ + 33.9595324, + -2.0508713 + ], + [ + 33.9627896, + -2.0507259 + ], + [ + 33.9628891, + -2.0507215 + ], + [ + 33.9646195, + -2.0505966 + ], + [ + 33.9648777, + -2.0505867 + ], + [ + 33.9663175, + -2.0504623 + ], + [ + 33.9676157, + -2.0502747 + ], + [ + 33.9694868, + -2.0499248 + ], + [ + 33.9699593, + -2.0498364 + ], + [ + 33.9705117, + -2.0497701 + ], + [ + 33.9706627, + -2.049752 + ], + [ + 33.9712125, + -2.0497279 + ], + [ + 33.9717273, + -2.0497279 + ], + [ + 33.971765, + -2.0497279 + ], + [ + 33.9720818, + -2.0497438 + ], + [ + 33.9729935, + -2.0497895 + ], + [ + 33.9733297, + -2.0498164 + ], + [ + 33.9740857, + -2.049877 + ], + [ + 33.9772475, + -2.050272 + ], + [ + 33.9776149, + -2.0503069 + ], + [ + 33.9781058, + -2.0503095 + ], + [ + 33.9788327, + -2.0502533 + ], + [ + 33.9795542, + -2.0501568 + ], + [ + 33.9801818, + -2.0500174 + ], + [ + 33.9815248, + -2.0497955 + ], + [ + 33.982982, + -2.0496019 + ], + [ + 33.983941, + -2.0495127 + ], + [ + 33.9869705, + -2.0494277 + ], + [ + 33.9891208, + -2.049388 + ], + [ + 33.9911252, + -2.0493821 + ], + [ + 33.991431, + -2.0493687 + ], + [ + 33.9917582, + -2.0493204 + ], + [ + 33.9945289, + -2.0482322 + ], + [ + 33.9951539, + -2.0479105 + ], + [ + 33.9958519, + -2.0475243 + ], + [ + 33.9971387, + -2.0466989 + ], + [ + 33.9973475, + -2.0465576 + ] + ] + }, + "id": "way/442443773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442443780", + "highway": "secondary", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1475919, + -1.9793366 + ], + [ + 34.1482557, + -1.9791811 + ], + [ + 34.1501586, + -1.9787851 + ], + [ + 34.1527321, + -1.9781901 + ], + [ + 34.1533399, + -1.9780687 + ], + [ + 34.1536631, + -1.9779749 + ], + [ + 34.1539736, + -1.9778679 + ], + [ + 34.154449, + -1.977613 + ], + [ + 34.1554776, + -1.9770232 + ], + [ + 34.1563064, + -1.9764818 + ], + [ + 34.1568804, + -1.9760788 + ], + [ + 34.1570149, + -1.9759731 + ], + [ + 34.1583219, + -1.9748951 + ], + [ + 34.1586989, + -1.9745892 + ], + [ + 34.1593301, + -1.9742273 + ], + [ + 34.161484, + -1.9730686 + ], + [ + 34.1619218, + -1.9728134 + ], + [ + 34.1629592, + -1.9722086 + ], + [ + 34.1631029, + -1.9721248 + ], + [ + 34.1636981, + -1.9718081 + ], + [ + 34.1650434, + -1.9710556 + ], + [ + 34.1652676, + -1.9709356 + ], + [ + 34.165906, + -1.9706246 + ], + [ + 34.1661769, + -1.9704611 + ], + [ + 34.166421, + -1.9702869 + ], + [ + 34.1674751, + -1.9693084 + ], + [ + 34.1680545, + -1.9687562 + ], + [ + 34.1685534, + -1.9682583 + ], + [ + 34.1694626, + -1.9667404 + ], + [ + 34.1699535, + -1.9659201 + ], + [ + 34.1703021, + -1.9652982 + ], + [ + 34.1705704, + -1.964628 + ], + [ + 34.1706938, + -1.964167 + ], + [ + 34.1708041, + -1.9632381 + ], + [ + 34.1708998, + -1.9615179 + ], + [ + 34.1709386, + -1.9608197 + ], + [ + 34.1711108, + -1.9595965 + ], + [ + 34.171139, + -1.9594678 + ], + [ + 34.1711833, + -1.9593485 + ], + [ + 34.1712691, + -1.9592185 + ], + [ + 34.1716661, + -1.9587642 + ], + [ + 34.1720831, + -1.9583634 + ], + [ + 34.17235, + -1.9581101 + ], + [ + 34.1727658, + -1.9576812 + ], + [ + 34.1730514, + -1.9574212 + ], + [ + 34.1735275, + -1.9570834 + ], + [ + 34.1742772, + -1.9566518 + ], + [ + 34.176431, + -1.9555166 + ], + [ + 34.1767985, + -1.9553061 + ], + [ + 34.1770211, + -1.9551453 + ], + [ + 34.1781017, + -1.9542762 + ], + [ + 34.1785822, + -1.9538715 + ], + [ + 34.1795425, + -1.9531613 + ], + [ + 34.1797317, + -1.9530506 + ], + [ + 34.1799353, + -1.9530142 + ], + [ + 34.180144, + -1.9530081 + ], + [ + 34.180461, + -1.9530343 + ], + [ + 34.1805992, + -1.9530477 + ], + [ + 34.1808526, + -1.9530798 + ], + [ + 34.1811973, + -1.9531134 + ], + [ + 34.1816609, + -1.9531082 + ], + [ + 34.181778, + -1.9530839 + ], + [ + 34.1818652, + -1.9530437 + ], + [ + 34.1819349, + -1.9529713 + ], + [ + 34.182077, + -1.9527327 + ], + [ + 34.1822688, + -1.9522448 + ], + [ + 34.1826913, + -1.9507906 + ], + [ + 34.1829234, + -1.9500424 + ], + [ + 34.1832733, + -1.9494931 + ], + [ + 34.1837427, + -1.9488203 + ], + [ + 34.1840619, + -1.9483807 + ], + [ + 34.1857222, + -1.9462174 + ], + [ + 34.1864812, + -1.945263 + ], + [ + 34.1870552, + -1.9445393 + ], + [ + 34.1873315, + -1.9442632 + ], + [ + 34.1878921, + -1.9437538 + ], + [ + 34.1883078, + -1.9433866 + ], + [ + 34.188509, + -1.9431694 + ], + [ + 34.1886699, + -1.9429738 + ], + [ + 34.1890749, + -1.942258 + ], + [ + 34.1898139, + -1.9410073 + ], + [ + 34.1903934, + -1.9399558 + ], + [ + 34.1928461, + -1.9354518 + ], + [ + 34.1929856, + -1.9351676 + ], + [ + 34.1932163, + -1.9344921 + ], + [ + 34.1934086, + -1.9336601 + ], + [ + 34.1936581, + -1.9323918 + ] + ] + }, + "id": "way/442443780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442559907", + "ford": "seasonal", + "highway": "primary", + "lanes": "1", + "maxspeed": "20", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8409914, + -2.3123332 + ], + [ + 34.8409501, + -2.312423 + ], + [ + 34.84089, + -2.3125645 + ] + ] + }, + "id": "way/442559907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442559908", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8381354, + -2.3047412 + ], + [ + 34.8382921, + -2.3049232 + ], + [ + 34.8387823, + -2.3056624 + ], + [ + 34.8390986, + -2.3061714 + ], + [ + 34.8393002, + -2.3064063 + ], + [ + 34.8398767, + -2.3069241 + ], + [ + 34.8405191, + -2.3074211 + ], + [ + 34.8412086, + -2.3080102 + ], + [ + 34.8414445, + -2.308213 + ], + [ + 34.8415714, + -2.3083695 + ], + [ + 34.841691, + -2.3085854 + ], + [ + 34.8420668, + -2.3094894 + ], + [ + 34.8422345, + -2.3098946 + ], + [ + 34.8423109, + -2.3100946 + ], + [ + 34.8423286, + -2.3102639 + ], + [ + 34.8422839, + -2.3103974 + ], + [ + 34.8421545, + -2.3105935 + ], + [ + 34.8417004, + -2.3111744 + ], + [ + 34.8412418, + -2.3118528 + ], + [ + 34.8410744, + -2.3121454 + ], + [ + 34.8409914, + -2.3123332 + ] + ] + }, + "id": "way/442559908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442595390", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.831645, + -2.2967189 + ], + [ + 34.8317754, + -2.2970586 + ], + [ + 34.8320074, + -2.2976238 + ], + [ + 34.8329246, + -2.2994196 + ], + [ + 34.8331974, + -2.2999538 + ], + [ + 34.8336424, + -2.3006681 + ], + [ + 34.8340173, + -2.301131 + ], + [ + 34.834563, + -2.3017463 + ], + [ + 34.8350018, + -2.3021873 + ], + [ + 34.8353556, + -2.3024899 + ], + [ + 34.8356692, + -2.3027036 + ], + [ + 34.8359664, + -2.3028627 + ], + [ + 34.8364107, + -2.3030337 + ] + ] + }, + "id": "way/442595390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/442818383", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.632192, + -2.0871485 + ], + [ + 34.6328089, + -2.0867678 + ], + [ + 34.633297, + -2.0864864 + ], + [ + 34.634257, + -2.0858723 + ], + [ + 34.634724, + -2.0856166 + ], + [ + 34.6350646, + -2.0854048 + ], + [ + 34.6354938, + -2.0851314 + ], + [ + 34.6360919, + -2.084791 + ], + [ + 34.6363762, + -2.0846088 + ], + [ + 34.6366632, + -2.0844479 + ], + [ + 34.6370199, + -2.0842255 + ], + [ + 34.6377656, + -2.0837832 + ], + [ + 34.638184, + -2.0835393 + ], + [ + 34.6385005, + -2.083357 + ], + [ + 34.6389136, + -2.0831023 + ], + [ + 34.6393937, + -2.0828477 + ], + [ + 34.639737, + -2.082652 + ], + [ + 34.6399677, + -2.0825207 + ], + [ + 34.640193, + -2.0823894 + ], + [ + 34.6405524, + -2.0823036 + ], + [ + 34.6410567, + -2.0822419 + ], + [ + 34.6414322, + -2.0822285 + ], + [ + 34.6417674, + -2.0822017 + ], + [ + 34.6422905, + -2.0821776 + ], + [ + 34.642843, + -2.0821454 + ], + [ + 34.6431595, + -2.0821401 + ], + [ + 34.6433258, + -2.0821374 + ], + [ + 34.6434586, + -2.0821213 + ], + [ + 34.6436691, + -2.0820985 + ], + [ + 34.643814, + -2.0820597 + ], + [ + 34.6439373, + -2.0819819 + ], + [ + 34.6440607, + -2.0818707 + ], + [ + 34.6442042, + -2.0816938 + ], + [ + 34.6443866, + -2.0814137 + ], + [ + 34.644573, + -2.081159 + ], + [ + 34.6448922, + -2.0807436 + ], + [ + 34.6454126, + -2.0800466 + ], + [ + 34.6458498, + -2.0794945 + ], + [ + 34.6462957, + -2.0789396 + ], + [ + 34.6466524, + -2.0784491 + ], + [ + 34.6469663, + -2.0780283 + ], + [ + 34.6472479, + -2.0776584 + ], + [ + 34.6475885, + -2.0771571 + ], + [ + 34.6478621, + -2.0767899 + ], + [ + 34.6479587, + -2.0765782 + ], + [ + 34.6480123, + -2.0762779 + ], + [ + 34.6480633, + -2.0758759 + ], + [ + 34.6481062, + -2.0752755 + ], + [ + 34.6481384, + -2.0746777 + ], + [ + 34.6481786, + -2.0742998 + ], + [ + 34.6482457, + -2.0735278 + ], + [ + 34.6482966, + -2.0729649 + ], + [ + 34.6483771, + -2.0719812 + ], + [ + 34.6484334, + -2.071102 + ], + [ + 34.6485327, + -2.0699494 + ], + [ + 34.6485997, + -2.0692632 + ], + [ + 34.6486614, + -2.0686092 + ], + [ + 34.6487392, + -2.0677434 + ], + [ + 34.6487526, + -2.0674271 + ], + [ + 34.6487768, + -2.067033 + ], + [ + 34.6488063, + -2.066371 + ], + [ + 34.6493301, + -2.0605889 + ], + [ + 34.6495805, + -2.0578251 + ], + [ + 34.6500406, + -2.0519929 + ], + [ + 34.6501184, + -2.0512681 + ], + [ + 34.6503038, + -2.0505497 + ], + [ + 34.6513685, + -2.0460222 + ], + [ + 34.6516988, + -2.0446813 + ], + [ + 34.6523056, + -2.0418236 + ], + [ + 34.6528083, + -2.0398914 + ], + [ + 34.6537004, + -2.0364625 + ], + [ + 34.6550736, + -2.0305654 + ], + [ + 34.6562109, + -2.0259334 + ], + [ + 34.6568922, + -2.0228508 + ], + [ + 34.6571229, + -2.0219233 + ], + [ + 34.6572706, + -2.0212179 + ], + [ + 34.6573378, + -2.0209027 + ], + [ + 34.65752, + -2.0203842 + ], + [ + 34.6578309, + -2.0191838 + ], + [ + 34.658179, + -2.0178103 + ], + [ + 34.6591841, + -2.0133493 + ], + [ + 34.6604329, + -2.008236 + ], + [ + 34.6621013, + -2.0014005 + ], + [ + 34.6626913, + -1.9989023 + ], + [ + 34.6628255, + -1.9982643 + ], + [ + 34.6628576, + -1.9977603 + ], + [ + 34.6628348, + -1.9973968 + ], + [ + 34.6628496, + -1.9969937 + ], + [ + 34.6627691, + -1.9952808 + ], + [ + 34.6626753, + -1.993643 + ], + [ + 34.6626002, + -1.9919917 + ], + [ + 34.6625009, + -1.9906702 + ], + [ + 34.6624579, + -1.9897157 + ], + [ + 34.6621415, + -1.9838159 + ], + [ + 34.6618786, + -1.9791141 + ], + [ + 34.6618035, + -1.977353 + ], + [ + 34.6617526, + -1.9766828 + ], + [ + 34.6615514, + -1.9727369 + ], + [ + 34.6614897, + -1.9717478 + ] + ] + }, + "id": "way/442818383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/443367257", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.0006068, + -2.1729145 + ], + [ + 35.0001089, + -2.173292 + ], + [ + 34.9996084, + -2.1736045 + ], + [ + 34.9991155, + -2.1739623 + ], + [ + 34.9982692, + -2.1745082 + ], + [ + 34.9977493, + -2.1748726 + ] + ] + }, + "id": "way/443367257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/443367258", + "highway": "secondary", + "lanes": "2", + "maxspeed": "50", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.9977493, + -2.1748726 + ], + [ + 34.9969548, + -2.1753047 + ], + [ + 34.9962046, + -2.1757031 + ], + [ + 34.9958125, + -2.1759733 + ], + [ + 34.99538, + -2.1763312 + ], + [ + 34.9945014, + -2.1771079 + ], + [ + 34.9937309, + -2.1778779 + ], + [ + 34.9927121, + -2.1794764 + ], + [ + 34.9919786, + -2.1807238 + ], + [ + 34.9907609, + -2.182806 + ], + [ + 34.9903819, + -2.1834591 + ], + [ + 34.989822, + -2.1844313 + ], + [ + 34.9895857, + -2.1848036 + ], + [ + 34.9893856, + -2.1850461 + ], + [ + 34.9891323, + -2.1853163 + ], + [ + 34.9880976, + -2.1861162 + ], + [ + 34.9865393, + -2.1871011 + ], + [ + 34.9859922, + -2.1874521 + ], + [ + 34.9855153, + -2.1877755 + ], + [ + 34.9850576, + -2.1881265 + ], + [ + 34.9848383, + -2.1883264 + ], + [ + 34.9846318, + -2.1885328 + ], + [ + 34.9843998, + -2.1887838 + ], + [ + 34.9837858, + -2.1895486 + ], + [ + 34.9831332, + -2.190308 + ], + [ + 34.9818782, + -2.1915301 + ], + [ + 34.981609, + -2.1917914 + ], + [ + 34.9808748, + -2.1929398 + ], + [ + 34.9795753, + -2.1948646 + ], + [ + 34.9787493, + -2.1962516 + ], + [ + 34.9765098, + -2.1995447 + ], + [ + 34.9745768, + -2.2026165 + ], + [ + 34.9739634, + -2.2037457 + ], + [ + 34.9734767, + -2.2045526 + ], + [ + 34.9733313, + -2.2048303 + ], + [ + 34.9732596, + -2.2050778 + ], + [ + 34.9731498, + -2.2055246 + ], + [ + 34.9729863, + -2.2063849 + ], + [ + 34.9729051, + -2.2069323 + ], + [ + 34.972882, + -2.2070879 + ], + [ + 34.9728533, + -2.2074324 + ], + [ + 34.9728861, + -2.2080458 + ], + [ + 34.9729183, + -2.2089571 + ], + [ + 34.9728534, + -2.2093075 + ], + [ + 34.972761, + -2.2096495 + ], + [ + 34.9726149, + -2.2099695 + ], + [ + 34.9723746, + -2.2103576 + ], + [ + 34.9722437, + -2.210506 + ], + [ + 34.9720107, + -2.2107663 + ], + [ + 34.9715826, + -2.2111781 + ], + [ + 34.9711151, + -2.2115736 + ], + [ + 34.9705714, + -2.2119443 + ], + [ + 34.9697932, + -2.2123118 + ], + [ + 34.969351, + -2.2125758 + ], + [ + 34.9689315, + -2.2128632 + ], + [ + 34.9682079, + -2.2134946 + ], + [ + 34.9677368, + -2.213971 + ], + [ + 34.9666686, + -2.2150511 + ], + [ + 34.9662159, + -2.2155089 + ], + [ + 34.9661365, + -2.2155749 + ], + [ + 34.9658682, + -2.2159261 + ], + [ + 34.9653284, + -2.2168577 + ], + [ + 34.9651489, + -2.2173046 + ], + [ + 34.9649238, + -2.2177147 + ], + [ + 34.9648538, + -2.2179221 + ], + [ + 34.9647984, + -2.2180861 + ], + [ + 34.9647552, + -2.2186334 + ], + [ + 34.9646905, + -2.220002 + ], + [ + 34.9646196, + -2.2215718 + ], + [ + 34.9645982, + -2.2218441 + ], + [ + 34.9645398, + -2.2220426 + ], + [ + 34.9640546, + -2.2231212 + ], + [ + 34.9639398, + -2.2234157 + ], + [ + 34.9638077, + -2.2238598 + ], + [ + 34.9637466, + -2.2243878 + ], + [ + 34.9636895, + -2.225656 + ], + [ + 34.9637006, + -2.2267611 + ], + [ + 34.9641449, + -2.2297553 + ], + [ + 34.964273, + -2.2311427 + ], + [ + 34.9644755, + -2.2320371 + ], + [ + 34.9645459, + -2.2324706 + ], + [ + 34.9645968, + -2.232903 + ], + [ + 34.9646437, + -2.2334139 + ], + [ + 34.9646536, + -2.2337012 + ], + [ + 34.9646705, + -2.2348719 + ], + [ + 34.9646745, + -2.235312 + ], + [ + 34.9645998, + -2.2356202 + ], + [ + 34.9642558, + -2.2361763 + ], + [ + 34.9639055, + -2.2366472 + ], + [ + 34.9633961, + -2.2371987 + ], + [ + 34.9628131, + -2.2377737 + ], + [ + 34.9624761, + -2.2381344 + ], + [ + 34.9623181, + -2.2383837 + ], + [ + 34.9621845, + -2.238594 + ], + [ + 34.9620431, + -2.2389861 + ], + [ + 34.9617893, + -2.2394291 + ], + [ + 34.9610381, + -2.2403626 + ], + [ + 34.960535, + -2.2408973 + ], + [ + 34.960207, + -2.2412294 + ], + [ + 34.9597474, + -2.241752 + ], + [ + 34.9593687, + -2.2422204 + ], + [ + 34.9592462, + -2.2424098 + ], + [ + 34.9591063, + -2.2426877 + ], + [ + 34.9586597, + -2.2435369 + ], + [ + 34.9585658, + -2.2437754 + ], + [ + 34.9585122, + -2.2440112 + ], + [ + 34.9584907, + -2.2441989 + ], + [ + 34.9584049, + -2.244566 + ], + [ + 34.9583191, + -2.2447483 + ], + [ + 34.9581313, + -2.2450699 + ], + [ + 34.9579945, + -2.2454022 + ], + [ + 34.9579275, + -2.2456622 + ], + [ + 34.9578845, + -2.2459302 + ], + [ + 34.9578231, + -2.2461724 + ], + [ + 34.9576365, + -2.2469088 + ], + [ + 34.9573991, + -2.2475383 + ], + [ + 34.957214, + -2.2479591 + ], + [ + 34.9567929, + -2.248873 + ], + [ + 34.9562082, + -2.2500496 + ], + [ + 34.955712, + -2.2508322 + ], + [ + 34.9554437, + -2.2511887 + ], + [ + 34.954403, + -2.2523813 + ], + [ + 34.9542448, + -2.2525931 + ], + [ + 34.9541134, + -2.2528959 + ], + [ + 34.954057, + -2.2531934 + ], + [ + 34.9539927, + -2.253314 + ], + [ + 34.9538639, + -2.2534266 + ], + [ + 34.9536681, + -2.2535606 + ], + [ + 34.9534535, + -2.2537053 + ], + [ + 34.9521741, + -2.2545201 + ], + [ + 34.9518201, + -2.2548337 + ], + [ + 34.9515465, + -2.2551285 + ], + [ + 34.9506077, + -2.2563158 + ], + [ + 34.9501812, + -2.2567258 + ], + [ + 34.944676, + -2.2612552 + ], + [ + 34.9429701, + -2.2631233 + ], + [ + 34.9426603, + -2.2633913 + ], + [ + 34.9420649, + -2.2637692 + ], + [ + 34.9413514, + -2.2643695 + ], + [ + 34.9408847, + -2.2648948 + ], + [ + 34.9394792, + -2.2668031 + ], + [ + 34.9355363, + -2.2726791 + ], + [ + 34.934163, + -2.2746811 + ], + [ + 34.9334844, + -2.2756459 + ], + [ + 34.9328165, + -2.2766644 + ], + [ + 34.9314432, + -2.2787093 + ], + [ + 34.9308424, + -2.2797545 + ], + [ + 34.9304749, + -2.2802503 + ], + [ + 34.9300708, + -2.2807265 + ], + [ + 34.9295167, + -2.2811575 + ], + [ + 34.9288971, + -2.2816024 + ], + [ + 34.9282963, + -2.2820393 + ], + [ + 34.928012, + -2.2822591 + ], + [ + 34.9277834, + -2.282507 + ], + [ + 34.9275346, + -2.2830738 + ], + [ + 34.9272901, + -2.2836498 + ], + [ + 34.9266891, + -2.2861413 + ], + [ + 34.9266677, + -2.2863302 + ], + [ + 34.9266823, + -2.2865809 + ], + [ + 34.9267569, + -2.2869474 + ] + ] + }, + "id": "way/443367258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/443920793", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2708758, + -1.088816 + ], + [ + 34.2711229, + -1.0886542 + ], + [ + 34.2712975, + -1.0885509 + ], + [ + 34.2714791, + -1.0884782 + ], + [ + 34.2716803, + -1.0884474 + ], + [ + 34.2718653, + -1.0884956 + ], + [ + 34.2721161, + -1.0886404 + ], + [ + 34.2725869, + -1.0889381 + ], + [ + 34.2730871, + -1.0892251 + ], + [ + 34.2732373, + -1.0893109 + ], + [ + 34.2737841, + -1.089617 + ], + [ + 34.2738234, + -1.0896363 + ], + [ + 34.2752141, + -1.0903004 + ], + [ + 34.2761475, + -1.0907805 + ], + [ + 34.2764657, + -1.0909333 + ], + [ + 34.2777327, + -1.0915246 + ], + [ + 34.2783777, + -1.0917874 + ], + [ + 34.2786835, + -1.0919175 + ], + [ + 34.2788667, + -1.0920087 + ], + [ + 34.2793259, + -1.092242 + ], + [ + 34.2798872, + -1.0925763 + ], + [ + 34.2808308, + -1.0931274 + ], + [ + 34.2809886, + -1.0932196 + ], + [ + 34.2812968, + -1.0933996 + ], + [ + 34.281933, + -1.0937612 + ], + [ + 34.2829684, + -1.0944169 + ], + [ + 34.2830772, + -1.0944833 + ], + [ + 34.2833653, + -1.094681 + ], + [ + 34.2836451, + -1.0949034 + ], + [ + 34.2844422, + -1.0956659 + ], + [ + 34.2857127, + -1.096862 + ], + [ + 34.2859389, + -1.097057 + ], + [ + 34.2863285, + -1.0974177 + ], + [ + 34.2868536, + -1.0979479 + ], + [ + 34.2873296, + -1.0985038 + ], + [ + 34.2875395, + -1.0987512 + ], + [ + 34.2877749, + -1.0990442 + ], + [ + 34.2879318, + -1.0992527 + ], + [ + 34.2881061, + -1.099484 + ], + [ + 34.2882684, + -1.0997046 + ], + [ + 34.2883515, + -1.0998279 + ], + [ + 34.2884266, + -1.0999338 + ], + [ + 34.2884689, + -1.0999902 + ], + [ + 34.2885862, + -1.1001806 + ], + [ + 34.2887981, + -1.1005077 + ], + [ + 34.2888532, + -1.1005875 + ], + [ + 34.2889792, + -1.1007732 + ], + [ + 34.289124, + -1.1009844 + ], + [ + 34.2892803, + -1.101211 + ], + [ + 34.289462, + -1.1014946 + ], + [ + 34.2895263, + -1.1016012 + ], + [ + 34.2896256, + -1.1017795 + ] + ] + }, + "id": "way/443920793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/444405867", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4557624, + -2.0262864 + ], + [ + 34.4562168, + -2.0263961 + ], + [ + 34.4564013, + -2.0264159 + ], + [ + 34.4571631, + -2.026491 + ], + [ + 34.4576392, + -2.026548 + ], + [ + 34.4578484, + -2.02654 + ], + [ + 34.4580268, + -2.0265098 + ], + [ + 34.4583684, + -2.0264064 + ], + [ + 34.4587992, + -2.0262256 + ], + [ + 34.4602168, + -2.0255884 + ], + [ + 34.4609812, + -2.0252748 + ], + [ + 34.4616934, + -2.0250274 + ], + [ + 34.4641113, + -2.0243527 + ], + [ + 34.4648449, + -2.0242232 + ], + [ + 34.4665763, + -2.0239613 + ], + [ + 34.4682781, + -2.0236148 + ], + [ + 34.4685343, + -2.0235968 + ], + [ + 34.468832, + -2.0236504 + ], + [ + 34.4694167, + -2.0238085 + ], + [ + 34.4706224, + -2.0243037 + ], + [ + 34.4713345, + -2.0246207 + ], + [ + 34.4720574, + -2.0249049 + ], + [ + 34.4727863, + -2.0251525 + ], + [ + 34.4735225, + -2.0253699 + ], + [ + 34.4736265, + -2.0253893 + ], + [ + 34.4739604, + -2.0254302 + ], + [ + 34.4742206, + -2.0253954 + ], + [ + 34.4747886, + -2.0251392 + ], + [ + 34.4759527, + -2.0246138 + ], + [ + 34.4764877, + -2.024353 + ], + [ + 34.4769988, + -2.0240643 + ], + [ + 34.4778839, + -2.0235255 + ], + [ + 34.4785436, + -2.0231809 + ], + [ + 34.4788722, + -2.0230556 + ], + [ + 34.479221, + -2.0229558 + ], + [ + 34.4796259, + -2.0228599 + ], + [ + 34.48055, + -2.0227213 + ], + [ + 34.4809905, + -2.0226976 + ], + [ + 34.4813096, + -2.0227405 + ], + [ + 34.4817892, + -2.0228232 + ], + [ + 34.4820896, + -2.0228687 + ], + [ + 34.482632, + -2.0229308 + ], + [ + 34.4828117, + -2.0229361 + ], + [ + 34.4830472, + -2.0228982 + ], + [ + 34.4837097, + -2.0227588 + ], + [ + 34.4842904, + -2.0226168 + ], + [ + 34.4846282, + -2.0225088 + ], + [ + 34.4847891, + -2.0224311 + ], + [ + 34.4852519, + -2.0221959 + ], + [ + 34.486416, + -2.0215901 + ], + [ + 34.4866291, + -2.0214795 + ], + [ + 34.486821, + -2.0213382 + ], + [ + 34.4871864, + -2.0209874 + ], + [ + 34.4874653, + -2.0206041 + ], + [ + 34.4877383, + -2.0201587 + ], + [ + 34.4880387, + -2.0194375 + ], + [ + 34.4882559, + -2.0190086 + ], + [ + 34.4888138, + -2.0177729 + ], + [ + 34.4890163, + -2.0173574 + ], + [ + 34.4892175, + -2.0169748 + ], + [ + 34.4894831, + -2.0166766 + ], + [ + 34.4896865, + -2.0165111 + ], + [ + 34.4903413, + -2.0162745 + ], + [ + 34.4910173, + -2.0161029 + ], + [ + 34.4921599, + -2.015926 + ], + [ + 34.4931469, + -2.0157759 + ], + [ + 34.493281, + -2.0157069 + ], + [ + 34.4934205, + -2.0155595 + ], + [ + 34.4935948, + -2.0153068 + ], + [ + 34.4937504, + -2.0149778 + ], + [ + 34.4938711, + -2.0145991 + ], + [ + 34.4940938, + -2.013669 + ], + [ + 34.4941581, + -2.0134928 + ], + [ + 34.4942734, + -2.0133293 + ], + [ + 34.4943727, + -2.0132267 + ], + [ + 34.4953571, + -2.0122911 + ], + [ + 34.495813, + -2.0118596 + ], + [ + 34.4963562, + -2.0112843 + ], + [ + 34.4966499, + -2.0109945 + ], + [ + 34.4969396, + -2.0106675 + ], + [ + 34.4971944, + -2.0103156 + ], + [ + 34.4978374, + -2.0094583 + ], + [ + 34.4979581, + -2.0092358 + ], + [ + 34.4980305, + -2.0089732 + ], + [ + 34.4981492, + -2.0084043 + ] + ] + }, + "id": "way/444405867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445308455", + "highway": "secondary", + "name": "Robanda Road", + "name:en": "Robanda Road", + "name:sw": "Barabara ya Robanda", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6614897, + -1.9717478 + ], + [ + 34.6614582, + -1.9712862 + ], + [ + 34.6614119, + -1.9704021 + ], + [ + 34.6613717, + -1.9691529 + ], + [ + 34.6613288, + -1.9684372 + ], + [ + 34.6612832, + -1.9677992 + ], + [ + 34.661192, + -1.9658987 + ], + [ + 34.6611035, + -1.9645583 + ], + [ + 34.6610337, + -1.9631081 + ], + [ + 34.6607736, + -1.9589129 + ], + [ + 34.6607253, + -1.9574332 + ], + [ + 34.6606448, + -1.9564441 + ], + [ + 34.6605161, + -1.9543531 + ], + [ + 34.6604142, + -1.9528949 + ], + [ + 34.6603525, + -1.9515519 + ], + [ + 34.6602908, + -1.9507691 + ], + [ + 34.6602398, + -1.9501472 + ], + [ + 34.660213, + -1.9494476 + ], + [ + 34.6601647, + -1.9486487 + ], + [ + 34.6601567, + -1.9485335 + ], + [ + 34.6601463, + -1.9483089 + ], + [ + 34.660095, + -1.9474558 + ], + [ + 34.6600226, + -1.9464586 + ], + [ + 34.6599045, + -1.9449977 + ], + [ + 34.6598697, + -1.9445205 + ], + [ + 34.6597865, + -1.943207 + ], + [ + 34.6596792, + -1.9420516 + ], + [ + 34.6596256, + -1.9412715 + ], + [ + 34.6595505, + -1.9400384 + ], + [ + 34.6593761, + -1.9380547 + ], + [ + 34.6592515, + -1.9366407 + ], + [ + 34.6591991, + -1.9357896 + ], + [ + 34.659175, + -1.9354143 + ], + [ + 34.6591267, + -1.9348111 + ], + [ + 34.659065, + -1.9339801 + ], + [ + 34.6589953, + -1.9326451 + ], + [ + 34.6589121, + -1.9318677 + ], + [ + 34.6587016, + -1.9291696 + ], + [ + 34.6586587, + -1.9285665 + ], + [ + 34.6585023, + -1.9267824 + ], + [ + 34.658417, + -1.9253278 + ], + [ + 34.6583536, + -1.9244337 + ], + [ + 34.658137, + -1.9215229 + ], + [ + 34.658128, + -1.9214068 + ], + [ + 34.658005, + -1.9198223 + ], + [ + 34.6579868, + -1.9195875 + ], + [ + 34.6579078, + -1.9185818 + ], + [ + 34.6579009, + -1.9184937 + ], + [ + 34.6577507, + -1.9162795 + ], + [ + 34.6575952, + -1.9144083 + ], + [ + 34.6574852, + -1.9129044 + ], + [ + 34.6574927, + -1.9126196 + ], + [ + 34.6575603, + -1.9122852 + ], + [ + 34.657681, + -1.9118992 + ], + [ + 34.6584288, + -1.9095309 + ], + [ + 34.6584713, + -1.9094018 + ], + [ + 34.6586347, + -1.9089053 + ], + [ + 34.6586886, + -1.9087756 + ], + [ + 34.6587018, + -1.9087439 + ], + [ + 34.6587415, + -1.9086484 + ], + [ + 34.6587795, + -1.9084998 + ], + [ + 34.6589282, + -1.9079183 + ], + [ + 34.6589993, + -1.9077146 + ], + [ + 34.6590283, + -1.9076574 + ], + [ + 34.6591911, + -1.9073366 + ], + [ + 34.6593737, + -1.9069069 + ], + [ + 34.6594486, + -1.9067307 + ], + [ + 34.6596752, + -1.9062522 + ], + [ + 34.6599019, + -1.9057925 + ], + [ + 34.660169, + -1.9053002 + ], + [ + 34.660382, + -1.9049079 + ], + [ + 34.6604813, + -1.9047239 + ], + [ + 34.660787, + -1.9041573 + ], + [ + 34.6608046, + -1.9041258 + ], + [ + 34.6611893, + -1.9034388 + ], + [ + 34.6613154, + -1.9031949 + ], + [ + 34.6613717, + -1.9030179 + ], + [ + 34.6616667, + -1.9020261 + ], + [ + 34.6617928, + -1.9015543 + ], + [ + 34.6619247, + -1.9010827 + ], + [ + 34.6620905, + -1.90049 + ], + [ + 34.6622837, + -1.8998172 + ], + [ + 34.6624991, + -1.8992007 + ], + [ + 34.662517, + -1.8991496 + ], + [ + 34.6627146, + -1.8986461 + ], + [ + 34.6628442, + -1.8983159 + ], + [ + 34.6630207, + -1.8978936 + ], + [ + 34.6631635, + -1.8975519 + ], + [ + 34.6632412, + -1.8973998 + ], + [ + 34.6637455, + -1.8964126 + ], + [ + 34.6637934, + -1.8962964 + ], + [ + 34.6638169, + -1.8962394 + ], + [ + 34.663952, + -1.8959113 + ], + [ + 34.6641344, + -1.8954288 + ], + [ + 34.6642042, + -1.8947747 + ], + [ + 34.6642148, + -1.894386 + ], + [ + 34.6642124, + -1.894269 + ], + [ + 34.6642167, + -1.8938097 + ], + [ + 34.6642175, + -1.8935576 + ], + [ + 34.6642604, + -1.8931341 + ], + [ + 34.6642283, + -1.8924076 + ], + [ + 34.6642068, + -1.8921181 + ], + [ + 34.6642417, + -1.8918768 + ], + [ + 34.6642953, + -1.8916342 + ], + [ + 34.6643583, + -1.89122 + ], + [ + 34.6644428, + -1.8905847 + ], + [ + 34.6645231, + -1.89001 + ], + [ + 34.6646279, + -1.8892604 + ], + [ + 34.6646601, + -1.888365 + ], + [ + 34.6647835, + -1.8874938 + ] + ] + }, + "id": "way/445308455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445952900", + "highway": "primary", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6230161, + -1.113577 + ], + [ + 34.6229799, + -1.113801 + ], + [ + 34.6229598, + -1.1140095 + ], + [ + 34.6229531, + -1.1141174 + ], + [ + 34.6229491, + -1.114277 + ], + [ + 34.6229544, + -1.1143474 + ], + [ + 34.6229655, + -1.1144204 + ], + [ + 34.6229829, + -1.1144824 + ], + [ + 34.6230067, + -1.1145418 + ], + [ + 34.6230168, + -1.114566 + ], + [ + 34.6231395, + -1.1147255 + ], + [ + 34.6233661, + -1.1150473 + ], + [ + 34.6237497, + -1.115601 + ], + [ + 34.6240132, + -1.115964 + ], + [ + 34.6240602, + -1.1160288 + ], + [ + 34.6243016, + -1.1163613 + ], + [ + 34.6245249, + -1.1166643 + ], + [ + 34.6246898, + -1.1168923 + ], + [ + 34.6247716, + -1.1170089 + ], + [ + 34.625125, + -1.1175232 + ], + [ + 34.6252571, + -1.1177008 + ], + [ + 34.6254977, + -1.118049 + ], + [ + 34.625756, + -1.1183873 + ], + [ + 34.6258982, + -1.1185911 + ], + [ + 34.6260115, + -1.1187433 + ], + [ + 34.6264936, + -1.119401 + ], + [ + 34.6266116, + -1.1195512 + ], + [ + 34.6268088, + -1.1197999 + ], + [ + 34.6269815, + -1.1200027 + ], + [ + 34.6274717, + -1.1205206 + ], + [ + 34.6278119, + -1.1208827 + ], + [ + 34.6278892, + -1.1209768 + ], + [ + 34.6282274, + -1.1213525 + ], + [ + 34.6285066, + -1.1216858 + ], + [ + 34.628685, + -1.1219124 + ], + [ + 34.6288861, + -1.1221471 + ], + [ + 34.6291664, + -1.1224863 + ], + [ + 34.6295433, + -1.1229341 + ], + [ + 34.630014, + -1.123508 + ], + [ + 34.6303586, + -1.1239473 + ], + [ + 34.6305478, + -1.1242443 + ], + [ + 34.6306416, + -1.1244541 + ], + [ + 34.6306745, + -1.1245749 + ], + [ + 34.6306921, + -1.1246892 + ], + [ + 34.6306935, + -1.1248901 + ], + [ + 34.6306711, + -1.125054 + ], + [ + 34.630643, + -1.12516 + ], + [ + 34.6306081, + -1.1253021 + ], + [ + 34.6304418, + -1.1258639 + ], + [ + 34.6303707, + -1.1261146 + ], + [ + 34.6303359, + -1.1262688 + ], + [ + 34.6303144, + -1.1264767 + ], + [ + 34.6303103, + -1.1267853 + ], + [ + 34.6303164, + -1.127587 + ], + [ + 34.6303384, + -1.1279862 + ], + [ + 34.6303756, + -1.128413 + ], + [ + 34.6304404, + -1.1288316 + ], + [ + 34.6305162, + -1.129419 + ], + [ + 34.6305692, + -1.1297148 + ], + [ + 34.6306308, + -1.1299918 + ], + [ + 34.6307095, + -1.1303585 + ], + [ + 34.6308227, + -1.1308799 + ], + [ + 34.630967, + -1.1314938 + ], + [ + 34.6310535, + -1.13184 + ], + [ + 34.6311823, + -1.1323426 + ], + [ + 34.6313161, + -1.132926 + ], + [ + 34.6313994, + -1.1333311 + ], + [ + 34.6315242, + -1.133932 + ], + [ + 34.63165, + -1.1345282 + ], + [ + 34.6317207, + -1.1348729 + ], + [ + 34.6317487, + -1.1350559 + ], + [ + 34.6317889, + -1.1353159 + ], + [ + 34.6318145, + -1.1355371 + ], + [ + 34.631867, + -1.1358513 + ], + [ + 34.6319146, + -1.1361077 + ], + [ + 34.6320131, + -1.1364338 + ], + [ + 34.6320989, + -1.1366362 + ], + [ + 34.6321793, + -1.1367763 + ], + [ + 34.6322424, + -1.1368964 + ], + [ + 34.6323175, + -1.1370083 + ], + [ + 34.6324414, + -1.1371605 + ], + [ + 34.6326144, + -1.1373563 + ], + [ + 34.6329385, + -1.1377122 + ], + [ + 34.6333026, + -1.1380695 + ], + [ + 34.6334884, + -1.1382705 + ], + [ + 34.6335948, + -1.1384477 + ], + [ + 34.6336814, + -1.1386693 + ], + [ + 34.6337444, + -1.1389119 + ], + [ + 34.6337798, + -1.1392037 + ] + ] + }, + "id": "way/445952900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445976310", + "highway": "trunk", + "junction": "roundabout", + "oneway": "yes", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.785099, + -3.1817592 + ], + [ + 33.7850268, + -3.1817661 + ], + [ + 33.7849568, + -3.1817466 + ], + [ + 33.7848986, + -3.1817033 + ], + [ + 33.7848599, + -3.181642 + ], + [ + 33.7848457, + -3.1815663 + ], + [ + 33.7848615, + -3.181491 + ], + [ + 33.7849048, + -3.1814273 + ], + [ + 33.7849691, + -3.1813849 + ], + [ + 33.7850072, + -3.1813737 + ], + [ + 33.7850777, + -3.181373 + ], + [ + 33.7851441, + -3.1813969 + ], + [ + 33.7851978, + -3.1814425 + ], + [ + 33.7852323, + -3.181504 + ], + [ + 33.7852416, + -3.1815445 + ], + [ + 33.7852423, + -3.181586 + ], + [ + 33.7852343, + -3.1816267 + ], + [ + 33.785205, + -3.1816852 + ], + [ + 33.7851582, + -3.1817311 + ], + [ + 33.785099, + -3.1817592 + ] + ] + }, + "id": "way/445976310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445976311", + "highway": "trunk", + "ref": "T36", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7701148, + -3.1845153 + ], + [ + 33.7711531, + -3.1843868 + ], + [ + 33.7714219, + -3.1843536 + ], + [ + 33.7714605, + -3.1843488 + ], + [ + 33.7721542, + -3.1842629 + ], + [ + 33.7724327, + -3.1842204 + ], + [ + 33.7738522, + -3.1840036 + ], + [ + 33.7740031, + -3.1839819 + ], + [ + 33.7754587, + -3.1837728 + ], + [ + 33.7757687, + -3.1837274 + ], + [ + 33.7764927, + -3.1836215 + ], + [ + 33.7770546, + -3.1835586 + ], + [ + 33.7775508, + -3.1834942 + ], + [ + 33.7783984, + -3.1833912 + ], + [ + 33.7789469, + -3.1833135 + ], + [ + 33.7797404, + -3.1831073 + ], + [ + 33.7799635, + -3.1830015 + ], + [ + 33.7803363, + -3.1828033 + ], + [ + 33.780748, + -3.1826346 + ], + [ + 33.7813032, + -3.1824231 + ], + [ + 33.7819019, + -3.1821961 + ], + [ + 33.7819885, + -3.1821633 + ], + [ + 33.7831303, + -3.1817971 + ], + [ + 33.7832492, + -3.1817589 + ], + [ + 33.7840484, + -3.1815407 + ], + [ + 33.7841362, + -3.1815201 + ], + [ + 33.784339, + -3.181466 + ] + ] + }, + "id": "way/445976311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445976312", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7848599, + -3.181642 + ], + [ + 33.784339, + -3.181466 + ] + ] + }, + "id": "way/445976312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445976314", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.785413, + -3.1818807 + ], + [ + 33.7852509, + -3.1818276 + ], + [ + 33.785099, + -3.1817592 + ] + ] + }, + "id": "way/445976314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445976316", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.784339, + -3.181466 + ], + [ + 33.7844557, + -3.1814098 + ], + [ + 33.7845656, + -3.1813723 + ], + [ + 33.784744, + -3.1813522 + ], + [ + 33.7849691, + -3.1813849 + ] + ] + }, + "id": "way/445976316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445976317", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7852343, + -3.1816267 + ], + [ + 33.7853341, + -3.1817218 + ], + [ + 33.785413, + -3.1818807 + ] + ] + }, + "id": "way/445976317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445999448", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9684056, + -2.4557261 + ], + [ + 33.9680348, + -2.4531844 + ], + [ + 33.9678243, + -2.451547 + ], + [ + 33.9677385, + -2.4508798 + ], + [ + 33.9675778, + -2.4496302 + ], + [ + 33.9672077, + -2.4471263 + ], + [ + 33.9670171, + -2.4458366 + ], + [ + 33.966981, + -2.4455922 + ], + [ + 33.9669109, + -2.4451016 + ], + [ + 33.9666911, + -2.4435649 + ], + [ + 33.9666299, + -2.4431313 + ], + [ + 33.9665512, + -2.4425869 + ], + [ + 33.9665037, + -2.4422545 + ], + [ + 33.9663188, + -2.441331 + ], + [ + 33.9662902, + -2.441188 + ], + [ + 33.9660957, + -2.440536 + ], + [ + 33.9660076, + -2.4402406 + ], + [ + 33.9658747, + -2.4398923 + ], + [ + 33.9656748, + -2.4393685 + ], + [ + 33.9651904, + -2.4382022 + ], + [ + 33.964657, + -2.436843 + ], + [ + 33.9646009, + -2.4366904 + ], + [ + 33.9642862, + -2.4357559 + ], + [ + 33.9640161, + -2.4348333 + ], + [ + 33.9637613, + -2.4338766 + ], + [ + 33.9636219, + -2.4333085 + ], + [ + 33.9634704, + -2.432623 + ], + [ + 33.9633518, + -2.4320553 + ], + [ + 33.9631358, + -2.4307254 + ], + [ + 33.9631024, + -2.4305197 + ], + [ + 33.963006, + -2.4299262 + ], + [ + 33.9628044, + -2.4285963 + ], + [ + 33.9627654, + -2.4282659 + ], + [ + 33.9627054, + -2.4280307 + ], + [ + 33.9626512, + -2.427585 + ], + [ + 33.9625915, + -2.4271908 + ], + [ + 33.9625588, + -2.4266052 + ], + [ + 33.9625629, + -2.4236406 + ], + [ + 33.9625546, + -2.4226808 + ], + [ + 33.9625581, + -2.4220262 + ], + [ + 33.9625261, + -2.4210578 + ], + [ + 33.9625607, + -2.4192943 + ], + [ + 33.9625851, + -2.4183764 + ], + [ + 33.9625704, + -2.4171144 + ], + [ + 33.9625926, + -2.4163555 + ], + [ + 33.9625987, + -2.4158303 + ], + [ + 33.9626689, + -2.414289 + ], + [ + 33.9627225, + -2.4134599 + ], + [ + 33.96297, + -2.411544 + ], + [ + 33.9631616, + -2.4099754 + ], + [ + 33.9631909, + -2.4097353 + ], + [ + 33.9632206, + -2.4093966 + ], + [ + 33.9632617, + -2.4091561 + ], + [ + 33.9634733, + -2.4074872 + ], + [ + 33.9636766, + -2.4058084 + ], + [ + 33.9637592, + -2.4051806 + ], + [ + 33.9639974, + -2.4030801 + ], + [ + 33.9642671, + -2.4008626 + ], + [ + 33.9647872, + -2.3967648 + ], + [ + 33.9647944, + -2.3967016 + ], + [ + 33.9654662, + -2.3912364 + ], + [ + 33.9659773, + -2.3870915 + ], + [ + 33.9664121, + -2.3835588 + ], + [ + 33.9664501, + -2.3832243 + ], + [ + 33.9665793, + -2.3821867 + ], + [ + 33.9669346, + -2.3795802 + ], + [ + 33.9669528, + -2.3794267 + ], + [ + 33.967126, + -2.3781268 + ], + [ + 33.9671267, + -2.378052 + ], + [ + 33.9671304, + -2.3776876 + ], + [ + 33.9671278, + -2.3774341 + ], + [ + 33.967126, + -2.3772528 + ], + [ + 33.9669972, + -2.3754826 + ], + [ + 33.9668316, + -2.3739144 + ], + [ + 33.9668067, + -2.373679 + ], + [ + 33.9667758, + -2.3733868 + ], + [ + 33.9666945, + -2.3727501 + ], + [ + 33.9666427, + -2.3723446 + ], + [ + 33.9666233, + -2.3721925 + ], + [ + 33.9665827, + -2.3718753 + ], + [ + 33.9664871, + -2.3712809 + ], + [ + 33.9663182, + -2.3706478 + ], + [ + 33.9661428, + -2.370053 + ], + [ + 33.9657866, + -2.3692737 + ], + [ + 33.9656287, + -2.3689127 + ], + [ + 33.9654325, + -2.3684831 + ], + [ + 33.9653741, + -2.3683625 + ], + [ + 33.9641833, + -2.3660305 + ], + [ + 33.9637613, + -2.3653795 + ], + [ + 33.9636822, + -2.3652776 + ], + [ + 33.9634743, + -2.3650686 + ], + [ + 33.9633469, + -2.3649574 + ], + [ + 33.9631927, + -2.3648381 + ], + [ + 33.9630371, + -2.3647229 + ], + [ + 33.9627233, + -2.3645527 + ], + [ + 33.9612322, + -2.3640566 + ], + [ + 33.9611314, + -2.3640199 + ], + [ + 33.9577967, + -2.3628059 + ], + [ + 33.95596, + -2.3621373 + ], + [ + 33.9550873, + -2.3618196 + ], + [ + 33.954512, + -2.361668 + ], + [ + 33.9538751, + -2.3615002 + ], + [ + 33.9524956, + -2.3612802 + ], + [ + 33.9495126, + -2.3608044 + ], + [ + 33.9484457, + -2.3606342 + ], + [ + 33.9464656, + -2.3603184 + ], + [ + 33.9456139, + -2.3600921 + ], + [ + 33.9452275, + -2.3599894 + ], + [ + 33.9447046, + -2.3598505 + ], + [ + 33.9416519, + -2.3589435 + ], + [ + 33.9387763, + -2.3582044 + ], + [ + 33.9384797, + -2.3581182 + ], + [ + 33.936889, + -2.3577308 + ], + [ + 33.9367905, + -2.3577046 + ], + [ + 33.9333586, + -2.3568356 + ], + [ + 33.9332505, + -2.3568084 + ], + [ + 33.9331585, + -2.3567852 + ], + [ + 33.9318319, + -2.3564513 + ], + [ + 33.9303361, + -2.3560748 + ], + [ + 33.9266431, + -2.3550874 + ], + [ + 33.9250552, + -2.3546805 + ], + [ + 33.9236684, + -2.3543222 + ], + [ + 33.9226297, + -2.3540568 + ], + [ + 33.9210198, + -2.3536419 + ], + [ + 33.9199379, + -2.3533682 + ], + [ + 33.919327, + -2.3532193 + ], + [ + 33.9182888, + -2.3529366 + ], + [ + 33.9153334, + -2.3521823 + ], + [ + 33.9143451, + -2.3519461 + ], + [ + 33.9093385, + -2.3506611 + ] + ] + }, + "id": "way/445999448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445999450", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9715099, + -2.5214982 + ], + [ + 33.971515, + -2.5207391 + ], + [ + 33.9715357, + -2.5202321 + ], + [ + 33.9716053, + -2.5198221 + ], + [ + 33.9717053, + -2.5194751 + ], + [ + 33.9718092, + -2.5191374 + ], + [ + 33.9719843, + -2.518757 + ], + [ + 33.9722149, + -2.5182881 + ], + [ + 33.9724993, + -2.5178512 + ], + [ + 33.9732234, + -2.5170179 + ], + [ + 33.9734487, + -2.5167794 + ], + [ + 33.9739182, + -2.5163312 + ], + [ + 33.974468, + -2.515739 + ], + [ + 33.9747792, + -2.5154014 + ], + [ + 33.9750042, + -2.5151722 + ], + [ + 33.9750911, + -2.5150901 + ], + [ + 33.9753184, + -2.5148601 + ], + [ + 33.9754785, + -2.5146521 + ], + [ + 33.975667, + -2.5144662 + ], + [ + 33.975954, + -2.5139866 + ], + [ + 33.9761444, + -2.513531 + ], + [ + 33.976249, + -2.5131719 + ], + [ + 33.9763308, + -2.5125807 + ], + [ + 33.9763543, + -2.5121617 + ], + [ + 33.976306, + -2.5117705 + ], + [ + 33.9762041, + -2.511339 + ], + [ + 33.9760977, + -2.5110143 + ], + [ + 33.9758065, + -2.5104682 + ], + [ + 33.9753512, + -2.5098626 + ], + [ + 33.9746994, + -2.5088952 + ], + [ + 33.9741039, + -2.5080779 + ], + [ + 33.9734092, + -2.507124 + ], + [ + 33.9731383, + -2.5067354 + ], + [ + 33.9724812, + -2.5059074 + ], + [ + 33.9721486, + -2.5055215 + ], + [ + 33.9717684, + -2.5051258 + ], + [ + 33.9715258, + -2.5049418 + ], + [ + 33.9707941, + -2.5043505 + ], + [ + 33.9702871, + -2.5039325 + ], + [ + 33.9698017, + -2.5035252 + ], + [ + 33.9692652, + -2.503059 + ], + [ + 33.9691043, + -2.5029169 + ], + [ + 33.9687064, + -2.5024179 + ], + [ + 33.9685551, + -2.5021854 + ], + [ + 33.9684291, + -2.5019938 + ], + [ + 33.9682849, + -2.5017635 + ], + [ + 33.9680296, + -2.5011795 + ] + ] + }, + "id": "way/445999450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445999451", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8550889, + -2.2592237 + ], + [ + 33.8550635, + -2.2591018 + ] + ] + }, + "id": "way/445999451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445999452", + "highway": "secondary", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9680686, + -2.5097698 + ], + [ + 33.9681333, + -2.5101091 + ], + [ + 33.9682893, + -2.5106311 + ], + [ + 33.9689208, + -2.5127451 + ], + [ + 33.9690825, + -2.5132922 + ], + [ + 33.9701168, + -2.5170423 + ], + [ + 33.970713, + -2.5191847 + ], + [ + 33.9712018, + -2.5208651 + ], + [ + 33.9712393, + -2.5211813 + ], + [ + 33.971234, + -2.5214546 + ], + [ + 33.9712608, + -2.521744 + ], + [ + 33.9713734, + -2.5222692 + ], + [ + 33.9715344, + -2.5227783 + ], + [ + 33.9719635, + -2.5239306 + ], + [ + 33.9720708, + -2.524295 + ], + [ + 33.9721084, + -2.5243432 + ], + [ + 33.9721835, + -2.5243459 + ], + [ + 33.9723923, + -2.5243199 + ] + ] + }, + "id": "way/445999452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/445999453", + "highway": "secondary", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9680686, + -2.5097698 + ], + [ + 33.9680828, + -2.5094805 + ], + [ + 33.9683354, + -2.5067045 + ], + [ + 33.9684066, + -2.5059179 + ], + [ + 33.9683962, + -2.5054036 + ], + [ + 33.9683667, + -2.5049227 + ], + [ + 33.9683422, + -2.5043101 + ], + [ + 33.9682939, + -2.5037447 + ], + [ + 33.9682641, + -2.503232 + ], + [ + 33.9682433, + -2.50306 + ], + [ + 33.9682206, + -2.502826 + ], + [ + 33.9681705, + -2.5023593 + ], + [ + 33.9680562, + -2.5017972 + ], + [ + 33.9679932, + -2.5014875 + ], + [ + 33.9680001, + -2.5013055 + ], + [ + 33.9680296, + -2.5011795 + ] + ] + }, + "id": "way/445999453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001931", + "highway": "primary", + "oneway": "yes", + "ref": "T17", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8065087, + -1.4968381 + ], + [ + 33.8063806, + -1.4970775 + ] + ] + }, + "id": "way/446001931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001932", + "highway": "primary", + "oneway": "yes", + "ref": "T17", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9070148, + -1.6012944 + ], + [ + 33.9070229, + -1.6011461 + ], + [ + 33.9069998, + -1.6009805 + ] + ] + }, + "id": "way/446001932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001933", + "highway": "primary", + "oneway": "yes", + "ref": "T17", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8063806, + -1.4970775 + ], + [ + 33.8063351, + -1.4968789 + ] + ] + }, + "id": "way/446001933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001934", + "highway": "primary", + "oneway": "yes", + "ref": "T17", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9069998, + -1.6009805 + ], + [ + 33.9071067, + -1.6010824 + ], + [ + 33.9072432, + -1.6011458 + ] + ] + }, + "id": "way/446001934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001935", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8812465, + -1.6854072 + ], + [ + 33.8812197, + -1.6855051 + ] + ] + }, + "id": "way/446001935" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001936", + "highway": "trunk", + "oneway": "yes", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.907539, + -1.6011843 + ], + [ + 33.9074282, + -1.6012674 + ], + [ + 33.9073428, + -1.6013545 + ] + ] + }, + "id": "way/446001936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001937", + "highway": "trunk", + "oneway": "yes", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9073272, + -1.6013889 + ], + [ + 33.9073468, + -1.6015215 + ], + [ + 33.907374, + -1.6016729 + ] + ] + }, + "id": "way/446001937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001938", + "highway": "trunk", + "oneway": "yes", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.907374, + -1.6016729 + ], + [ + 33.9072716, + -1.6015758 + ], + [ + 33.907165, + -1.6014699 + ] + ] + }, + "id": "way/446001938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001939", + "highway": "trunk", + "oneway": "yes", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9072758, + -1.6011626 + ], + [ + 33.9073986, + -1.6011749 + ], + [ + 33.907539, + -1.6011843 + ] + ] + }, + "id": "way/446001939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001940", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.907374, + -1.6016729 + ], + [ + 33.9078188, + -1.6025389 + ], + [ + 33.9085103, + -1.6038062 + ], + [ + 33.9111209, + -1.6085508 + ], + [ + 33.9114072, + -1.6090495 + ], + [ + 33.9116164, + -1.6094303 + ], + [ + 33.9118471, + -1.6099263 + ], + [ + 33.9119651, + -1.6102051 + ], + [ + 33.9120912, + -1.6105456 + ], + [ + 33.9121877, + -1.6108834 + ], + [ + 33.9123701, + -1.6115966 + ], + [ + 33.9124651, + -1.6123366 + ], + [ + 33.9125925, + -1.6135019 + ], + [ + 33.9126692, + -1.6142295 + ], + [ + 33.9126796, + -1.6147234 + ], + [ + 33.9126643, + -1.6149113 + ], + [ + 33.912637, + -1.6151384 + ], + [ + 33.9125741, + -1.6155271 + ], + [ + 33.9123683, + -1.6163414 + ], + [ + 33.912293, + -1.6165904 + ], + [ + 33.9121823, + -1.6168628 + ], + [ + 33.911915, + -1.6174057 + ], + [ + 33.9113685, + -1.6183734 + ], + [ + 33.9107137, + -1.6196009 + ], + [ + 33.9091176, + -1.6224964 + ], + [ + 33.9085654, + -1.6234697 + ], + [ + 33.9082356, + -1.6239484 + ], + [ + 33.9077992, + -1.6247427 + ], + [ + 33.9075945, + -1.6251154 + ], + [ + 33.9065829, + -1.6269565 + ], + [ + 33.905341, + -1.629217 + ], + [ + 33.9051646, + -1.6295087 + ], + [ + 33.904628, + -1.6305106 + ], + [ + 33.904446, + -1.6308023 + ], + [ + 33.9039369, + -1.6315383 + ], + [ + 33.9035591, + -1.6320322 + ], + [ + 33.9029108, + -1.6327151 + ], + [ + 33.9010747, + -1.6341942 + ], + [ + 33.9008922, + -1.6343526 + ], + [ + 33.8996814, + -1.6354033 + ], + [ + 33.8996107, + -1.635498 + ], + [ + 33.8991382, + -1.6361311 + ], + [ + 33.8986661, + -1.6367637 + ], + [ + 33.8979546, + -1.6381151 + ], + [ + 33.8978021, + -1.6384047 + ], + [ + 33.8973271, + -1.6397984 + ], + [ + 33.8971324, + -1.6403697 + ], + [ + 33.8967146, + -1.6415092 + ], + [ + 33.8956359, + -1.6445047 + ], + [ + 33.895534, + -1.6448131 + ], + [ + 33.8951837, + -1.6457391 + ], + [ + 33.8951213, + -1.6459199 + ], + [ + 33.8947013, + -1.6471378 + ], + [ + 33.8937603, + -1.6498662 + ], + [ + 33.8936546, + -1.6501727 + ], + [ + 33.8934148, + -1.6508918 + ], + [ + 33.8929803, + -1.6521948 + ], + [ + 33.8926659, + -1.6531375 + ], + [ + 33.8924342, + -1.6538323 + ], + [ + 33.8920417, + -1.655028 + ], + [ + 33.8915916, + -1.6563589 + ], + [ + 33.8914234, + -1.656864 + ], + [ + 33.891171, + -1.65761 + ], + [ + 33.8910683, + -1.6579136 + ], + [ + 33.8891291, + -1.6637543 + ], + [ + 33.8890039, + -1.6641144 + ], + [ + 33.888631, + -1.6651862 + ], + [ + 33.8881841, + -1.6664709 + ], + [ + 33.8878354, + -1.6673717 + ], + [ + 33.8872721, + -1.6685568 + ], + [ + 33.8865113, + -1.6701244 + ], + [ + 33.8856938, + -1.6718088 + ], + [ + 33.8855737, + -1.6720562 + ], + [ + 33.8855388, + -1.6721281 + ], + [ + 33.88538, + -1.6724553 + ], + [ + 33.8849835, + -1.6732722 + ], + [ + 33.8848764, + -1.6734928 + ], + [ + 33.884798, + -1.6736544 + ], + [ + 33.8842416, + -1.675016 + ], + [ + 33.8842144, + -1.6750825 + ], + [ + 33.8834634, + -1.6774579 + ], + [ + 33.8834345, + -1.6775601 + ], + [ + 33.8833002, + -1.6780349 + ], + [ + 33.8829799, + -1.6791671 + ], + [ + 33.8827334, + -1.6800382 + ], + [ + 33.8826702, + -1.6802616 + ], + [ + 33.8825288, + -1.6807727 + ], + [ + 33.8817599, + -1.6835517 + ], + [ + 33.8812465, + -1.6854072 + ] + ] + }, + "id": "way/446001940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001945", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8336939, + -1.8320897 + ], + [ + 33.8335903, + -1.8325212 + ], + [ + 33.83351, + -1.8328553 + ], + [ + 33.8333962, + -1.8336452 + ], + [ + 33.8333203, + -1.8343953 + ], + [ + 33.833294, + -1.834786 + ], + [ + 33.8332717, + -1.8354395 + ], + [ + 33.8333158, + -1.8361668 + ], + [ + 33.8334349, + -1.8373231 + ], + [ + 33.8336349, + -1.838396 + ], + [ + 33.8339254, + -1.839477 + ], + [ + 33.8340962, + -1.8398838 + ], + [ + 33.8346455, + -1.8412513 + ], + [ + 33.8354325, + -1.8432005 + ], + [ + 33.8358168, + -1.8444593 + ], + [ + 33.8361038, + -1.8456978 + ], + [ + 33.8362231, + -1.8464492 + ], + [ + 33.8362579, + -1.8466722 + ], + [ + 33.8363696, + -1.8473869 + ], + [ + 33.8364748, + -1.8485571 + ], + [ + 33.8368079, + -1.8521425 + ], + [ + 33.8368527, + -1.8525214 + ], + [ + 33.836945, + -1.8536477 + ], + [ + 33.8369763, + -1.8539915 + ], + [ + 33.8370586, + -1.854895 + ], + [ + 33.8370902, + -1.855242 + ], + [ + 33.837134, + -1.8557421 + ], + [ + 33.8373678, + -1.8584482 + ], + [ + 33.8373738, + -1.8585177 + ], + [ + 33.8375929, + -1.8607745 + ], + [ + 33.8379925, + -1.8661602 + ], + [ + 33.8388723, + -1.8810814 + ], + [ + 33.8392903, + -1.8864701 + ], + [ + 33.8396685, + -1.8908897 + ], + [ + 33.8399332, + -1.8938306 + ], + [ + 33.8399774, + -1.8942492 + ], + [ + 33.8401703, + -1.8964326 + ], + [ + 33.840222, + -1.8969666 + ] + ] + }, + "id": "way/446001945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446001949", + "highway": "trunk", + "junction": "roundabout", + "oneway": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.907165, + -1.6014699 + ], + [ + 33.9071043, + -1.6014514 + ], + [ + 33.9070549, + -1.6014119 + ], + [ + 33.9070236, + -1.601357 + ], + [ + 33.9070148, + -1.6012944 + ], + [ + 33.9070297, + -1.6012331 + ], + [ + 33.9070662, + -1.6011815 + ], + [ + 33.9071191, + -1.6011471 + ], + [ + 33.907181, + -1.6011346 + ], + [ + 33.9072432, + -1.6011458 + ], + [ + 33.9072758, + -1.6011626 + ], + [ + 33.9073157, + -1.6011996 + ], + [ + 33.9073416, + -1.6012473 + ], + [ + 33.907351, + -1.6013008 + ], + [ + 33.9073428, + -1.6013545 + ], + [ + 33.9073272, + -1.6013889 + ], + [ + 33.907285, + -1.6014362 + ], + [ + 33.9072283, + -1.6014646 + ], + [ + 33.907165, + -1.6014699 + ] + ] + }, + "id": "way/446001949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447431497", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2368713, + -1.9464738 + ], + [ + 34.2369325, + -1.9465094 + ] + ] + }, + "id": "way/447431497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447431498", + "highway": "primary", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2369325, + -1.9465094 + ], + [ + 34.237981, + -1.9469742 + ], + [ + 34.2396293, + -1.9477621 + ], + [ + 34.2400297, + -1.9479535 + ], + [ + 34.2421484, + -1.9489664 + ], + [ + 34.2431861, + -1.9494953 + ], + [ + 34.2451301, + -1.9503918 + ], + [ + 34.2459719, + -1.9508191 + ], + [ + 34.2465447, + -1.9510768 + ], + [ + 34.248235, + -1.9518953 + ], + [ + 34.2484101, + -1.9519801 + ], + [ + 34.2513193, + -1.9535075 + ], + [ + 34.2514868, + -1.9535955 + ], + [ + 34.252706, + -1.9542356 + ], + [ + 34.2531967, + -1.9544894 + ], + [ + 34.2549435, + -1.9553926 + ], + [ + 34.257713, + -1.9568247 + ], + [ + 34.2606084, + -1.9582534 + ], + [ + 34.2627405, + -1.9593217 + ], + [ + 34.2633151, + -1.9596096 + ], + [ + 34.2639509, + -1.9599045 + ], + [ + 34.2657164, + -1.9607572 + ], + [ + 34.2661003, + -1.9608856 + ], + [ + 34.2663226, + -1.960918 + ], + [ + 34.2667732, + -1.9609462 + ], + [ + 34.2672772, + -1.9609005 + ], + [ + 34.2683154, + -1.9607679 + ], + [ + 34.2686896, + -1.9607398 + ], + [ + 34.2689967, + -1.9607331 + ], + [ + 34.2695372, + -1.9607974 + ], + [ + 34.2704345, + -1.9609498 + ], + [ + 34.2713141, + -1.9611486 + ], + [ + 34.2718559, + -1.9612907 + ], + [ + 34.272505, + -1.9614381 + ], + [ + 34.2746042, + -1.9618591 + ], + [ + 34.2754409, + -1.9620463 + ], + [ + 34.2778905, + -1.9625432 + ], + [ + 34.277979, + -1.9625612 + ], + [ + 34.2782909, + -1.9626245 + ], + [ + 34.2788732, + -1.9627426 + ], + [ + 34.282274, + -1.963434 + ], + [ + 34.28398, + -1.9637742 + ], + [ + 34.2855525, + -1.9640913 + ], + [ + 34.2877454, + -1.964628 + ], + [ + 34.2881986, + -1.9647433 + ], + [ + 34.2886627, + -1.9649015 + ], + [ + 34.2890382, + -1.9651427 + ], + [ + 34.2895451, + -1.9656252 + ], + [ + 34.2903981, + -1.9663436 + ], + [ + 34.29153, + -1.9673248 + ], + [ + 34.2919752, + -1.9675928 + ], + [ + 34.2925103, + -1.9677456 + ], + [ + 34.2931701, + -1.9678542 + ], + [ + 34.2936335, + -1.9678689 + ] + ] + }, + "id": "way/447431498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447567406", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8105465, + -2.4002394 + ], + [ + 34.8105267, + -2.4003949 + ], + [ + 34.8104221, + -2.4008666 + ], + [ + 34.8102397, + -2.4013891 + ], + [ + 34.8097783, + -2.4027934 + ], + [ + 34.8093519, + -2.4041923 + ], + [ + 34.8091024, + -2.4048301 + ], + [ + 34.8088583, + -2.4053526 + ], + [ + 34.8080805, + -2.406722 + ], + [ + 34.8073751, + -2.4079119 + ], + [ + 34.8071927, + -2.4082603 + ], + [ + 34.8070371, + -2.4085953 + ], + [ + 34.8057872, + -2.41187 + ], + [ + 34.8047411, + -2.4146785 + ], + [ + 34.804548, + -2.4151555 + ], + [ + 34.802199, + -2.4197225 + ], + [ + 34.8015928, + -2.4211536 + ], + [ + 34.8011389, + -2.422265 + ], + [ + 34.8010209, + -2.4226536 + ], + [ + 34.8009646, + -2.422943 + ], + [ + 34.8008379, + -2.4241394 + ], + [ + 34.8008035, + -2.4246031 + ], + [ + 34.8008293, + -2.425078 + ], + [ + 34.8009766, + -2.4259059 + ], + [ + 34.8012251, + -2.4271061 + ], + [ + 34.8013614, + -2.4276062 + ], + [ + 34.8014569, + -2.4279069 + ], + [ + 34.8017698, + -2.4287486 + ], + [ + 34.8018907, + -2.4289963 + ] + ] + }, + "id": "way/447567406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447586895", + "highway": "primary", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2937334, + -1.9678729 + ], + [ + 34.2955277, + -1.9677496 + ], + [ + 34.2961245, + -1.9677309 + ], + [ + 34.2967616, + -1.967759 + ], + [ + 34.2973436, + -1.9678769 + ], + [ + 34.2989851, + -1.9684238 + ], + [ + 34.3008787, + -1.969043 + ], + [ + 34.3019436, + -1.9694505 + ], + [ + 34.3033074, + -1.9700943 + ], + [ + 34.3052276, + -1.9710418 + ], + [ + 34.307316, + -1.9720668 + ], + [ + 34.3080295, + -1.9723965 + ], + [ + 34.3092956, + -1.9729836 + ], + [ + 34.3096402, + -1.9731203 + ], + [ + 34.3098843, + -1.973198 + ], + [ + 34.3100533, + -1.9732489 + ] + ] + }, + "id": "way/447586895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447586896", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2936335, + -1.9678689 + ], + [ + 34.2937334, + -1.9678729 + ] + ] + }, + "id": "way/447586896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447586897", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Arusha Road", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6426593, + -2.0965916 + ], + [ + 34.642511, + -2.0964481 + ] + ] + }, + "id": "way/447586897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/447586898", + "highway": "primary", + "name": "Arusha Road", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.642511, + -2.0964481 + ], + [ + 34.6327402, + -2.0876661 + ], + [ + 34.632192, + -2.0871485 + ] + ] + }, + "id": "way/447586898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/448120887", + "highway": "secondary", + "ref": "R365", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7313738, + -2.6478327 + ], + [ + 33.7327265, + -2.6492531 + ], + [ + 33.7329021, + -2.6494422 + ], + [ + 33.7373051, + -2.6536974 + ], + [ + 33.737686, + -2.6540403 + ], + [ + 33.7382653, + -2.654477 + ], + [ + 33.7388983, + -2.6548816 + ], + [ + 33.7397271, + -2.6553987 + ], + [ + 33.7404084, + -2.6558167 + ], + [ + 33.7442023, + -2.6582141 + ], + [ + 33.744286, + -2.6582798 + ], + [ + 33.7455857, + -2.6592994 + ], + [ + 33.7494906, + -2.6623629 + ], + [ + 33.749984, + -2.66275 + ], + [ + 33.7514207, + -2.6638772 + ], + [ + 33.7527412, + -2.6649371 + ], + [ + 33.7538999, + -2.66584 + ], + [ + 33.7540662, + -2.6659579 + ], + [ + 33.7550157, + -2.666617 + ], + [ + 33.7553698, + -2.6668555 + ], + [ + 33.7559545, + -2.6672306 + ], + [ + 33.7567994, + -2.6677102 + ], + [ + 33.757706, + -2.6681416 + ], + [ + 33.7580359, + -2.6683077 + ], + [ + 33.7582719, + -2.6684282 + ], + [ + 33.7584758, + -2.6685408 + ], + [ + 33.7586603, + -2.6686294 + ], + [ + 33.7589995, + -2.6688016 + ], + [ + 33.7591463, + -2.6688891 + ], + [ + 33.759326, + -2.6689909 + ], + [ + 33.7633731, + -2.6711443 + ], + [ + 33.7695304, + -2.6743893 + ], + [ + 33.770382, + -2.6748381 + ], + [ + 33.7708828, + -2.675102 + ], + [ + 33.7713903, + -2.6753695 + ], + [ + 33.773244, + -2.676375 + ], + [ + 33.7738797, + -2.6766939 + ], + [ + 33.7760898, + -2.6778031 + ], + [ + 33.7766692, + -2.6780469 + ], + [ + 33.7781028, + -2.6785369 + ], + [ + 33.7799338, + -2.6791199 + ], + [ + 33.7801407, + -2.6791858 + ], + [ + 33.7809098, + -2.6794776 + ], + [ + 33.7819108, + -2.6798878 + ], + [ + 33.7833476, + -2.6804577 + ], + [ + 33.7839748, + -2.6807064 + ], + [ + 33.7843507, + -2.6808555 + ], + [ + 33.7854533, + -2.6814003 + ], + [ + 33.7862486, + -2.6817932 + ], + [ + 33.7863287, + -2.6818424 + ], + [ + 33.7863729, + -2.6818695 + ], + [ + 33.7872383, + -2.6824009 + ], + [ + 33.7879962, + -2.6828401 + ], + [ + 33.7882805, + -2.6829902 + ], + [ + 33.7941024, + -2.685595 + ], + [ + 33.7947541, + -2.6858879 + ], + [ + 33.7969722, + -2.6868848 + ], + [ + 33.7975231, + -2.6871128 + ], + [ + 33.7978345, + -2.6872502 + ], + [ + 33.7981939, + -2.6873681 + ], + [ + 33.798605, + -2.6874497 + ], + [ + 33.7997236, + -2.6876348 + ], + [ + 33.8008529, + -2.6879324 + ], + [ + 33.8023321, + -2.6883492 + ], + [ + 33.8038113, + -2.688841 + ], + [ + 33.8052952, + -2.6893491 + ], + [ + 33.8066838, + -2.6898246 + ], + [ + 33.8072375, + -2.69004 + ], + [ + 33.8085311, + -2.6906221 + ], + [ + 33.8150355, + -2.6937409 + ], + [ + 33.8155963, + -2.6940054 + ], + [ + 33.8157021, + -2.6940567 + ], + [ + 33.8176194, + -2.6949854 + ], + [ + 33.8202246, + -2.6962484 + ], + [ + 33.8217451, + -2.6969855 + ], + [ + 33.8228945, + -2.6974933 + ], + [ + 33.8254948, + -2.6986421 + ] + ] + }, + "id": "way/448120887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/448184896", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5335447, + -1.9779576 + ], + [ + 34.5338461, + -1.9780097 + ], + [ + 34.5339909, + -1.9779883 + ], + [ + 34.5342611, + -1.977839 + ], + [ + 34.5344254, + -1.9777068 + ], + [ + 34.5345408, + -1.9776103 + ], + [ + 34.5350343, + -1.977109 + ], + [ + 34.5357075, + -1.9761976 + ], + [ + 34.5360401, + -1.9757258 + ], + [ + 34.5369065, + -1.9743534 + ], + [ + 34.5372337, + -1.9736912 + ], + [ + 34.5373866, + -1.9733025 + ], + [ + 34.5375288, + -1.9730425 + ], + [ + 34.5379257, + -1.9725359 + ], + [ + 34.5383549, + -1.9720239 + ], + [ + 34.5389745, + -1.9713457 + ], + [ + 34.5395967, + -1.9707265 + ], + [ + 34.5407662, + -1.9695524 + ], + [ + 34.5412034, + -1.969035 + ], + [ + 34.5414501, + -1.9687991 + ], + [ + 34.5417586, + -1.9686168 + ], + [ + 34.5422709, + -1.968389 + ], + [ + 34.5425669, + -1.9682676 + ], + [ + 34.542975, + -1.9681383 + ], + [ + 34.5439339, + -1.9678126 + ], + [ + 34.5461321, + -1.9672343 + ], + [ + 34.5473879, + -1.9669423 + ], + [ + 34.5480216, + -1.9667949 + ], + [ + 34.5487913, + -1.9665929 + ], + [ + 34.5492956, + -1.9664428 + ], + [ + 34.5505509, + -1.96603 + ], + [ + 34.5516291, + -1.9655421 + ], + [ + 34.5522997, + -1.9652419 + ], + [ + 34.5533752, + -1.9647648 + ], + [ + 34.5538768, + -1.9645128 + ], + [ + 34.5546412, + -1.9641616 + ], + [ + 34.5558241, + -1.9636845 + ], + [ + 34.5564035, + -1.9635209 + ], + [ + 34.5567521, + -1.9634512 + ], + [ + 34.5571035, + -1.9633923 + ], + [ + 34.5573878, + -1.9632824 + ], + [ + 34.5576695, + -1.9631135 + ], + [ + 34.5586726, + -1.9623254 + ], + [ + 34.5587879, + -1.9622289 + ], + [ + 34.5595577, + -1.961607 + ], + [ + 34.5601907, + -1.9610145 + ], + [ + 34.5605287, + -1.9606393 + ], + [ + 34.5610464, + -1.9599852 + ], + [ + 34.5615721, + -1.9592748 + ], + [ + 34.5619771, + -1.9587655 + ], + [ + 34.5624089, + -1.9581623 + ], + [ + 34.5628166, + -1.957519 + ], + [ + 34.5633316, + -1.9567148 + ], + [ + 34.5638144, + -1.9557578 + ], + [ + 34.5643428, + -1.9549027 + ], + [ + 34.5645735, + -1.9543103 + ], + [ + 34.56478, + -1.9539886 + ], + [ + 34.5651206, + -1.9534256 + ], + [ + 34.5655391, + -1.9528681 + ], + [ + 34.5658582, + -1.9524392 + ], + [ + 34.5675024, + -1.9504153 + ], + [ + 34.5677841, + -1.9500775 + ], + [ + 34.5680898, + -1.9498068 + ], + [ + 34.5684707, + -1.9495199 + ], + [ + 34.5693988, + -1.9488819 + ], + [ + 34.5701417, + -1.9483056 + ], + [ + 34.5706138, + -1.948008 + ], + [ + 34.571633, + -1.94737 + ], + [ + 34.5720139, + -1.9471047 + ], + [ + 34.5722285, + -1.9469009 + ], + [ + 34.572486, + -1.9466087 + ], + [ + 34.5727408, + -1.9463836 + ], + [ + 34.5731243, + -1.9461209 + ], + [ + 34.5734757, + -1.9459466 + ], + [ + 34.573819, + -1.9456893 + ], + [ + 34.5741141, + -1.9454426 + ], + [ + 34.5749912, + -1.9446063 + ], + [ + 34.5753828, + -1.944306 + ], + [ + 34.5757234, + -1.9440836 + ], + [ + 34.5761982, + -1.9438289 + ], + [ + 34.576402, + -1.9437619 + ], + [ + 34.5766461, + -1.9437217 + ], + [ + 34.5770304, + -1.9436822 + ], + [ + 34.5778263, + -1.9435957 + ], + [ + 34.5781213, + -1.9435233 + ], + [ + 34.5783144, + -1.9434375 + ], + [ + 34.5784941, + -1.9433222 + ], + [ + 34.5786846, + -1.9431212 + ], + [ + 34.5788294, + -1.9429604 + ], + [ + 34.5790601, + -1.9427191 + ], + [ + 34.5794088, + -1.9423599 + ], + [ + 34.5797923, + -1.9420248 + ], + [ + 34.5811307, + -1.9411616 + ], + [ + 34.5813212, + -1.9410169 + ], + [ + 34.5814325, + -1.9409029 + ], + [ + 34.5815009, + -1.9408145 + ], + [ + 34.5815545, + -1.9407059 + ], + [ + 34.5815787, + -1.9404539 + ], + [ + 34.5815814, + -1.9401805 + ], + [ + 34.581525, + -1.9395237 + ], + [ + 34.5814982, + -1.9385614 + ], + [ + 34.5814848, + -1.9380654 + ], + [ + 34.5814767, + -1.9376553 + ], + [ + 34.5815653, + -1.9372827 + ], + [ + 34.5816645, + -1.9370253 + ], + [ + 34.5818657, + -1.9367814 + ], + [ + 34.5821875, + -1.9364678 + ], + [ + 34.5828313, + -1.9359692 + ], + [ + 34.5833462, + -1.9356341 + ], + [ + 34.5839095, + -1.9352561 + ], + [ + 34.5846766, + -1.934846 + ], + [ + 34.5855591, + -1.934417 + ], + [ + 34.5861116, + -1.9340927 + ], + [ + 34.5864817, + -1.9337308 + ], + [ + 34.5866454, + -1.933519 + ], + [ + 34.586809, + -1.9332952 + ], + [ + 34.5868653, + -1.9332014 + ], + [ + 34.5869055, + -1.9330874 + ], + [ + 34.5869994, + -1.9328542 + ], + [ + 34.5871577, + -1.9324199 + ], + [ + 34.5873481, + -1.9319428 + ], + [ + 34.5875064, + -1.9314951 + ], + [ + 34.5877692, + -1.9308102 + ], + [ + 34.5878202, + -1.9306266 + ], + [ + 34.5878389, + -1.9304067 + ], + [ + 34.5878255, + -1.9301735 + ] + ] + }, + "id": "way/448184896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/450184347", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8690323, + -1.7449771 + ], + [ + 33.868875, + -1.7468824 + ], + [ + 33.8687996, + -1.7475147 + ], + [ + 33.8685448, + -1.7501898 + ], + [ + 33.8685407, + -1.7502285 + ], + [ + 33.8682067, + -1.7534285 + ], + [ + 33.8681641, + -1.7538365 + ], + [ + 33.8680279, + -1.7551413 + ], + [ + 33.8680243, + -1.7551747 + ], + [ + 33.867908, + -1.7562531 + ], + [ + 33.8678119, + -1.7571446 + ], + [ + 33.8676481, + -1.7586629 + ], + [ + 33.8676116, + -1.7590014 + ], + [ + 33.8675776, + -1.7593169 + ], + [ + 33.8673414, + -1.7604162 + ], + [ + 33.8672314, + -1.760897 + ], + [ + 33.8670833, + -1.7615447 + ], + [ + 33.8667344, + -1.7627606 + ], + [ + 33.8665381, + -1.7634449 + ], + [ + 33.8662468, + -1.764501 + ], + [ + 33.8661337, + -1.7648891 + ], + [ + 33.8657182, + -1.7663151 + ], + [ + 33.8656643, + -1.7665171 + ], + [ + 33.8654864, + -1.7671354 + ], + [ + 33.8653519, + -1.7676058 + ], + [ + 33.8650451, + -1.7686785 + ], + [ + 33.8648139, + -1.7694903 + ], + [ + 33.8646761, + -1.769974 + ], + [ + 33.8646079, + -1.7702156 + ], + [ + 33.8641489, + -1.7718418 + ], + [ + 33.8639548, + -1.7725294 + ], + [ + 33.8635662, + -1.7739061 + ], + [ + 33.8633594, + -1.7746385 + ], + [ + 33.8633326, + -1.7747335 + ] + ] + }, + "id": "way/450184347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/450184348", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8812197, + -1.6855051 + ], + [ + 33.8810377, + -1.686148 + ], + [ + 33.8800421, + -1.6896644 + ], + [ + 33.8798321, + -1.690406 + ], + [ + 33.8797451, + -1.6907133 + ], + [ + 33.8796568, + -1.6910253 + ], + [ + 33.8796307, + -1.6911268 + ], + [ + 33.8794037, + -1.691776 + ], + [ + 33.8792771, + -1.692138 + ], + [ + 33.8791123, + -1.6924235 + ], + [ + 33.8788229, + -1.692925 + ], + [ + 33.8787954, + -1.6929726 + ], + [ + 33.8784594, + -1.693555 + ], + [ + 33.8782169, + -1.6939751 + ], + [ + 33.8781378, + -1.6941095 + ], + [ + 33.8779372, + -1.6944502 + ], + [ + 33.877725, + -1.6948106 + ], + [ + 33.8774264, + -1.6953177 + ], + [ + 33.8770571, + -1.6959241 + ], + [ + 33.8769562, + -1.6960931 + ], + [ + 33.8768068, + -1.6963351 + ], + [ + 33.8759359, + -1.6977652 + ], + [ + 33.8756136, + -1.6982945 + ], + [ + 33.8747878, + -1.6996504 + ], + [ + 33.8744498, + -1.7002055 + ], + [ + 33.8741817, + -1.7006457 + ], + [ + 33.8741292, + -1.7007318 + ], + [ + 33.8736498, + -1.7015256 + ], + [ + 33.8729954, + -1.7026141 + ], + [ + 33.8723973, + -1.7036699 + ], + [ + 33.8722229, + -1.7039721 + ], + [ + 33.8717508, + -1.7050069 + ], + [ + 33.871547, + -1.7055914 + ], + [ + 33.8713922, + -1.7062191 + ], + [ + 33.8713539, + -1.7063743 + ], + [ + 33.871209, + -1.7071893 + ], + [ + 33.8711901, + -1.7074531 + ], + [ + 33.8711847, + -1.7075285 + ], + [ + 33.8711178, + -1.7084601 + ], + [ + 33.871111, + -1.7085736 + ], + [ + 33.8711091, + -1.7086057 + ], + [ + 33.8711047, + -1.7086797 + ], + [ + 33.8710958, + -1.7088292 + ], + [ + 33.8710879, + -1.7089616 + ], + [ + 33.8710246, + -1.7100219 + ], + [ + 33.8710116, + -1.7102393 + ], + [ + 33.8709891, + -1.7106156 + ], + [ + 33.8709616, + -1.711027 + ], + [ + 33.8709475, + -1.7112389 + ], + [ + 33.8709084, + -1.711824 + ], + [ + 33.870883, + -1.7122035 + ], + [ + 33.8708401, + -1.7128464 + ], + [ + 33.8708164, + -1.7132003 + ], + [ + 33.8708101, + -1.7132955 + ], + [ + 33.8707902, + -1.7135923 + ], + [ + 33.8707799, + -1.713747 + ], + [ + 33.870678, + -1.7159616 + ], + [ + 33.8705921, + -1.7185943 + ], + [ + 33.8706335, + -1.7199092 + ], + [ + 33.8707888, + -1.7220989 + ], + [ + 33.8709032, + -1.7231882 + ], + [ + 33.8709634, + -1.7241991 + ], + [ + 33.8709603, + -1.7252297 + ], + [ + 33.8708386, + -1.726586 + ], + [ + 33.8707367, + -1.7275122 + ], + [ + 33.8706943, + -1.7279075 + ], + [ + 33.8706481, + -1.7284055 + ], + [ + 33.8706123, + -1.7288067 + ], + [ + 33.8705836, + -1.7291294 + ], + [ + 33.8705528, + -1.7294744 + ], + [ + 33.8705491, + -1.7295163 + ], + [ + 33.8705215, + -1.7297952 + ], + [ + 33.870247, + -1.7325702 + ], + [ + 33.8700999, + -1.7345576 + ], + [ + 33.8698411, + -1.7370838 + ], + [ + 33.8694523, + -1.7408786 + ], + [ + 33.8693919, + -1.7414676 + ], + [ + 33.8692988, + -1.7423767 + ], + [ + 33.8690434, + -1.7448692 + ], + [ + 33.8690323, + -1.7449771 + ] + ] + }, + "id": "way/450184348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/450203270", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4970517, + -1.2540566 + ], + [ + 34.497167, + -1.2540632 + ], + [ + 34.4972575, + -1.2540666 + ], + [ + 34.4973899, + -1.2540731 + ], + [ + 34.4976465, + -1.2540857 + ], + [ + 34.4980508, + -1.2540968 + ], + [ + 34.4982607, + -1.2540927 + ], + [ + 34.4984323, + -1.2540699 + ], + [ + 34.4988467, + -1.2539647 + ], + [ + 34.4991961, + -1.2538474 + ], + [ + 34.4994281, + -1.2537917 + ], + [ + 34.4996326, + -1.2537455 + ], + [ + 34.4997956, + -1.2537039 + ], + [ + 34.499982, + -1.2536684 + ], + [ + 34.5001282, + -1.2536476 + ], + [ + 34.5002851, + -1.2536329 + ], + [ + 34.5006941, + -1.2536074 + ], + [ + 34.5009275, + -1.2535993 + ], + [ + 34.5010071, + -1.2535991 + ], + [ + 34.5011484, + -1.2535987 + ], + [ + 34.5012352, + -1.2535872 + ], + [ + 34.5019923, + -1.2535604 + ], + [ + 34.502172, + -1.2535445 + ], + [ + 34.5022446, + -1.253538 + ], + [ + 34.502858, + -1.2535015 + ], + [ + 34.5033381, + -1.2534793 + ], + [ + 34.503831, + -1.2534331 + ], + [ + 34.5041354, + -1.2533533 + ], + [ + 34.5044224, + -1.2532702 + ], + [ + 34.5047134, + -1.2532011 + ], + [ + 34.5049622, + -1.2531347 + ], + [ + 34.5052056, + -1.2530858 + ], + [ + 34.5056347, + -1.2530442 + ], + [ + 34.5059915, + -1.2530355 + ], + [ + 34.5063911, + -1.2530107 + ], + [ + 34.5065474, + -1.2530147 + ], + [ + 34.5067485, + -1.2530442 + ], + [ + 34.5070483, + -1.2530952 + ], + [ + 34.507287, + -1.2531234 + ], + [ + 34.5076223, + -1.2531522 + ], + [ + 34.507914, + -1.2531844 + ], + [ + 34.5082231, + -1.2532333 + ], + [ + 34.5085402, + -1.2533023 + ], + [ + 34.5088078, + -1.2533835 + ], + [ + 34.508954, + -1.2534264 + ], + [ + 34.5091511, + -1.2534907 + ], + [ + 34.5093248, + -1.2535088 + ], + [ + 34.5094921, + -1.2535159 + ], + [ + 34.5097003, + -1.2535202 + ], + [ + 34.5099786, + -1.2535189 + ], + [ + 34.5104815, + -1.2535015 + ], + [ + 34.5106914, + -1.2534948 + ], + [ + 34.510963, + -1.2534813 + ], + [ + 34.5116134, + -1.2534371 + ], + [ + 34.5122229, + -1.2533848 + ], + [ + 34.5128566, + -1.2533124 + ], + [ + 34.5131422, + -1.2532695 + ], + [ + 34.5133267, + -1.2532541 + ], + [ + 34.5135513, + -1.253244 + ], + [ + 34.5139898, + -1.2532628 + ], + [ + 34.514301, + -1.2533137 + ], + [ + 34.5146912, + -1.2534264 + ], + [ + 34.515345, + -1.2536536 + ], + [ + 34.5156407, + -1.2537669 + ], + [ + 34.5157262, + -1.2538029 + ], + [ + 34.5161356, + -1.253952 + ], + [ + 34.516428, + -1.2540606 + ], + [ + 34.5167901, + -1.2541692 + ], + [ + 34.5170516, + -1.2542375 + ], + [ + 34.517476, + -1.254318 + ], + [ + 34.5177174, + -1.254371 + ], + [ + 34.5178603, + -1.2544212 + ], + [ + 34.5183042, + -1.2545996 + ], + [ + 34.5188486, + -1.254853 + ], + [ + 34.518879, + -1.2548689 + ], + [ + 34.5191577, + -1.2549643 + ], + [ + 34.5194562, + -1.2551955 + ], + [ + 34.5198934, + -1.2555039 + ], + [ + 34.5200128, + -1.2555897 + ], + [ + 34.5201677, + -1.2556963 + ], + [ + 34.5203494, + -1.2558459 + ], + [ + 34.5205184, + -1.2560087 + ], + [ + 34.5207022, + -1.2561859 + ], + [ + 34.5208288, + -1.2563194 + ], + [ + 34.5209509, + -1.2564632 + ], + [ + 34.521085, + -1.2566637 + ], + [ + 34.5212708, + -1.2569681 + ], + [ + 34.5213116, + -1.2570244 + ], + [ + 34.5214879, + -1.2572416 + ], + [ + 34.5215637, + -1.257328 + ], + [ + 34.5217608, + -1.2575419 + ], + [ + 34.5218762, + -1.2576357 + ], + [ + 34.5220224, + -1.2577357 + ], + [ + 34.5222349, + -1.2578643 + ], + [ + 34.5224073, + -1.2579495 + ], + [ + 34.5226071, + -1.2580266 + ], + [ + 34.5228385, + -1.2580943 + ], + [ + 34.5231684, + -1.2581688 + ], + [ + 34.5237718, + -1.2583148 + ], + [ + 34.5240655, + -1.2583853 + ], + [ + 34.5243901, + -1.2584878 + ], + [ + 34.5245548, + -1.2585457 + ], + [ + 34.5247275, + -1.2586065 + ], + [ + 34.5253906, + -1.2589262 + ], + [ + 34.5259371, + -1.2592013 + ], + [ + 34.5267531, + -1.2596985 + ], + [ + 34.5275592, + -1.2601215 + ], + [ + 34.5286166, + -1.2607082 + ], + [ + 34.52876, + -1.2607868 + ], + [ + 34.5288989, + -1.2608616 + ], + [ + 34.5301287, + -1.2615428 + ], + [ + 34.5313344, + -1.2621971 + ], + [ + 34.5317414, + -1.2623613 + ], + [ + 34.5319385, + -1.262421 + ], + [ + 34.5323294, + -1.2625524 + ], + [ + 34.53256, + -1.2626456 + ], + [ + 34.5327841, + -1.2627515 + ], + [ + 34.5331382, + -1.262958 + ], + [ + 34.5332736, + -1.2630377 + ], + [ + 34.5336156, + -1.263253 + ], + [ + 34.5339374, + -1.2634822 + ], + [ + 34.5342452, + -1.2636893 + ], + [ + 34.5344108, + -1.263808 + ], + [ + 34.5346549, + -1.2640401 + ], + [ + 34.5352953, + -1.2645266 + ], + [ + 34.5359398, + -1.2651047 + ], + [ + 34.5362333, + -1.2653673 + ], + [ + 34.5368054, + -1.2658319 + ], + [ + 34.5370508, + -1.2660291 + ], + [ + 34.5372929, + -1.2661886 + ], + [ + 34.5375752, + -1.2663602 + ], + [ + 34.5378796, + -1.2665493 + ], + [ + 34.5381358, + -1.266738 + ], + [ + 34.5381914, + -1.2668121 + ], + [ + 34.5383235, + -1.2668804 + ], + [ + 34.5386361, + -1.2671333 + ], + [ + 34.5389076, + -1.2674114 + ], + [ + 34.5390341, + -1.2675374 + ], + [ + 34.5391523, + -1.2676863 + ], + [ + 34.5392804, + -1.2679242 + ], + [ + 34.5394265, + -1.2681985 + ], + [ + 34.5395989, + -1.2684518 + ], + [ + 34.5396995, + -1.2685805 + ], + [ + 34.5398161, + -1.2687146 + ], + [ + 34.5399053, + -1.2688044 + ], + [ + 34.5400388, + -1.2688936 + ], + [ + 34.5401616, + -1.2689854 + ], + [ + 34.5402329, + -1.2690358 + ], + [ + 34.5403901, + -1.2691088 + ], + [ + 34.540598, + -1.2692181 + ], + [ + 34.5408776, + -1.2693515 + ], + [ + 34.5411953, + -1.2694728 + ], + [ + 34.5417916, + -1.2696183 + ], + [ + 34.5420357, + -1.2697081 + ], + [ + 34.542379, + -1.2698831 + ], + [ + 34.5426249, + -1.2700225 + ], + [ + 34.5428462, + -1.2701761 + ], + [ + 34.543303, + -1.2705213 + ], + [ + 34.5434619, + -1.2706467 + ], + [ + 34.5436531, + -1.2708096 + ], + [ + 34.5438731, + -1.2709955 + ], + [ + 34.5440527, + -1.2711474 + ], + [ + 34.5442512, + -1.2713385 + ], + [ + 34.5444262, + -1.2715168 + ], + [ + 34.5446944, + -1.2717642 + ], + [ + 34.5450278, + -1.2720848 + ], + [ + 34.5452067, + -1.2722637 + ], + [ + 34.5453888, + -1.2724205 + ], + [ + 34.545545, + -1.2725469 + ], + [ + 34.5456782, + -1.2726451 + ], + [ + 34.5458042, + -1.2727275 + ], + [ + 34.545932, + -1.2728179 + ], + [ + 34.5461924, + -1.2730279 + ], + [ + 34.5464748, + -1.2732701 + ] + ] + }, + "id": "way/450203270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/450414024", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "C727" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6337798, + -1.1392037 + ], + [ + 34.6337919, + -1.1394171 + ] + ] + }, + "id": "way/450414024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/450414026", + "highway": "primary", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6337919, + -1.1394171 + ], + [ + 34.633812, + -1.1395204 + ], + [ + 34.6338683, + -1.1397671 + ], + [ + 34.6339716, + -1.1405153 + ], + [ + 34.6340239, + -1.1410757 + ], + [ + 34.6340185, + -1.1415236 + ], + [ + 34.6339743, + -1.142068 + ], + [ + 34.6339346, + -1.1425613 + ], + [ + 34.6338831, + -1.1431473 + ], + [ + 34.6338657, + -1.1436837 + ], + [ + 34.633922, + -1.1444037 + ], + [ + 34.6339944, + -1.1451814 + ], + [ + 34.6340641, + -1.1461227 + ], + [ + 34.6341536, + -1.146896 + ], + [ + 34.6341587, + -1.146957 + ], + [ + 34.634206, + -1.1474729 + ], + [ + 34.6343707, + -1.1488077 + ], + [ + 34.6345249, + -1.1501932 + ], + [ + 34.6345763, + -1.1505581 + ], + [ + 34.6346107, + -1.1507511 + ], + [ + 34.6347179, + -1.1509979 + ], + [ + 34.6349111, + -1.1513089 + ], + [ + 34.6350653, + -1.1515415 + ], + [ + 34.6354434, + -1.1520231 + ], + [ + 34.6360957, + -1.1528188 + ], + [ + 34.6365355, + -1.153364 + ] + ] + }, + "id": "way/450414026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/451617794", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9794148, + -1.129383 + ], + [ + 33.9789346, + -1.1285215 + ], + [ + 33.9783874, + -1.1276673 + ], + [ + 33.9781702, + -1.1273187 + ], + [ + 33.9779851, + -1.126836 + ], + [ + 33.9779448, + -1.1263345 + ], + [ + 33.9778939, + -1.1260235 + ], + [ + 33.9776981, + -1.1243018 + ], + [ + 33.9776418, + -1.1234195 + ], + [ + 33.9776649, + -1.1224527 + ], + [ + 33.977664, + -1.122405 + ], + [ + 33.9777182, + -1.122316 + ], + [ + 33.9778671, + -1.1221833 + ], + [ + 33.9780052, + -1.1220988 + ], + [ + 33.9781407, + -1.1220318 + ], + [ + 33.9783713, + -1.1219459 + ], + [ + 33.9786248, + -1.1219366 + ], + [ + 33.9812335, + -1.1225362 + ], + [ + 33.9814384, + -1.1225845 + ], + [ + 33.9824177, + -1.1228152 + ], + [ + 33.9840231, + -1.1231408 + ], + [ + 33.9843903, + -1.1232153 + ], + [ + 33.9853585, + -1.1234383 + ], + [ + 33.9855704, + -1.1234839 + ], + [ + 33.9866272, + -1.1236823 + ], + [ + 33.9870805, + -1.1237467 + ], + [ + 33.988546, + -1.1238166 + ], + [ + 33.9902441, + -1.123875 + ], + [ + 33.9909514, + -1.1239165 + ], + [ + 33.9913181, + -1.1239255 + ], + [ + 33.9917389, + -1.123936 + ], + [ + 33.992347, + -1.123951 + ], + [ + 33.9926522, + -1.1239658 + ], + [ + 33.9933513, + -1.1239718 + ], + [ + 33.9935791, + -1.1239738 + ], + [ + 33.994431, + -1.1239827 + ], + [ + 33.9945571, + -1.1239854 + ], + [ + 33.994765, + -1.1240122 + ], + [ + 33.9949447, + -1.1240698 + ], + [ + 33.9950614, + -1.1241087 + ], + [ + 33.9953966, + -1.1241436 + ], + [ + 33.9962228, + -1.1241878 + ], + [ + 33.9965245, + -1.1242093 + ], + [ + 33.9967512, + -1.1242388 + ], + [ + 33.9971267, + -1.1243099 + ], + [ + 33.9977288, + -1.1244185 + ], + [ + 33.998162, + -1.1244775 + ], + [ + 33.9991155, + -1.1246491 + ], + [ + 33.9994012, + -1.1247108 + ], + [ + 33.9997914, + -1.1247792 + ], + [ + 34.0026721, + -1.1248621 + ], + [ + 34.0051455, + -1.1250007 + ], + [ + 34.0052522, + -1.1250084 + ], + [ + 34.0073736, + -1.1251293 + ], + [ + 34.0091345, + -1.125193 + ], + [ + 34.0099265, + -1.1252145 + ] + ] + }, + "id": "way/451617794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/451687378", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8553039, + -1.8062669 + ], + [ + 33.8550514, + -1.806532 + ], + [ + 33.8544559, + -1.8071459 + ], + [ + 33.8527736, + -1.8089831 + ], + [ + 33.8507407, + -1.8112032 + ], + [ + 33.8501375, + -1.8118709 + ], + [ + 33.8493925, + -1.8126956 + ], + [ + 33.8488658, + -1.8132786 + ], + [ + 33.8484873, + -1.8136975 + ], + [ + 33.8481756, + -1.8140426 + ], + [ + 33.8477833, + -1.8144768 + ], + [ + 33.8471164, + -1.815215 + ], + [ + 33.8467613, + -1.8156081 + ], + [ + 33.8452747, + -1.8172361 + ], + [ + 33.8451683, + -1.8173526 + ], + [ + 33.8444315, + -1.8181439 + ], + [ + 33.8432083, + -1.8194881 + ], + [ + 33.8421198, + -1.8206842 + ], + [ + 33.8418331, + -1.8209992 + ], + [ + 33.8401789, + -1.8228168 + ], + [ + 33.8400648, + -1.8229407 + ], + [ + 33.8387881, + -1.8243208 + ], + [ + 33.838615, + -1.8245153 + ], + [ + 33.8371129, + -1.8261488 + ], + [ + 33.8362436, + -1.8271029 + ], + [ + 33.8359748, + -1.827454 + ], + [ + 33.8357122, + -1.8277969 + ], + [ + 33.8352169, + -1.828567 + ], + [ + 33.8346903, + -1.8295158 + ], + [ + 33.8342485, + -1.8304437 + ], + [ + 33.8339238, + -1.8312983 + ], + [ + 33.8336939, + -1.8320897 + ] + ] + }, + "id": "way/451687378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/451687380", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8554242, + -1.8061257 + ], + [ + 33.8553039, + -1.8062669 + ] + ] + }, + "id": "way/451687380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/451687381", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8633326, + -1.7747335 + ], + [ + 33.8632021, + -1.7752157 + ], + [ + 33.8630452, + -1.7757647 + ], + [ + 33.8629161, + -1.7762277 + ], + [ + 33.8627037, + -1.7771103 + ], + [ + 33.8621512, + -1.7791264 + ], + [ + 33.8618749, + -1.7802363 + ], + [ + 33.8618106, + -1.7805338 + ], + [ + 33.8617542, + -1.7807336 + ], + [ + 33.8615665, + -1.7814185 + ], + [ + 33.8612848, + -1.7821692 + ], + [ + 33.8609871, + -1.7828501 + ], + [ + 33.859241, + -1.7868286 + ], + [ + 33.8587102, + -1.7883578 + ], + [ + 33.8585751, + -1.7890183 + ], + [ + 33.85845, + -1.7896299 + ], + [ + 33.8584249, + -1.7898657 + ], + [ + 33.8583798, + -1.7902905 + ], + [ + 33.8582218, + -1.7917776 + ], + [ + 33.8580905, + -1.7930141 + ], + [ + 33.8578917, + -1.7948851 + ], + [ + 33.8577068, + -1.7970804 + ], + [ + 33.857566, + -1.7983457 + ], + [ + 33.8575257, + -1.7987519 + ], + [ + 33.8575271, + -1.7988283 + ], + [ + 33.8574895, + -1.799205 + ], + [ + 33.8571583, + -1.8019579 + ], + [ + 33.8570117, + -1.8031281 + ], + [ + 33.8568619, + -1.8036807 + ], + [ + 33.8566974, + -1.8041862 + ], + [ + 33.8563147, + -1.804989 + ], + [ + 33.8561162, + -1.8052892 + ], + [ + 33.8559285, + -1.8055332 + ], + [ + 33.8556951, + -1.8058066 + ], + [ + 33.8554242, + -1.8061257 + ] + ] + }, + "id": "way/451687381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/451867664", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R198", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2695625, + -1.888402 + ], + [ + 34.2697839, + -1.8884682 + ] + ] + }, + "id": "way/451867664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/451867665", + "highway": "secondary", + "ref": "R198", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2149772, + -1.9332782 + ], + [ + 34.2149011, + -1.9328911 + ], + [ + 34.2150875, + -1.9317348 + ], + [ + 34.2151176, + -1.931515 + ], + [ + 34.2152124, + -1.9308229 + ], + [ + 34.2152372, + -1.9304336 + ], + [ + 34.2152292, + -1.9303384 + ], + [ + 34.2151916, + -1.9301829 + ], + [ + 34.214285, + -1.9283051 + ], + [ + 34.214163, + -1.9281094 + ], + [ + 34.2138089, + -1.9276738 + ], + [ + 34.2135846, + -1.9273274 + ], + [ + 34.2134386, + -1.9270481 + ], + [ + 34.2133219, + -1.9265105 + ], + [ + 34.2133125, + -1.9258971 + ], + [ + 34.213319, + -1.9258353 + ], + [ + 34.2134143, + -1.9249231 + ], + [ + 34.2134265, + -1.9248066 + ], + [ + 34.2134991, + -1.9240642 + ], + [ + 34.2135742, + -1.9237586 + ], + [ + 34.2137706, + -1.9232 + ], + [ + 34.2141402, + -1.9225429 + ], + [ + 34.2142434, + -1.9224076 + ], + [ + 34.2143574, + -1.9222829 + ], + [ + 34.215669, + -1.9211583 + ], + [ + 34.2158326, + -1.9210109 + ], + [ + 34.2159816, + -1.9208055 + ], + [ + 34.2166109, + -1.9197538 + ], + [ + 34.2169266, + -1.9192263 + ], + [ + 34.2175452, + -1.9181925 + ], + [ + 34.2179698, + -1.9174321 + ], + [ + 34.218311, + -1.9167137 + ], + [ + 34.2185953, + -1.9162875 + ], + [ + 34.2189857, + -1.9157416 + ], + [ + 34.2190836, + -1.9156215 + ], + [ + 34.2193249, + -1.9152286 + ], + [ + 34.2200672, + -1.9129413 + ], + [ + 34.2203977, + -1.9121916 + ], + [ + 34.2207524, + -1.9113869 + ], + [ + 34.2210447, + -1.9104894 + ], + [ + 34.2211054, + -1.910303 + ], + [ + 34.2215468, + -1.9082739 + ], + [ + 34.2218915, + -1.90748 + ], + [ + 34.2221653, + -1.9070712 + ], + [ + 34.2224765, + -1.9066932 + ], + [ + 34.2229432, + -1.9062161 + ], + [ + 34.2235419, + -1.9055965 + ], + [ + 34.2243742, + -1.904881 + ], + [ + 34.2245487, + -1.904731 + ], + [ + 34.225065, + -1.9042872 + ], + [ + 34.2257193, + -1.9038356 + ], + [ + 34.2261752, + -1.9035648 + ], + [ + 34.2270756, + -1.9030828 + ], + [ + 34.2283576, + -1.9024451 + ], + [ + 34.228586, + -1.9023315 + ], + [ + 34.2286551, + -1.9022971 + ], + [ + 34.2293188, + -1.9019805 + ], + [ + 34.229912, + -1.9016689 + ], + [ + 34.2302419, + -1.9014789 + ], + [ + 34.2305604, + -1.9012955 + ], + [ + 34.2313063, + -1.9008841 + ], + [ + 34.2317194, + -1.9007045 + ], + [ + 34.2332928, + -1.9001457 + ], + [ + 34.2338836, + -1.8999475 + ], + [ + 34.2345058, + -1.8997058 + ], + [ + 34.2347837, + -1.8995978 + ], + [ + 34.2366192, + -1.8988849 + ], + [ + 34.2369982, + -1.8987377 + ], + [ + 34.2372284, + -1.8986462 + ], + [ + 34.2382103, + -1.898273 + ], + [ + 34.2385054, + -1.8981873 + ], + [ + 34.2401576, + -1.8979339 + ], + [ + 34.240694, + -1.8978187 + ], + [ + 34.2410937, + -1.8976726 + ], + [ + 34.2414169, + -1.8975278 + ], + [ + 34.2415591, + -1.8974353 + ], + [ + 34.2418259, + -1.8972463 + ], + [ + 34.2425233, + -1.8966378 + ], + [ + 34.2429444, + -1.8963483 + ], + [ + 34.2432126, + -1.896225 + ], + [ + 34.2435157, + -1.8961097 + ], + [ + 34.2438243, + -1.8960425 + ], + [ + 34.2442882, + -1.8960185 + ], + [ + 34.2446074, + -1.8959488 + ], + [ + 34.2448434, + -1.8958309 + ], + [ + 34.2480992, + -1.893772 + ], + [ + 34.2490748, + -1.8930925 + ], + [ + 34.2514829, + -1.8914153 + ], + [ + 34.2523225, + -1.8908056 + ], + [ + 34.2535888, + -1.8898861 + ], + [ + 34.2537671, + -1.8897831 + ], + [ + 34.2543733, + -1.8894561 + ], + [ + 34.2547354, + -1.8892882 + ], + [ + 34.2550894, + -1.8891509 + ], + [ + 34.2554757, + -1.8889253 + ], + [ + 34.2561454, + -1.8884007 + ], + [ + 34.2570904, + -1.8877216 + ], + [ + 34.2572486, + -1.8876171 + ], + [ + 34.2575318, + -1.8874715 + ], + [ + 34.2576996, + -1.8873991 + ], + [ + 34.2585713, + -1.8870827 + ], + [ + 34.2593431, + -1.8868025 + ], + [ + 34.2599657, + -1.8867271 + ], + [ + 34.2602044, + -1.8867056 + ], + [ + 34.2628279, + -1.8867803 + ], + [ + 34.2633346, + -1.8868236 + ], + [ + 34.2635465, + -1.8868826 + ], + [ + 34.2646193, + -1.8871935 + ], + [ + 34.264901, + -1.8872579 + ], + [ + 34.2663467, + -1.8873705 + ], + [ + 34.2665076, + -1.8873946 + ], + [ + 34.2679238, + -1.8877484 + ], + [ + 34.2682967, + -1.8878878 + ], + [ + 34.2692598, + -1.8882899 + ], + [ + 34.2693565, + -1.8883216 + ], + [ + 34.2695625, + -1.888402 + ] + ] + }, + "id": "way/451867665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453316529", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4913925, + -1.7201057 + ], + [ + 34.4912793, + -1.7200226 + ] + ] + }, + "id": "way/453316529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453316530", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4912793, + -1.7200226 + ], + [ + 34.4911405, + -1.7199033 + ], + [ + 34.490914, + -1.7197386 + ], + [ + 34.490254, + -1.7195521 + ], + [ + 34.4892978, + -1.7194784 + ], + [ + 34.4882195, + -1.7193001 + ], + [ + 34.4877367, + -1.7191271 + ], + [ + 34.4873103, + -1.7190387 + ], + [ + 34.4861515, + -1.7187143 + ], + [ + 34.484907, + -1.7182773 + ], + [ + 34.4831797, + -1.7177866 + ], + [ + 34.4821175, + -1.7174676 + ], + [ + 34.4809105, + -1.7170735 + ], + [ + 34.4794863, + -1.7166821 + ], + [ + 34.4783785, + -1.7163335 + ], + [ + 34.4770106, + -1.7159501 + ], + [ + 34.475868, + -1.7155989 + ], + [ + 34.4754308, + -1.7155587 + ], + [ + 34.4748058, + -1.715666 + ], + [ + 34.4733413, + -1.7160949 + ], + [ + 34.4713323, + -1.7165614 + ], + [ + 34.4704339, + -1.7168103 + ], + [ + 34.4695809, + -1.7170467 + ], + [ + 34.468044, + -1.7174462 + ], + [ + 34.4668557, + -1.7177437 + ], + [ + 34.4665287, + -1.7178343 + ], + [ + 34.4649707, + -1.7182657 + ], + [ + 34.4642701, + -1.7184086 + ], + [ + 34.4638245, + -1.7185531 + ], + [ + 34.4625454, + -1.7188698 + ], + [ + 34.4605069, + -1.719414 + ], + [ + 34.4601424, + -1.7194763 + ], + [ + 34.4587474, + -1.7198322 + ], + [ + 34.457855, + -1.7200312 + ], + [ + 34.4572561, + -1.7201647 + ], + [ + 34.4556191, + -1.7206319 + ], + [ + 34.4555073, + -1.7206607 + ], + [ + 34.4545154, + -1.7209225 + ], + [ + 34.4539168, + -1.7210762 + ], + [ + 34.4533693, + -1.7212121 + ], + [ + 34.4512541, + -1.721744 + ], + [ + 34.4498851, + -1.7221126 + ], + [ + 34.4488476, + -1.7223919 + ], + [ + 34.4470511, + -1.7228576 + ], + [ + 34.4459168, + -1.7231517 + ], + [ + 34.4452393, + -1.7233273 + ], + [ + 34.4444381, + -1.7235368 + ], + [ + 34.4422146, + -1.7241233 + ], + [ + 34.4410429, + -1.7244562 + ] + ] + }, + "id": "way/453316530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453329277", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Msati Bridge", + "name:en": "Msati Bridge", + "name:sw": "Daraja la Msati", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5027217, + -1.728646 + ], + [ + 34.5026559, + -1.7286715 + ] + ] + }, + "id": "way/453329277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453329279", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5026559, + -1.7286715 + ], + [ + 34.5013738, + -1.7290535 + ], + [ + 34.4999333, + -1.7295108 + ], + [ + 34.4994251, + -1.7296633 + ], + [ + 34.4987952, + -1.7298697 + ], + [ + 34.4981276, + -1.7300413 + ], + [ + 34.4978905, + -1.7299766 + ], + [ + 34.4977595, + -1.7299381 + ], + [ + 34.4975921, + -1.729835 + ], + [ + 34.4974858, + -1.7296956 + ], + [ + 34.4973983, + -1.7294787 + ], + [ + 34.497337, + -1.7293592 + ], + [ + 34.4972317, + -1.7291299 + ], + [ + 34.4971198, + -1.7288417 + ], + [ + 34.4968898, + -1.7282801 + ], + [ + 34.4966618, + -1.727701 + ], + [ + 34.4964717, + -1.7271835 + ], + [ + 34.4962943, + -1.7267881 + ], + [ + 34.4960495, + -1.7261865 + ], + [ + 34.4956868, + -1.7253055 + ], + [ + 34.4955572, + -1.7249626 + ], + [ + 34.4952496, + -1.7241956 + ], + [ + 34.494972, + -1.7235548 + ], + [ + 34.4947494, + -1.7230173 + ], + [ + 34.4945187, + -1.7224073 + ], + [ + 34.494288, + -1.7218591 + ], + [ + 34.4940641, + -1.7213376 + ], + [ + 34.4938227, + -1.7210655 + ], + [ + 34.4934378, + -1.7208591 + ], + [ + 34.4926358, + -1.720599 + ], + [ + 34.4918258, + -1.7203751 + ], + [ + 34.4913925, + -1.7201057 + ] + ] + }, + "id": "way/453329279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453390355", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4410429, + -1.7244562 + ], + [ + 34.4395557, + -1.7248344 + ] + ] + }, + "id": "way/453390355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453505758", + "highway": "secondary", + "ref": "R195", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0303981, + -1.1491932 + ], + [ + 34.030433, + -1.1488526 + ], + [ + 34.0304705, + -1.1485549 + ], + [ + 34.030543, + -1.1481849 + ], + [ + 34.0309855, + -1.1461924 + ], + [ + 34.0313208, + -1.1448086 + ], + [ + 34.0315863, + -1.1436207 + ], + [ + 34.0320423, + -1.1415933 + ], + [ + 34.0323722, + -1.1402605 + ], + [ + 34.0326351, + -1.1390082 + ], + [ + 34.0330642, + -1.1371122 + ], + [ + 34.0332862, + -1.1361789 + ], + [ + 34.0333036, + -1.1360856 + ], + [ + 34.033319, + -1.1359932 + ], + [ + 34.0339181, + -1.1334272 + ], + [ + 34.0340647, + -1.132733 + ], + [ + 34.0343408, + -1.1314931 + ], + [ + 34.035033, + -1.1285711 + ], + [ + 34.0350732, + -1.1283297 + ], + [ + 34.035147, + -1.1278483 + ], + [ + 34.0351689, + -1.1276713 + ], + [ + 34.0352818, + -1.1272396 + ], + [ + 34.0353093, + -1.127021 + ], + [ + 34.0353207, + -1.1267711 + ], + [ + 34.0353234, + -1.1266639 + ], + [ + 34.0354192, + -1.1263855 + ], + [ + 34.036006, + -1.1253249 + ], + [ + 34.0364786, + -1.1245231 + ], + [ + 34.0370737, + -1.1234543 + ], + [ + 34.0371307, + -1.1233264 + ], + [ + 34.0378317, + -1.1220593 + ], + [ + 34.0379633, + -1.1218215 + ], + [ + 34.0381144, + -1.1215495 + ], + [ + 34.0388237, + -1.120273 + ], + [ + 34.039118, + -1.1197376 + ], + [ + 34.0392601, + -1.1194721 + ], + [ + 34.0393567, + -1.119153 + ], + [ + 34.0396177, + -1.1180314 + ], + [ + 34.0396984, + -1.1176434 + ], + [ + 34.0397996, + -1.1171572 + ], + [ + 34.0400215, + -1.1160908 + ], + [ + 34.0403201, + -1.1147928 + ], + [ + 34.0405235, + -1.1139022 + ], + [ + 34.0406066, + -1.1133766 + ], + [ + 34.0406629, + -1.1128778 + ], + [ + 34.0407085, + -1.1114457 + ], + [ + 34.0407771, + -1.1106335 + ], + [ + 34.0407898, + -1.1102345 + ], + [ + 34.0408553, + -1.1081719 + ], + [ + 34.0408856, + -1.1073696 + ], + [ + 34.0409137, + -1.1071966 + ], + [ + 34.0410063, + -1.1070478 + ], + [ + 34.0411055, + -1.1069458 + ], + [ + 34.0423664, + -1.1057494 + ], + [ + 34.0428274, + -1.1053006 + ], + [ + 34.0440751, + -1.104086 + ], + [ + 34.0443465, + -1.1038217 + ], + [ + 34.0463008, + -1.1020244 + ], + [ + 34.048971, + -1.0993804 + ], + [ + 34.050873, + -1.09757 + ], + [ + 34.0512579, + -1.0971926 + ], + [ + 34.0528268, + -1.0956397 + ], + [ + 34.0529636, + -1.0954467 + ], + [ + 34.0529984, + -1.0952884 + ], + [ + 34.0529904, + -1.0951329 + ], + [ + 34.0528628, + -1.0942798 + ] + ] + }, + "id": "way/453505758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/453581283", + "highway": "secondary", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7127818, + -2.0771373 + ], + [ + 33.7137016, + -2.0770074 + ], + [ + 33.718878, + -2.0762767 + ], + [ + 33.7196998, + -2.0761607 + ], + [ + 33.7212845, + -2.0759388 + ], + [ + 33.7218505, + -2.0758888 + ], + [ + 33.7231922, + -2.0757702 + ], + [ + 33.7239054, + -2.0757627 + ], + [ + 33.7249502, + -2.0757516 + ], + [ + 33.725864, + -2.0757543 + ], + [ + 33.7264344, + -2.0757431 + ], + [ + 33.7277497, + -2.0756029 + ] + ] + }, + "id": "way/453581283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/455542418", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5644233, + -1.5094673 + ], + [ + 34.5641281, + -1.5091131 + ], + [ + 34.5638356, + -1.5086378 + ], + [ + 34.5638802, + -1.5085849 + ], + [ + 34.5636192, + -1.5082687 + ], + [ + 34.563412, + -1.507913 + ], + [ + 34.5633255, + -1.5077645 + ], + [ + 34.5631905, + -1.507533 + ], + [ + 34.5624483, + -1.506259 + ], + [ + 34.5624752, + -1.5061735 + ], + [ + 34.5613232, + -1.5043116 + ], + [ + 34.5611976, + -1.5040941 + ], + [ + 34.5612358, + -1.5040275 + ], + [ + 34.5611233, + -1.5038327 + ], + [ + 34.5608936, + -1.5035773 + ], + [ + 34.5608218, + -1.5034573 + ], + [ + 34.5605843, + -1.5029317 + ], + [ + 34.5604818, + -1.5028591 + ], + [ + 34.5604525, + -1.5025907 + ], + [ + 34.5602221, + -1.5020429 + ], + [ + 34.5600881, + -1.5019099 + ], + [ + 34.5600318, + -1.5017535 + ], + [ + 34.5600003, + -1.5013797 + ], + [ + 34.5598662, + -1.5009293 + ], + [ + 34.5598367, + -1.500503 + ], + [ + 34.5598661, + -1.4998781 + ], + [ + 34.5598407, + -1.4996892 + ], + [ + 34.5597468, + -1.4995846 + ], + [ + 34.5597146, + -1.4994814 + ], + [ + 34.559669, + -1.4993755 + ], + [ + 34.5596128, + -1.499283 + ], + [ + 34.559068, + -1.4986582 + ], + [ + 34.5588684, + -1.4982775 + ], + [ + 34.5586968, + -1.4981126 + ], + [ + 34.5586056, + -1.4978364 + ], + [ + 34.5586525, + -1.4976809 + ], + [ + 34.5585707, + -1.4975844 + ], + [ + 34.5585974, + -1.4974785 + ], + [ + 34.5586358, + -1.4973853 + ], + [ + 34.5586515, + -1.497211 + ], + [ + 34.558608, + -1.4970468 + ], + [ + 34.558656, + -1.4966342 + ], + [ + 34.5587177, + -1.4956683 + ], + [ + 34.5589273, + -1.4943842 + ], + [ + 34.558847, + -1.4941698 + ], + [ + 34.5588818, + -1.493667 + ], + [ + 34.5587155, + -1.4931777 + ], + [ + 34.5585519, + -1.4925234 + ], + [ + 34.5584929, + -1.4923344 + ], + [ + 34.5581804, + -1.4911881 + ], + [ + 34.5581978, + -1.4910286 + ], + [ + 34.5580047, + -1.4904682 + ], + [ + 34.5578598, + -1.4901333 + ], + [ + 34.5577874, + -1.4899869 + ], + [ + 34.5576372, + -1.4898743 + ], + [ + 34.5571865, + -1.4891812 + ], + [ + 34.5569506, + -1.4888259 + ], + [ + 34.5551763, + -1.4861169 + ], + [ + 34.5550146, + -1.485873 + ], + [ + 34.5545742, + -1.4852089 + ], + [ + 34.554444, + -1.485011 + ], + [ + 34.5543918, + -1.4849317 + ], + [ + 34.5540284, + -1.484387 + ], + [ + 34.5538686, + -1.4841583 + ], + [ + 34.5536598, + -1.4838826 + ], + [ + 34.5535166, + -1.4837179 + ], + [ + 34.5532746, + -1.4834693 + ], + [ + 34.5531979, + -1.483347 + ], + [ + 34.5531506, + -1.4832654 + ], + [ + 34.5531195, + -1.4831738 + ], + [ + 34.5530946, + -1.4830643 + ], + [ + 34.553111, + -1.482948 + ], + [ + 34.5531368, + -1.4827097 + ], + [ + 34.5532761, + -1.4823183 + ], + [ + 34.55336, + -1.4821267 + ], + [ + 34.5534221, + -1.481921 + ], + [ + 34.5535167, + -1.4816028 + ], + [ + 34.5535541, + -1.4814259 + ], + [ + 34.5535748, + -1.4812238 + ], + [ + 34.5535852, + -1.4810897 + ], + [ + 34.5535962, + -1.4809425 + ], + [ + 34.5536136, + -1.4808172 + ], + [ + 34.5536894, + -1.4805624 + ], + [ + 34.5538905, + -1.4799596 + ], + [ + 34.553913, + -1.4798976 + ], + [ + 34.5541263, + -1.4792791 + ], + [ + 34.5541612, + -1.479137 + ], + [ + 34.554133, + -1.4788407 + ], + [ + 34.5540726, + -1.4785967 + ], + [ + 34.5540537, + -1.4785446 + ], + [ + 34.554019, + -1.4784599 + ], + [ + 34.5539426, + -1.47835 + ], + [ + 34.553846, + -1.4782422 + ], + [ + 34.5536589, + -1.4781368 + ], + [ + 34.553433, + -1.478094 + ], + [ + 34.5530333, + -1.4780109 + ], + [ + 34.5528981, + -1.4779814 + ], + [ + 34.5524338, + -1.4778822 + ], + [ + 34.551984, + -1.4778013 + ], + [ + 34.5517679, + -1.4777789 + ], + [ + 34.5515715, + -1.4777977 + ], + [ + 34.551358, + -1.477838 + ], + [ + 34.5506253, + -1.4780452 + ], + [ + 34.5506102, + -1.4780497 + ], + [ + 34.5505495, + -1.4780492 + ], + [ + 34.5505368, + -1.478049 + ], + [ + 34.5505226, + -1.478048 + ], + [ + 34.5503658, + -1.4780484 + ], + [ + 34.5498763, + -1.4779946 + ], + [ + 34.5494723, + -1.4779383 + ], + [ + 34.5490354, + -1.4779023 + ], + [ + 34.5486026, + -1.4778526 + ], + [ + 34.5484159, + -1.4778312 + ], + [ + 34.5483012, + -1.4778258 + ], + [ + 34.5481, + -1.4778202 + ], + [ + 34.5479035, + -1.4778258 + ], + [ + 34.5477229, + -1.4778487 + ], + [ + 34.5476005, + -1.4778607 + ], + [ + 34.5471471, + -1.4778473 + ], + [ + 34.5466537, + -1.4778084 + ], + [ + 34.5462361, + -1.4777488 + ], + [ + 34.5462124, + -1.4777454 + ], + [ + 34.5461809, + -1.4777399 + ], + [ + 34.5460367, + -1.4777146 + ], + [ + 34.5458624, + -1.4776127 + ], + [ + 34.5454619, + -1.4774255 + ], + [ + 34.5453675, + -1.4773687 + ], + [ + 34.5451609, + -1.4772037 + ], + [ + 34.5450202, + -1.4770402 + ], + [ + 34.5449652, + -1.476941 + ], + [ + 34.5449276, + -1.476823 + ], + [ + 34.5449156, + -1.4767627 + ], + [ + 34.5449048, + -1.4766554 + ], + [ + 34.5448941, + -1.4764356 + ], + [ + 34.5449183, + -1.4762613 + ], + [ + 34.5449947, + -1.475792 + ], + [ + 34.5450953, + -1.475422 + ], + [ + 34.5452026, + -1.4749568 + ], + [ + 34.5452264, + -1.4744786 + ], + [ + 34.5451462, + -1.4738588 + ], + [ + 34.5451194, + -1.4733333 + ], + [ + 34.5451197, + -1.4733138 + ], + [ + 34.5451217, + -1.4731887 + ], + [ + 34.5451262, + -1.4729044 + ], + [ + 34.5451315, + -1.4723653 + ], + [ + 34.5451395, + -1.4720717 + ], + [ + 34.5450483, + -1.4716092 + ], + [ + 34.544941, + -1.4713659 + ], + [ + 34.5448499, + -1.4712271 + ], + [ + 34.5446849, + -1.4710823 + ], + [ + 34.5444354, + -1.4709952 + ], + [ + 34.5439862, + -1.4708356 + ], + [ + 34.543616, + -1.4706546 + ], + [ + 34.5434886, + -1.4705675 + ], + [ + 34.5433532, + -1.4703557 + ], + [ + 34.5432606, + -1.4700648 + ], + [ + 34.5432016, + -1.4698717 + ], + [ + 34.5431198, + -1.469747 + ], + [ + 34.5428743, + -1.46955 + ], + [ + 34.5426531, + -1.4694091 + ], + [ + 34.5425165, + -1.4693257 + ], + [ + 34.54246, + -1.4692966 + ], + [ + 34.5423195, + -1.4692352 + ], + [ + 34.5419289, + -1.4691706 + ], + [ + 34.5415561, + -1.4691303 + ], + [ + 34.5409593, + -1.4690579 + ], + [ + 34.5404121, + -1.4689533 + ], + [ + 34.5398569, + -1.468775 + ], + [ + 34.5396565, + -1.4687158 + ], + [ + 34.5395277, + -1.4686376 + ], + [ + 34.5394438, + -1.4685324 + ], + [ + 34.5393017, + -1.4685082 + ], + [ + 34.5391364, + -1.4683783 + ], + [ + 34.5385974, + -1.4682105 + ], + [ + 34.5373655, + -1.4678409 + ], + [ + 34.537054, + -1.4677427 + ], + [ + 34.5366798, + -1.467551 + ], + [ + 34.5364224, + -1.4673799 + ], + [ + 34.5361406, + -1.4671988 + ], + [ + 34.53569, + -1.4669102 + ], + [ + 34.5354732, + -1.4667296 + ], + [ + 34.5353266, + -1.46652 + ], + [ + 34.5352395, + -1.4663029 + ], + [ + 34.5351376, + -1.4659556 + ], + [ + 34.5350917, + -1.4656792 + ], + [ + 34.5350759, + -1.4654327 + ], + [ + 34.5350745, + -1.4652009 + ], + [ + 34.5350879, + -1.4649997 + ], + [ + 34.535147, + -1.4646645 + ], + [ + 34.5351771, + -1.4643864 + ], + [ + 34.5351751, + -1.464145 + ], + [ + 34.5350558, + -1.4639882 + ], + [ + 34.5349478, + -1.4638756 + ], + [ + 34.5347942, + -1.4637287 + ], + [ + 34.5347459, + -1.4636342 + ], + [ + 34.5347205, + -1.4635424 + ], + [ + 34.534742, + -1.4633916 + ], + [ + 34.5347607, + -1.4632207 + ], + [ + 34.5347607, + -1.4629914 + ], + [ + 34.5347433, + -1.4628292 + ], + [ + 34.5347486, + -1.4624631 + ], + [ + 34.5346432, + -1.4623576 + ], + [ + 34.5346376, + -1.462339 + ], + [ + 34.5346897, + -1.4622688 + ], + [ + 34.5345582, + -1.4621348 + ], + [ + 34.5344335, + -1.4619283 + ], + [ + 34.5344129, + -1.4619015 + ], + [ + 34.5342631, + -1.4617076 + ], + [ + 34.5342064, + -1.4616485 + ], + [ + 34.5340312, + -1.4614416 + ], + [ + 34.533826, + -1.4611909 + ], + [ + 34.5336852, + -1.460963 + ], + [ + 34.5335926, + -1.460774 + ] + ] + }, + "id": "way/455542418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/455542423", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5896776, + -1.5360821 + ], + [ + 34.5897434, + -1.5361583 + ], + [ + 34.5898195, + -1.5362602 + ], + [ + 34.589982, + -1.5364936 + ], + [ + 34.5900602, + -1.5366513 + ], + [ + 34.590717, + -1.5378503 + ], + [ + 34.5911032, + -1.5385769 + ], + [ + 34.5913246, + -1.5389891 + ], + [ + 34.5914867, + -1.5392807 + ], + [ + 34.5917577, + -1.5397218 + ], + [ + 34.592068, + -1.5403077 + ], + [ + 34.5922378, + -1.5405851 + ], + [ + 34.5923719, + -1.5408641 + ], + [ + 34.5925328, + -1.5418225 + ], + [ + 34.5926243, + -1.5425998 + ], + [ + 34.5929874, + -1.5453772 + ], + [ + 34.593242, + -1.5467787 + ], + [ + 34.593366, + -1.5477444 + ], + [ + 34.5934582, + -1.548905 + ], + [ + 34.5936665, + -1.5497319 + ], + [ + 34.5937855, + -1.5511933 + ], + [ + 34.5938451, + -1.5517496 + ], + [ + 34.5942878, + -1.5547958 + ], + [ + 34.594498, + -1.5557302 + ], + [ + 34.5944895, + -1.5562516 + ], + [ + 34.5945552, + -1.5568254 + ], + [ + 34.5946891, + -1.5578065 + ], + [ + 34.5950019, + -1.5602707 + ], + [ + 34.5951869, + -1.5615457 + ], + [ + 34.5954717, + -1.5629324 + ], + [ + 34.5954757, + -1.5635083 + ], + [ + 34.5956133, + -1.5646626 + ], + [ + 34.5956992, + -1.565357 + ], + [ + 34.5957091, + -1.5654308 + ], + [ + 34.5958775, + -1.5666828 + ], + [ + 34.5960343, + -1.5677933 + ], + [ + 34.5961265, + -1.5684018 + ], + [ + 34.5964864, + -1.5710286 + ], + [ + 34.5966382, + -1.5723974 + ], + [ + 34.5967641, + -1.5731016 + ], + [ + 34.5967996, + -1.5734495 + ], + [ + 34.5968188, + -1.57377 + ], + [ + 34.5968754, + -1.5741406 + ], + [ + 34.5970148, + -1.5750576 + ], + [ + 34.5970241, + -1.5751181 + ], + [ + 34.5973883, + -1.5774755 + ], + [ + 34.5974011, + -1.5781061 + ], + [ + 34.597452, + -1.578346 + ], + [ + 34.5972991, + -1.5786048 + ], + [ + 34.5972803, + -1.5788166 + ], + [ + 34.5968126, + -1.5795307 + ], + [ + 34.5965925, + -1.5799633 + ], + [ + 34.596188, + -1.5808288 + ], + [ + 34.5959929, + -1.5810139 + ], + [ + 34.59586, + -1.5811814 + ], + [ + 34.5954712, + -1.5813744 + ], + [ + 34.5942501, + -1.5821168 + ], + [ + 34.5941938, + -1.582167 + ], + [ + 34.5939971, + -1.5822764 + ], + [ + 34.5934032, + -1.582634 + ], + [ + 34.5927435, + -1.5830305 + ], + [ + 34.5920366, + -1.5834671 + ], + [ + 34.5918354, + -1.5836414 + ], + [ + 34.5915237, + -1.5838891 + ], + [ + 34.5914177, + -1.5840289 + ], + [ + 34.59135, + -1.584187 + ], + [ + 34.5913232, + -1.5845115 + ], + [ + 34.5913875, + -1.5849953 + ], + [ + 34.5914969, + -1.5856597 + ], + [ + 34.5915271, + -1.5858442 + ], + [ + 34.5917703, + -1.5873093 + ], + [ + 34.5922243, + -1.5898309 + ], + [ + 34.5922294, + -1.5898563 + ], + [ + 34.5924122, + -1.5908069 + ], + [ + 34.5924528, + -1.5909563 + ], + [ + 34.5925798, + -1.5914334 + ], + [ + 34.5929125, + -1.5927238 + ], + [ + 34.5929526, + -1.592878 + ], + [ + 34.5930585, + -1.5934559 + ], + [ + 34.5930773, + -1.5937602 + ], + [ + 34.5928922, + -1.5940537 + ], + [ + 34.5927957, + -1.5942093 + ], + [ + 34.5927206, + -1.5943553 + ], + [ + 34.5924148, + -1.5945283 + ], + [ + 34.5921117, + -1.5946771 + ], + [ + 34.5910603, + -1.5950538 + ], + [ + 34.5899177, + -1.595515 + ], + [ + 34.589062, + -1.595818 + ], + [ + 34.5881554, + -1.5962375 + ], + [ + 34.5878916, + -1.5963856 + ], + [ + 34.5877961, + -1.5965298 + ], + [ + 34.5875842, + -1.5967993 + ], + [ + 34.5875788, + -1.5970124 + ], + [ + 34.5874776, + -1.5975901 + ], + [ + 34.5874312, + -1.5983972 + ], + [ + 34.5874849, + -1.5985541 + ], + [ + 34.587442, + -1.598778 + ], + [ + 34.5876163, + -1.5990394 + ], + [ + 34.5877129, + -1.5994134 + ], + [ + 34.5879274, + -1.5997382 + ], + [ + 34.5881072, + -1.6002124 + ], + [ + 34.5883191, + -1.6005475 + ], + [ + 34.5886114, + -1.6009202 + ], + [ + 34.5889245, + -1.6011631 + ], + [ + 34.5898801, + -1.6019766 + ], + [ + 34.5904702, + -1.6023237 + ], + [ + 34.5910147, + -1.6027997 + ], + [ + 34.5915136, + -1.6031389 + ], + [ + 34.5917872, + -1.6034378 + ], + [ + 34.5918998, + -1.6035156 + ], + [ + 34.5921109, + -1.6035946 + ] + ] + }, + "id": "way/455542423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/455591830", + "highway": "secondary", + "ref": "R183", + "source": "classification Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5768828, + -1.3958666 + ], + [ + 34.5748146, + -1.3960284 + ], + [ + 34.5744246, + -1.3960945 + ], + [ + 34.5735275, + -1.396183 + ], + [ + 34.5728127, + -1.3961822 + ], + [ + 34.5724847, + -1.3961749 + ], + [ + 34.5714226, + -1.3961432 + ], + [ + 34.5710513, + -1.3961328 + ], + [ + 34.5709112, + -1.3961398 + ], + [ + 34.5705621, + -1.3961148 + ], + [ + 34.5704658, + -1.3961079 + ], + [ + 34.5704231, + -1.3961048 + ], + [ + 34.5700657, + -1.3960832 + ], + [ + 34.5699693, + -1.3960774 + ], + [ + 34.5690635, + -1.3960214 + ], + [ + 34.5682422, + -1.3959623 + ], + [ + 34.5680635, + -1.3959504 + ], + [ + 34.5679415, + -1.3959423 + ], + [ + 34.5676374, + -1.3959053 + ], + [ + 34.56715, + -1.3958634 + ], + [ + 34.5670966, + -1.3958565 + ], + [ + 34.5665285, + -1.3957831 + ], + [ + 34.5658091, + -1.3956902 + ], + [ + 34.5654607, + -1.3956452 + ], + [ + 34.5650275, + -1.3955892 + ], + [ + 34.5647344, + -1.3955513 + ], + [ + 34.5644215, + -1.3954898 + ], + [ + 34.5642178, + -1.3954963 + ], + [ + 34.5638871, + -1.3955392 + ], + [ + 34.5637989, + -1.3955559 + ], + [ + 34.5636992, + -1.3955807 + ], + [ + 34.5629266, + -1.3957725 + ], + [ + 34.5623998, + -1.3959032 + ], + [ + 34.5618226, + -1.3960497 + ], + [ + 34.5617411, + -1.3960704 + ], + [ + 34.5617189, + -1.396076 + ], + [ + 34.5604032, + -1.39641 + ], + [ + 34.559398, + -1.3966691 + ], + [ + 34.5584558, + -1.3969032 + ], + [ + 34.556802, + -1.3973298 + ], + [ + 34.5564804, + -1.3973775 + ], + [ + 34.5562723, + -1.3973908 + ], + [ + 34.5560094, + -1.3973936 + ], + [ + 34.5551711, + -1.3973595 + ], + [ + 34.5546695, + -1.3973386 + ], + [ + 34.5544998, + -1.3973266 + ], + [ + 34.5543167, + -1.3972924 + ], + [ + 34.5541695, + -1.3972527 + ], + [ + 34.5540726, + -1.39722 + ], + [ + 34.5539527, + -1.3971577 + ], + [ + 34.5537629, + -1.3970272 + ], + [ + 34.5530868, + -1.3965129 + ], + [ + 34.552756, + -1.3962738 + ], + [ + 34.5510924, + -1.3949993 + ], + [ + 34.550461, + -1.3945038 + ], + [ + 34.5499501, + -1.3941661 + ], + [ + 34.5495307, + -1.3938528 + ], + [ + 34.5489624, + -1.3934105 + ], + [ + 34.5486807, + -1.3932084 + ], + [ + 34.548017, + -1.3927321 + ], + [ + 34.5478104, + -1.392602 + ], + [ + 34.5474832, + -1.3925336 + ], + [ + 34.5466022, + -1.3923413 + ], + [ + 34.5464118, + -1.3922802 + ], + [ + 34.545624, + -1.3920256 + ], + [ + 34.5446857, + -1.3917507 + ], + [ + 34.5440044, + -1.3915201 + ], + [ + 34.5436181, + -1.3914114 + ], + [ + 34.543059, + -1.3913141 + ], + [ + 34.5430062, + -1.3913052 + ], + [ + 34.5428967, + -1.3912868 + ], + [ + 34.5427106, + -1.3912606 + ], + [ + 34.5425754, + -1.3912415 + ], + [ + 34.5416743, + -1.3910566 + ], + [ + 34.541231, + -1.3909663 + ], + [ + 34.5409658, + -1.390904 + ], + [ + 34.5408474, + -1.3908832 + ], + [ + 34.5404639, + -1.3908202 + ], + [ + 34.5393957, + -1.3907759 + ], + [ + 34.5389015, + -1.3907934 + ], + [ + 34.5387101, + -1.3907797 + ], + [ + 34.5380526, + -1.3907103 + ], + [ + 34.5363727, + -1.3904498 + ], + [ + 34.5357675, + -1.3903425 + ], + [ + 34.533356, + -1.3894285 + ], + [ + 34.5330597, + -1.3893065 + ], + [ + 34.5320958, + -1.388929 + ], + [ + 34.5318824, + -1.3888453 + ], + [ + 34.53128, + -1.38857 + ], + [ + 34.5302437, + -1.3882301 + ], + [ + 34.5285683, + -1.387801 + ], + [ + 34.527945, + -1.3876297 + ], + [ + 34.5271925, + -1.3874264 + ], + [ + 34.5268678, + -1.3873169 + ], + [ + 34.525105, + -1.3868696 + ], + [ + 34.5238239, + -1.3865478 + ], + [ + 34.5230977, + -1.386373 + ], + [ + 34.5229324, + -1.3863314 + ], + [ + 34.5217938, + -1.3860518 + ], + [ + 34.5215881, + -1.3860105 + ], + [ + 34.5208871, + -1.38587 + ], + [ + 34.520055, + -1.3855191 + ], + [ + 34.5192208, + -1.3851168 + ], + [ + 34.5187338, + -1.3848628 + ], + [ + 34.5179737, + -1.3844664 + ], + [ + 34.5175821, + -1.3842878 + ], + [ + 34.5170925, + -1.3840617 + ], + [ + 34.5169585, + -1.3839895 + ], + [ + 34.5159458, + -1.3835877 + ], + [ + 34.5155796, + -1.3834424 + ], + [ + 34.5145561, + -1.3830173 + ], + [ + 34.5137338, + -1.3826688 + ], + [ + 34.5131547, + -1.3824161 + ], + [ + 34.5129444, + -1.3823268 + ], + [ + 34.5121411, + -1.3819743 + ], + [ + 34.5121106, + -1.3819567 + ], + [ + 34.5119868, + -1.3818857 + ], + [ + 34.5117098, + -1.3816651 + ], + [ + 34.5115894, + -1.3815356 + ], + [ + 34.5115202, + -1.3814621 + ], + [ + 34.5112063, + -1.3810936 + ], + [ + 34.5109366, + -1.3807964 + ], + [ + 34.5103944, + -1.3802486 + ], + [ + 34.5101107, + -1.3800462 + ], + [ + 34.509169, + -1.3792881 + ], + [ + 34.509055, + -1.3792082 + ], + [ + 34.5089242, + -1.3791104 + ], + [ + 34.5082698, + -1.3785951 + ], + [ + 34.5078614, + -1.3782987 + ], + [ + 34.5073632, + -1.3779689 + ], + [ + 34.5067405, + -1.3776263 + ], + [ + 34.5059532, + -1.3773047 + ], + [ + 34.505907, + -1.3772884 + ], + [ + 34.5055971, + -1.3772005 + ], + [ + 34.5053187, + -1.3771375 + ], + [ + 34.5051907, + -1.3771133 + ], + [ + 34.5050105, + -1.3770873 + ], + [ + 34.5041063, + -1.377043 + ], + [ + 34.5036615, + -1.3770581 + ], + [ + 34.5035943, + -1.3770641 + ], + [ + 34.5031918, + -1.3770617 + ], + [ + 34.5027433, + -1.3770654 + ], + [ + 34.5025032, + -1.3770752 + ], + [ + 34.5022516, + -1.3770971 + ], + [ + 34.5018534, + -1.3770947 + ], + [ + 34.5014059, + -1.3770416 + ], + [ + 34.5012811, + -1.3770183 + ], + [ + 34.5011448, + -1.3769872 + ], + [ + 34.5005978, + -1.3768187 + ], + [ + 34.4997472, + -1.3765393 + ], + [ + 34.4992549, + -1.3763883 + ], + [ + 34.4987795, + -1.3762284 + ], + [ + 34.4982929, + -1.376103 + ], + [ + 34.4975515, + -1.3759335 + ], + [ + 34.4972746, + -1.3758772 + ], + [ + 34.4968866, + -1.3757985 + ], + [ + 34.4962785, + -1.3756835 + ], + [ + 34.4960499, + -1.3756335 + ], + [ + 34.4949294, + -1.3753955 + ], + [ + 34.4947899, + -1.3753618 + ], + [ + 34.4945249, + -1.3753178 + ], + [ + 34.4937686, + -1.3751954 + ], + [ + 34.4927041, + -1.3750377 + ], + [ + 34.4920465, + -1.3749352 + ], + [ + 34.4915163, + -1.3748684 + ], + [ + 34.4913395, + -1.3748424 + ], + [ + 34.4912533, + -1.3748318 + ], + [ + 34.4912069, + -1.3748232 + ], + [ + 34.4911429, + -1.3748155 + ], + [ + 34.4910146, + -1.3747973 + ], + [ + 34.4904937, + -1.3747869 + ], + [ + 34.4898721, + -1.3747679 + ], + [ + 34.4897426, + -1.3747565 + ], + [ + 34.4883693, + -1.3746742 + ], + [ + 34.4881843, + -1.3746583 + ], + [ + 34.4873604, + -1.3745985 + ], + [ + 34.4871638, + -1.3745857 + ], + [ + 34.4870416, + -1.374589 + ], + [ + 34.4864101, + -1.374578 + ], + [ + 34.4859527, + -1.3745512 + ], + [ + 34.4853607, + -1.3745072 + ], + [ + 34.48475, + -1.3744263 + ], + [ + 34.4839379, + -1.374252 + ], + [ + 34.4835041, + -1.3741543 + ], + [ + 34.4830501, + -1.3740854 + ], + [ + 34.4828302, + -1.3740692 + ], + [ + 34.4827855, + -1.3740722 + ], + [ + 34.4826599, + -1.3740905 + ], + [ + 34.4821818, + -1.3742455 + ], + [ + 34.4815993, + -1.3744587 + ], + [ + 34.4810486, + -1.3746621 + ], + [ + 34.480248, + -1.3749169 + ], + [ + 34.4799855, + -1.3750141 + ], + [ + 34.4798552, + -1.3750617 + ], + [ + 34.4797858, + -1.3750969 + ], + [ + 34.4795016, + -1.3751602 + ], + [ + 34.4794682, + -1.3751682 + ], + [ + 34.4794407, + -1.3751747 + ], + [ + 34.4791244, + -1.3752492 + ], + [ + 34.4788294, + -1.3752934 + ], + [ + 34.4785446, + -1.3753047 + ], + [ + 34.4784182, + -1.3753043 + ], + [ + 34.4780379, + -1.3753102 + ], + [ + 34.4771231, + -1.3752922 + ], + [ + 34.4769165, + -1.3752848 + ], + [ + 34.4766792, + -1.3752763 + ], + [ + 34.4766593, + -1.375261 + ], + [ + 34.4765166, + -1.3752618 + ], + [ + 34.4763877, + -1.3752418 + ], + [ + 34.476245, + -1.3752197 + ], + [ + 34.4759667, + -1.3751765 + ], + [ + 34.475884, + -1.3751636 + ], + [ + 34.4754994, + -1.3751039 + ], + [ + 34.4753382, + -1.3750559 + ], + [ + 34.4751002, + -1.375052 + ], + [ + 34.4746559, + -1.3750097 + ], + [ + 34.4746118, + -1.3750055 + ], + [ + 34.4743042, + -1.3749575 + ], + [ + 34.47394, + -1.374954 + ], + [ + 34.4739166, + -1.3749527 + ], + [ + 34.4738897, + -1.3749513 + ], + [ + 34.4737622, + -1.3749445 + ], + [ + 34.4730554, + -1.374907 + ], + [ + 34.4728757, + -1.3748974 + ], + [ + 34.4724695, + -1.3748759 + ], + [ + 34.4721698, + -1.37486 + ], + [ + 34.4721104, + -1.3748568 + ], + [ + 34.4714455, + -1.3748215 + ], + [ + 34.4713204, + -1.3748149 + ], + [ + 34.4707511, + -1.3747688 + ], + [ + 34.4704094, + -1.3747759 + ], + [ + 34.4702792, + -1.3747735 + ], + [ + 34.4696116, + -1.374761 + ], + [ + 34.4695539, + -1.3747599 + ], + [ + 34.4687666, + -1.374746 + ], + [ + 34.4687425, + -1.3747456 + ], + [ + 34.4687221, + -1.3747409 + ], + [ + 34.4681671, + -1.3747355 + ], + [ + 34.467559, + -1.3747114 + ], + [ + 34.4674401, + -1.3747215 + ], + [ + 34.467395, + -1.3747196 + ], + [ + 34.4672687, + -1.3747144 + ], + [ + 34.4668512, + -1.3746733 + ], + [ + 34.4661717, + -1.3746542 + ], + [ + 34.4658119, + -1.3746127 + ], + [ + 34.4654954, + -1.374599 + ], + [ + 34.4653335, + -1.3745581 + ], + [ + 34.4652489, + -1.3745367 + ], + [ + 34.4652056, + -1.3745287 + ], + [ + 34.4651361, + -1.3745126 + ], + [ + 34.4646815, + -1.3744075 + ], + [ + 34.4644182, + -1.3743466 + ], + [ + 34.464014, + -1.3742027 + ], + [ + 34.4638956, + -1.3741729 + ], + [ + 34.463812, + -1.3741581 + ], + [ + 34.4632808, + -1.3740486 + ], + [ + 34.4630044, + -1.37404 + ], + [ + 34.4625734, + -1.3740238 + ], + [ + 34.4624816, + -1.3740224 + ], + [ + 34.4623627, + -1.3740216 + ], + [ + 34.4618742, + -1.3740263 + ], + [ + 34.4618454, + -1.3740298 + ], + [ + 34.4612018, + -1.3741076 + ], + [ + 34.4608696, + -1.3741594 + ], + [ + 34.4606426, + -1.374194 + ], + [ + 34.4599764, + -1.3742829 + ], + [ + 34.4598082, + -1.3743174 + ], + [ + 34.45935, + -1.374389 + ], + [ + 34.4590053, + -1.3744559 + ], + [ + 34.4578594, + -1.3746767 + ], + [ + 34.4575506, + -1.374712 + ], + [ + 34.456678, + -1.3748672 + ], + [ + 34.4562411, + -1.3749386 + ], + [ + 34.455542, + -1.3750779 + ], + [ + 34.4545552, + -1.3752106 + ], + [ + 34.4539498, + -1.3753246 + ], + [ + 34.4528556, + -1.3754849 + ], + [ + 34.4528018, + -1.3754936 + ], + [ + 34.4525961, + -1.3755119 + ], + [ + 34.4522138, + -1.3755347 + ], + [ + 34.4521195, + -1.3755147 + ], + [ + 34.4519858, + -1.3754596 + ], + [ + 34.4517914, + -1.3753337 + ], + [ + 34.4513749, + -1.3750058 + ], + [ + 34.450465, + -1.3741967 + ], + [ + 34.4501177, + -1.3738293 + ], + [ + 34.4500117, + -1.3737235 + ], + [ + 34.4497864, + -1.3735035 + ], + [ + 34.4493605, + -1.3731711 + ], + [ + 34.44914, + -1.3730021 + ], + [ + 34.4486894, + -1.3727299 + ], + [ + 34.4485365, + -1.3726709 + ], + [ + 34.4482871, + -1.3726267 + ], + [ + 34.4479921, + -1.3726589 + ], + [ + 34.4478526, + -1.3726923 + ], + [ + 34.4475588, + -1.3727756 + ], + [ + 34.4474287, + -1.3728908 + ], + [ + 34.4469401, + -1.3732261 + ], + [ + 34.4465304, + -1.3736202 + ], + [ + 34.4458382, + -1.3742838 + ], + [ + 34.4453259, + -1.3747946 + ], + [ + 34.4444018, + -1.375451 + ], + [ + 34.4439567, + -1.3757629 + ], + [ + 34.4435021, + -1.3761018 + ], + [ + 34.4430487, + -1.3763365 + ], + [ + 34.4428476, + -1.3764115 + ], + [ + 34.4424768, + -1.376492 + ], + [ + 34.4411707, + -1.3766288 + ], + [ + 34.4398283, + -1.3767106 + ], + [ + 34.4392636, + -1.3766891 + ], + [ + 34.438713, + -1.3766135 + ], + [ + 34.4380764, + -1.3765157 + ], + [ + 34.4364463, + -1.3762949 + ], + [ + 34.4329783, + -1.3757982 + ], + [ + 34.4328054, + -1.3757759 + ], + [ + 34.4316765, + -1.3755999 + ], + [ + 34.4304693, + -1.3754732 + ], + [ + 34.4292748, + -1.375364 + ], + [ + 34.427644, + -1.3752607 + ], + [ + 34.4275179, + -1.3752478 + ], + [ + 34.4257856, + -1.3750843 + ], + [ + 34.425015, + -1.3750078 + ], + [ + 34.4241051, + -1.3748822 + ], + [ + 34.4237955, + -1.3748395 + ], + [ + 34.4213632, + -1.3745017 + ], + [ + 34.4200354, + -1.3743348 + ], + [ + 34.4190506, + -1.3741968 + ], + [ + 34.4181998, + -1.3740441 + ], + [ + 34.417624, + -1.3739098 + ], + [ + 34.4170117, + -1.373787 + ], + [ + 34.4167993, + -1.3737328 + ], + [ + 34.4167885, + -1.3737279 + ], + [ + 34.4167342, + -1.3736967 + ], + [ + 34.4166478, + -1.3736469 + ], + [ + 34.4165029, + -1.3734942 + ], + [ + 34.4153917, + -1.3720138 + ], + [ + 34.4148138, + -1.3712046 + ], + [ + 34.4144878, + -1.3708243 + ], + [ + 34.4140728, + -1.370318 + ], + [ + 34.4139772, + -1.370223 + ], + [ + 34.4135057, + -1.3697465 + ], + [ + 34.4130469, + -1.3692872 + ], + [ + 34.4129045, + -1.3691626 + ], + [ + 34.4126082, + -1.3689034 + ], + [ + 34.4123502, + -1.3686541 + ], + [ + 34.4120327, + -1.3683431 + ], + [ + 34.4118324, + -1.3681784 + ], + [ + 34.4113216, + -1.3677292 + ], + [ + 34.4103982, + -1.3669153 + ], + [ + 34.4103648, + -1.3668948 + ], + [ + 34.4102337, + -1.3667875 + ], + [ + 34.4091586, + -1.3659083 + ], + [ + 34.4087003, + -1.3655014 + ], + [ + 34.4082341, + -1.3651793 + ], + [ + 34.4072231, + -1.3647342 + ], + [ + 34.4071738, + -1.3647103 + ], + [ + 34.4067338, + -1.3645006 + ], + [ + 34.4057278, + -1.3639686 + ], + [ + 34.4048862, + -1.3635505 + ], + [ + 34.404401, + -1.3632849 + ], + [ + 34.4030708, + -1.3626035 + ], + [ + 34.4028076, + -1.3624587 + ], + [ + 34.4019517, + -1.362015 + ], + [ + 34.4013673, + -1.3616882 + ], + [ + 34.4004827, + -1.3612157 + ], + [ + 34.3998623, + -1.3608843 + ], + [ + 34.3984516, + -1.3600815 + ], + [ + 34.3979652, + -1.3597536 + ], + [ + 34.3979017, + -1.359691 + ], + [ + 34.3978777, + -1.3596673 + ], + [ + 34.3973224, + -1.3590613 + ], + [ + 34.3967306, + -1.3584071 + ], + [ + 34.3965097, + -1.358163 + ], + [ + 34.3961999, + -1.3578229 + ], + [ + 34.3956166, + -1.3572084 + ], + [ + 34.3952424, + -1.3568678 + ], + [ + 34.3948658, + -1.356481 + ], + [ + 34.3945649, + -1.3561772 + ], + [ + 34.3941878, + -1.3557966 + ], + [ + 34.3929817, + -1.3545792 + ], + [ + 34.3926581, + -1.35424 + ], + [ + 34.3925315, + -1.354102 + ], + [ + 34.3921516, + -1.3536931 + ], + [ + 34.391931, + -1.3534501 + ], + [ + 34.3915847, + -1.3530616 + ], + [ + 34.391422, + -1.3528788 + ], + [ + 34.3909441, + -1.3523415 + ], + [ + 34.3903927, + -1.3517164 + ], + [ + 34.3902972, + -1.3516082 + ], + [ + 34.3900006, + -1.3513083 + ], + [ + 34.3894207, + -1.3507219 + ], + [ + 34.3893587, + -1.3506645 + ], + [ + 34.3886823, + -1.3500388 + ], + [ + 34.3880305, + -1.3494711 + ], + [ + 34.3876255, + -1.349123 + ], + [ + 34.3871802, + -1.3487315 + ], + [ + 34.3867775, + -1.3483893 + ], + [ + 34.3859632, + -1.3476671 + ], + [ + 34.3853975, + -1.3471691 + ], + [ + 34.3848228, + -1.346661 + ], + [ + 34.3843475, + -1.3462434 + ], + [ + 34.383976, + -1.3458904 + ], + [ + 34.3833554, + -1.3453368 + ], + [ + 34.3829141, + -1.3449442 + ], + [ + 34.3826481, + -1.3446886 + ], + [ + 34.3823301, + -1.344395 + ], + [ + 34.3820955, + -1.3441792 + ], + [ + 34.3816986, + -1.3438092 + ], + [ + 34.3815027, + -1.3436334 + ], + [ + 34.3813753, + -1.3435168 + ], + [ + 34.3806983, + -1.3428865 + ], + [ + 34.3805332, + -1.3427352 + ], + [ + 34.3801146, + -1.3423608 + ] + ] + }, + "id": "way/455591830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456439260", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R184", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5898648, + -1.6099469 + ], + [ + 34.5896692, + -1.6098671 + ] + ] + }, + "id": "way/456439260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456439261", + "highway": "secondary", + "ref": "R184", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.599389, + -1.6137481 + ], + [ + 34.5992611, + -1.613582 + ], + [ + 34.5991033, + -1.6134516 + ], + [ + 34.5989023, + -1.6133134 + ], + [ + 34.5981465, + -1.6127638 + ], + [ + 34.5975727, + -1.6124974 + ], + [ + 34.5970111, + -1.6122891 + ], + [ + 34.5960493, + -1.6119707 + ], + [ + 34.5943964, + -1.6114801 + ], + [ + 34.5938498, + -1.6112454 + ], + [ + 34.593019, + -1.6109671 + ], + [ + 34.5918025, + -1.6105242 + ], + [ + 34.5906977, + -1.610217 + ], + [ + 34.5905601, + -1.6101871 + ], + [ + 34.5901975, + -1.6100157 + ], + [ + 34.5898648, + -1.6099469 + ] + ] + }, + "id": "way/456439261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456464896", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "note": "merged local edits", + "source": "msd.or.tz & deliver.jsi.com; local mapper", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5334597, + -1.9779201 + ], + [ + 34.5335447, + -1.9779576 + ] + ] + }, + "id": "way/456464896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456464897", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4981492, + -2.0084043 + ], + [ + 34.498412, + -2.0072134 + ], + [ + 34.4985315, + -2.0067428 + ], + [ + 34.4986964, + -2.0061976 + ], + [ + 34.4988438, + -2.0059455 + ], + [ + 34.4989557, + -2.0057659 + ], + [ + 34.4989934, + -2.0057109 + ], + [ + 34.4991766, + -2.0054432 + ], + [ + 34.4992225, + -2.0053953 + ], + [ + 34.4993556, + -2.0053035 + ], + [ + 34.4995386, + -2.0052139 + ], + [ + 34.4997727, + -2.0051451 + ], + [ + 34.499959, + -2.0051137 + ], + [ + 34.5002236, + -2.0051007 + ], + [ + 34.5012939, + -2.0050383 + ], + [ + 34.501739, + -2.0050849 + ], + [ + 34.5020004, + -2.0051298 + ], + [ + 34.5023596, + -2.0051038 + ], + [ + 34.5026882, + -2.0049831 + ], + [ + 34.5031037, + -2.0047386 + ], + [ + 34.5033379, + -2.0046107 + ], + [ + 34.5036129, + -2.0044298 + ], + [ + 34.5039202, + -2.0043019 + ], + [ + 34.504731, + -2.0039843 + ], + [ + 34.5050438, + -2.0038153 + ], + [ + 34.505641, + -2.0034109 + ], + [ + 34.5061502, + -2.0030613 + ], + [ + 34.5068979, + -2.0024245 + ], + [ + 34.5071212, + -2.0021969 + ], + [ + 34.5073094, + -2.0020323 + ], + [ + 34.507523, + -2.0018194 + ], + [ + 34.5078662, + -2.0015748 + ], + [ + 34.5081907, + -2.001414 + ], + [ + 34.5087057, + -2.0012746 + ], + [ + 34.5092019, + -2.0010682 + ], + [ + 34.5095882, + -2.0009046 + ], + [ + 34.5108408, + -2.0002962 + ], + [ + 34.5110393, + -2.0001353 + ], + [ + 34.511168, + -1.9999879 + ], + [ + 34.5114684, + -1.9995483 + ], + [ + 34.5116374, + -1.9992159 + ], + [ + 34.5121282, + -1.9981356 + ], + [ + 34.512316, + -1.9978461 + ], + [ + 34.5124823, + -1.9976638 + ], + [ + 34.5127317, + -1.997495 + ], + [ + 34.513303, + -1.9971009 + ], + [ + 34.51439, + -1.9964633 + ], + [ + 34.5153028, + -1.9958871 + ], + [ + 34.5165136, + -1.995136 + ], + [ + 34.5168462, + -1.9949243 + ], + [ + 34.5171547, + -1.9946991 + ], + [ + 34.5176643, + -1.9944257 + ], + [ + 34.5186943, + -1.9940156 + ], + [ + 34.5190296, + -1.9938118 + ], + [ + 34.5193112, + -1.9935572 + ], + [ + 34.5198369, + -1.9929219 + ], + [ + 34.5204645, + -1.992166 + ], + [ + 34.5213953, + -1.9913269 + ], + [ + 34.5220765, + -1.9907318 + ], + [ + 34.5227632, + -1.9900778 + ], + [ + 34.5236027, + -1.9892093 + ], + [ + 34.5238763, + -1.9889385 + ], + [ + 34.5243672, + -1.9883166 + ], + [ + 34.5249975, + -1.9875419 + ], + [ + 34.5262393, + -1.9857459 + ], + [ + 34.5272773, + -1.9843011 + ], + [ + 34.5286265, + -1.9825373 + ], + [ + 34.5293748, + -1.9813605 + ], + [ + 34.530032, + -1.9804142 + ], + [ + 34.5310271, + -1.9791061 + ], + [ + 34.5314079, + -1.978712 + ], + [ + 34.5321, + -1.9780794 + ], + [ + 34.5325586, + -1.9778033 + ], + [ + 34.5327388, + -1.9777573 + ], + [ + 34.5329052, + -1.9777216 + ], + [ + 34.5330548, + -1.9777336 + ], + [ + 34.5331943, + -1.9777899 + ], + [ + 34.5333137, + -1.9778542 + ], + [ + 34.5334597, + -1.9779201 + ] + ] + }, + "id": "way/456464897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456468083", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R189", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0132266, + -1.9140569 + ], + [ + 34.0131629, + -1.9141625 + ] + ] + }, + "id": "way/456468083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456468085", + "highway": "secondary", + "ref": "R189", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0192348, + -1.9036733 + ], + [ + 34.0192938, + -1.9037994 + ], + [ + 34.0193608, + -1.903987 + ], + [ + 34.019397, + -1.9041372 + ], + [ + 34.0194708, + -1.9045527 + ], + [ + 34.0195104, + -1.9047122 + ], + [ + 34.0195084, + -1.9047825 + ], + [ + 34.0194889, + -1.9048489 + ], + [ + 34.0194149, + -1.9049907 + ], + [ + 34.0193408, + -1.9051033 + ], + [ + 34.0192439, + -1.905238 + ], + [ + 34.0188231, + -1.9058501 + ], + [ + 34.0178229, + -1.9071907 + ], + [ + 34.0177391, + -1.9073031 + ], + [ + 34.0173071, + -1.9079327 + ], + [ + 34.0163871, + -1.9092738 + ], + [ + 34.0163429, + -1.9093382 + ], + [ + 34.0158998, + -1.909984 + ], + [ + 34.0156626, + -1.9103277 + ], + [ + 34.0156394, + -1.9103611 + ], + [ + 34.0155564, + -1.9104816 + ], + [ + 34.0151837, + -1.9110234 + ], + [ + 34.0146266, + -1.9118404 + ], + [ + 34.0145849, + -1.9119048 + ], + [ + 34.0142382, + -1.9124367 + ], + [ + 34.0140392, + -1.912742 + ], + [ + 34.013444, + -1.9137116 + ], + [ + 34.0132939, + -1.9139433 + ], + [ + 34.0132266, + -1.9140569 + ] + ] + }, + "id": "way/456468085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456998187", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "Tanroads", + "source:bridge": "Bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3894986, + -1.4241856 + ], + [ + 34.3893703, + -1.4242064 + ] + ] + }, + "id": "way/456998187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/456998191", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3893703, + -1.4242064 + ], + [ + 34.3891042, + -1.4242538 + ], + [ + 34.3888789, + -1.4243074 + ], + [ + 34.3884489, + -1.4243844 + ], + [ + 34.3880979, + -1.424446 + ], + [ + 34.3874915, + -1.4245219 + ], + [ + 34.3862712, + -1.4246756 + ], + [ + 34.3860199, + -1.4247022 + ], + [ + 34.3849682, + -1.424837 + ], + [ + 34.3838543, + -1.4249582 + ], + [ + 34.3831014, + -1.4250676 + ], + [ + 34.3825623, + -1.4251373 + ], + [ + 34.3822404, + -1.425199 + ], + [ + 34.381991, + -1.4252794 + ], + [ + 34.3817254, + -1.425392 + ], + [ + 34.3815002, + -1.4255314 + ], + [ + 34.3810816, + -1.425841 + ], + [ + 34.3806767, + -1.426185 + ], + [ + 34.3804502, + -1.4263706 + ], + [ + 34.3797908, + -1.4268584 + ], + [ + 34.3792229, + -1.4272824 + ], + [ + 34.3788099, + -1.4275827 + ], + [ + 34.3782922, + -1.4279125 + ], + [ + 34.3779784, + -1.4280654 + ], + [ + 34.3775573, + -1.4282906 + ], + [ + 34.3769618, + -1.4286418 + ], + [ + 34.3767849, + -1.4287384 + ], + [ + 34.3766131, + -1.4288 + ], + [ + 34.3764147, + -1.4288537 + ], + [ + 34.3758284, + -1.429004 + ], + [ + 34.3757849, + -1.4290154 + ], + [ + 34.374926, + -1.4292398 + ], + [ + 34.3738907, + -1.4294972 + ], + [ + 34.3719698, + -1.430003 + ], + [ + 34.3712357, + -1.4302139 + ], + [ + 34.3707311, + -1.430374 + ], + [ + 34.3701651, + -1.4305215 + ], + [ + 34.3697118, + -1.4306448 + ], + [ + 34.3693175, + -1.4307387 + ], + [ + 34.3687039, + -1.4308794 + ], + [ + 34.3683858, + -1.4309283 + ], + [ + 34.3675589, + -1.4310555 + ], + [ + 34.3670099, + -1.4311535 + ], + [ + 34.3658977, + -1.4313487 + ], + [ + 34.3655665, + -1.4313781 + ], + [ + 34.3631346, + -1.4317362 + ], + [ + 34.3625955, + -1.4318198 + ], + [ + 34.3623553, + -1.4318644 + ], + [ + 34.3609452, + -1.4321261 + ], + [ + 34.3607466, + -1.4321638 + ], + [ + 34.3599672, + -1.432378 + ], + [ + 34.3588251, + -1.4326608 + ], + [ + 34.3587783, + -1.4326724 + ], + [ + 34.3576656, + -1.4329605 + ], + [ + 34.3572364, + -1.4330584 + ], + [ + 34.3562707, + -1.4333051 + ], + [ + 34.355024, + -1.4336127 + ], + [ + 34.3544246, + -1.4337555 + ], + [ + 34.3541973, + -1.4338038 + ], + [ + 34.3541362, + -1.4338189 + ], + [ + 34.3536467, + -1.4339402 + ], + [ + 34.3533355, + -1.433986 + ], + [ + 34.3530821, + -1.4340233 + ], + [ + 34.3529343, + -1.4340349 + ], + [ + 34.3511682, + -1.4341731 + ], + [ + 34.3509498, + -1.4341923 + ], + [ + 34.350403, + -1.4342196 + ], + [ + 34.3492055, + -1.4342795 + ], + [ + 34.3476498, + -1.4343974 + ], + [ + 34.3461503, + -1.4344991 + ], + [ + 34.3453713, + -1.4345519 + ], + [ + 34.3442156, + -1.4346303 + ], + [ + 34.3435301, + -1.4347172 + ], + [ + 34.3432262, + -1.434797 + ], + [ + 34.3429574, + -1.4348772 + ], + [ + 34.3427402, + -1.4349655 + ], + [ + 34.341717, + -1.4353815 + ], + [ + 34.3399269, + -1.4361428 + ], + [ + 34.3398425, + -1.4361787 + ], + [ + 34.3395437, + -1.436325 + ], + [ + 34.3394296, + -1.4363674 + ], + [ + 34.3370608, + -1.4373212 + ], + [ + 34.3366953, + -1.4374592 + ], + [ + 34.3364092, + -1.4375566 + ], + [ + 34.3354842, + -1.4378648 + ], + [ + 34.3347956, + -1.438096 + ], + [ + 34.3343701, + -1.4382297 + ], + [ + 34.3340181, + -1.4383373 + ], + [ + 34.3338959, + -1.4383748 + ], + [ + 34.333699, + -1.4384362 + ], + [ + 34.3332502, + -1.4385737 + ], + [ + 34.3331096, + -1.4386118 + ], + [ + 34.3329366, + -1.4386695 + ], + [ + 34.3328321, + -1.4387041 + ], + [ + 34.3326913, + -1.4387537 + ], + [ + 34.3318866, + -1.4390367 + ], + [ + 34.3314778, + -1.4392347 + ], + [ + 34.3311419, + -1.439411 + ], + [ + 34.3303644, + -1.439823 + ], + [ + 34.3302617, + -1.4398793 + ], + [ + 34.3292051, + -1.4405042 + ], + [ + 34.3282395, + -1.440982 + ], + [ + 34.3279992, + -1.4411092 + ], + [ + 34.3271547, + -1.4415562 + ], + [ + 34.3269134, + -1.4417063 + ], + [ + 34.3262466, + -1.4420648 + ], + [ + 34.3258518, + -1.4421554 + ], + [ + 34.3255392, + -1.4421995 + ], + [ + 34.3254941, + -1.4422049 + ], + [ + 34.3251711, + -1.4422417 + ], + [ + 34.3247276, + -1.442237 + ], + [ + 34.3238138, + -1.4422418 + ], + [ + 34.3230545, + -1.4422034 + ], + [ + 34.3230045, + -1.4422018 + ], + [ + 34.3222368, + -1.4421764 + ], + [ + 34.3206382, + -1.442151 + ], + [ + 34.3197128, + -1.4421532 + ], + [ + 34.3192327, + -1.4422069 + ], + [ + 34.3184591, + -1.4423164 + ], + [ + 34.3184001, + -1.4423336 + ], + [ + 34.3167975, + -1.4426349 + ], + [ + 34.3155609, + -1.4428755 + ], + [ + 34.315373, + -1.4429127 + ], + [ + 34.3151513, + -1.4429689 + ], + [ + 34.3150162, + -1.4430086 + ], + [ + 34.314748, + -1.4431319 + ], + [ + 34.313124, + -1.4439552 + ], + [ + 34.3128597, + -1.4440892 + ], + [ + 34.3117343, + -1.4446433 + ], + [ + 34.3114872, + -1.4447386 + ], + [ + 34.3107515, + -1.4450223 + ], + [ + 34.3103998, + -1.4451038 + ], + [ + 34.3103465, + -1.4451161 + ], + [ + 34.3099924, + -1.4451617 + ], + [ + 34.3097752, + -1.4451564 + ], + [ + 34.3094989, + -1.4451001 + ], + [ + 34.3086701, + -1.4448641 + ], + [ + 34.3083107, + -1.4447837 + ], + [ + 34.3080076, + -1.4447756 + ], + [ + 34.3061274, + -1.4448185 + ], + [ + 34.3058443, + -1.4448622 + ], + [ + 34.305658, + -1.4449445 + ], + [ + 34.3054407, + -1.4450759 + ], + [ + 34.3051902, + -1.4452621 + ], + [ + 34.3050873, + -1.4453448 + ], + [ + 34.3047648, + -1.4456042 + ], + [ + 34.3045234, + -1.4457623 + ], + [ + 34.3043055, + -1.4458382 + ], + [ + 34.3039869, + -1.4458979 + ], + [ + 34.3017655, + -1.4461567 + ], + [ + 34.3009261, + -1.4463424 + ], + [ + 34.3004457, + -1.44651 + ], + [ + 34.2998349, + -1.4467232 + ], + [ + 34.2990815, + -1.44701 + ], + [ + 34.2984429, + -1.4472532 + ], + [ + 34.2979091, + -1.4474248 + ], + [ + 34.2972251, + -1.4476554 + ], + [ + 34.2968818, + -1.4477251 + ], + [ + 34.2959216, + -1.4478055 + ], + [ + 34.2954621, + -1.4478449 + ], + [ + 34.2953556, + -1.4478541 + ], + [ + 34.2950107, + -1.4478816 + ], + [ + 34.294883, + -1.4478924 + ], + [ + 34.2948437, + -1.4478957 + ], + [ + 34.2944211, + -1.4479313 + ], + [ + 34.293777, + -1.4479855 + ], + [ + 34.2937175, + -1.4479937 + ], + [ + 34.2936796, + -1.4479979 + ], + [ + 34.2936214, + -1.448007 + ], + [ + 34.2935797, + -1.4480108 + ], + [ + 34.2933812, + -1.4480287 + ], + [ + 34.2929797, + -1.4480676 + ], + [ + 34.291221, + -1.4482377 + ], + [ + 34.2909561, + -1.4482633 + ], + [ + 34.2907169, + -1.4482864 + ], + [ + 34.2904096, + -1.448374 + ], + [ + 34.2900663, + -1.448559 + ], + [ + 34.289672, + -1.4488137 + ], + [ + 34.2890793, + -1.4492382 + ], + [ + 34.2890015, + -1.4492937 + ], + [ + 34.2884972, + -1.4496798 + ], + [ + 34.2873538, + -1.4505241 + ], + [ + 34.2871901, + -1.4506689 + ], + [ + 34.2853372, + -1.4519968 + ], + [ + 34.2852964, + -1.452023 + ], + [ + 34.2851917, + -1.4520952 + ], + [ + 34.2846134, + -1.4524979 + ], + [ + 34.2842538, + -1.4526854 + ], + [ + 34.2841258, + -1.452735 + ], + [ + 34.2840459, + -1.4527659 + ], + [ + 34.2834659, + -1.4529905 + ], + [ + 34.2827855, + -1.453254 + ], + [ + 34.2826577, + -1.4533094 + ], + [ + 34.2823617, + -1.4534251 + ], + [ + 34.2817563, + -1.4536619 + ], + [ + 34.2813898, + -1.4538052 + ], + [ + 34.2813576, + -1.4538178 + ], + [ + 34.2806545, + -1.4540927 + ], + [ + 34.2802514, + -1.4542502 + ], + [ + 34.2802275, + -1.4542595 + ], + [ + 34.2770583, + -1.455493 + ], + [ + 34.2755558, + -1.4560954 + ], + [ + 34.2754154, + -1.4561502 + ], + [ + 34.2738329, + -1.4567674 + ], + [ + 34.2736572, + -1.456806 + ], + [ + 34.2734819, + -1.4568293 + ], + [ + 34.2731738, + -1.4568176 + ], + [ + 34.2729156, + -1.4567425 + ], + [ + 34.272587, + -1.4566051 + ], + [ + 34.2723574, + -1.4564974 + ], + [ + 34.2721592, + -1.4563778 + ], + [ + 34.2719043, + -1.45612 + ], + [ + 34.2717079, + -1.4558201 + ], + [ + 34.2716242, + -1.4556498 + ], + [ + 34.2716094, + -1.4555822 + ], + [ + 34.2716073, + -1.4555168 + ], + [ + 34.2716174, + -1.4554105 + ], + [ + 34.2716563, + -1.4552651 + ], + [ + 34.2718898, + -1.4545706 + ], + [ + 34.2720818, + -1.4540485 + ], + [ + 34.2721371, + -1.4538848 + ], + [ + 34.2721974, + -1.4536187 + ], + [ + 34.2722156, + -1.453299 + ], + [ + 34.2722156, + -1.4531536 + ], + [ + 34.2722126, + -1.4529485 + ], + [ + 34.2722096, + -1.4528608 + ], + [ + 34.2722012, + -1.4527544 + ], + [ + 34.2720722, + -1.4508073 + ], + [ + 34.2720631, + -1.4505114 + ], + [ + 34.272054, + -1.45033 + ], + [ + 34.2720379, + -1.4502212 + ], + [ + 34.2720077, + -1.449638 + ], + [ + 34.2719811, + -1.4492757 + ], + [ + 34.2719664, + -1.4487975 + ], + [ + 34.2719617, + -1.4486445 + ], + [ + 34.2718689, + -1.4481968 + ], + [ + 34.2718507, + -1.4479261 + ], + [ + 34.2718649, + -1.4477811 + ], + [ + 34.2718534, + -1.4476015 + ], + [ + 34.2718412, + -1.4474096 + ], + [ + 34.2718015, + -1.4471946 + ], + [ + 34.2717599, + -1.4464196 + ], + [ + 34.2717009, + -1.4453172 + ], + [ + 34.2716679, + -1.4449159 + ], + [ + 34.2716608, + -1.4445551 + ], + [ + 34.2716568, + -1.4444257 + ], + [ + 34.271603, + -1.4436176 + ], + [ + 34.2715512, + -1.4428197 + ], + [ + 34.271492, + -1.4423432 + ], + [ + 34.2714387, + -1.4413343 + ], + [ + 34.2713732, + -1.4402841 + ], + [ + 34.271353, + -1.440003 + ], + [ + 34.2713271, + -1.4396684 + ], + [ + 34.2713155, + -1.4395188 + ], + [ + 34.2712813, + -1.4391453 + ], + [ + 34.2712143, + -1.4389724 + ], + [ + 34.2710521, + -1.4387774 + ], + [ + 34.2708966, + -1.4386326 + ], + [ + 34.2704047, + -1.4383374 + ], + [ + 34.2701997, + -1.438227 + ], + [ + 34.2698386, + -1.4380326 + ], + [ + 34.2695777, + -1.4378925 + ], + [ + 34.2694416, + -1.4378202 + ], + [ + 34.2692307, + -1.4377035 + ], + [ + 34.2684504, + -1.4372949 + ], + [ + 34.2683047, + -1.4372124 + ], + [ + 34.2677439, + -1.4368948 + ], + [ + 34.2676195, + -1.4368259 + ], + [ + 34.2673397, + -1.4366703 + ], + [ + 34.2665086, + -1.4362206 + ], + [ + 34.2662974, + -1.4361063 + ], + [ + 34.2659338, + -1.4359238 + ], + [ + 34.2657269, + -1.4358387 + ], + [ + 34.2655562, + -1.4357892 + ], + [ + 34.2654404, + -1.4357719 + ], + [ + 34.2651915, + -1.4358118 + ], + [ + 34.2650451, + -1.4358507 + ], + [ + 34.2648817, + -1.4359142 + ], + [ + 34.2647683, + -1.4359669 + ], + [ + 34.2640349, + -1.4363075 + ], + [ + 34.2633736, + -1.4366147 + ], + [ + 34.26318, + -1.4367046 + ], + [ + 34.2623361, + -1.4370923 + ], + [ + 34.261988, + -1.4372522 + ], + [ + 34.261323, + -1.4375577 + ], + [ + 34.2599627, + -1.438214 + ], + [ + 34.2583766, + -1.4389431 + ], + [ + 34.2578779, + -1.4391662 + ], + [ + 34.2578373, + -1.4391878 + ], + [ + 34.25758, + -1.439352 + ], + [ + 34.2574272, + -1.4394547 + ], + [ + 34.2573072, + -1.4395443 + ], + [ + 34.2570181, + -1.4397622 + ], + [ + 34.2565977, + -1.440035 + ], + [ + 34.2562675, + -1.4401932 + ], + [ + 34.2560809, + -1.4402789 + ], + [ + 34.254711, + -1.4409532 + ], + [ + 34.2540513, + -1.441278 + ], + [ + 34.2534997, + -1.4415462 + ], + [ + 34.2531266, + -1.4417166 + ], + [ + 34.252521, + -1.4419971 + ], + [ + 34.2504751, + -1.4430309 + ], + [ + 34.2503054, + -1.4431142 + ], + [ + 34.250105, + -1.4432306 + ], + [ + 34.2500446, + -1.4432708 + ], + [ + 34.2494818, + -1.4436682 + ], + [ + 34.2492082, + -1.4438693 + ], + [ + 34.2490539, + -1.4439739 + ], + [ + 34.2486413, + -1.4443051 + ], + [ + 34.248554, + -1.4443708 + ], + [ + 34.2482214, + -1.4446416 + ], + [ + 34.2477571, + -1.4450438 + ], + [ + 34.2462745, + -1.4461833 + ], + [ + 34.245488, + -1.4467725 + ], + [ + 34.2444647, + -1.4475844 + ], + [ + 34.2425027, + -1.4491623 + ], + [ + 34.2403811, + -1.450814 + ], + [ + 34.2399224, + -1.4511814 + ], + [ + 34.2394224, + -1.4516057 + ], + [ + 34.2389145, + -1.4520011 + ], + [ + 34.2385078, + -1.4522901 + ], + [ + 34.2381032, + -1.4525891 + ], + [ + 34.2375842, + -1.4529832 + ], + [ + 34.2374172, + -1.4530901 + ], + [ + 34.2371275, + -1.4532218 + ], + [ + 34.2366398, + -1.4533779 + ], + [ + 34.2361416, + -1.4534867 + ], + [ + 34.2357867, + -1.4535551 + ], + [ + 34.235415, + -1.4536053 + ], + [ + 34.2351001, + -1.4536309 + ], + [ + 34.2349514, + -1.4536423 + ], + [ + 34.2339387, + -1.4536949 + ], + [ + 34.2333899, + -1.4536786 + ], + [ + 34.2329272, + -1.4536649 + ], + [ + 34.2321709, + -1.453579 + ], + [ + 34.2321339, + -1.4535705 + ], + [ + 34.2320715, + -1.4535561 + ], + [ + 34.2316907, + -1.4534686 + ], + [ + 34.231216, + -1.4532996 + ], + [ + 34.231157, + -1.4532715 + ], + [ + 34.2306638, + -1.4530364 + ], + [ + 34.2306384, + -1.4530236 + ], + [ + 34.2298087, + -1.4526045 + ], + [ + 34.2296459, + -1.4525222 + ], + [ + 34.2286021, + -1.451995 + ], + [ + 34.2282226, + -1.4518168 + ], + [ + 34.2277877, + -1.4515857 + ], + [ + 34.2274737, + -1.4513832 + ], + [ + 34.2274216, + -1.4513496 + ], + [ + 34.2273104, + -1.4512779 + ], + [ + 34.2272405, + -1.4512236 + ], + [ + 34.2258156, + -1.4501155 + ], + [ + 34.2255232, + -1.4498881 + ], + [ + 34.2253165, + -1.4497117 + ], + [ + 34.2245849, + -1.4490875 + ], + [ + 34.224526, + -1.4490372 + ], + [ + 34.2243648, + -1.4489304 + ], + [ + 34.2241456, + -1.4488083 + ], + [ + 34.2239472, + -1.4487386 + ], + [ + 34.2237138, + -1.4487332 + ], + [ + 34.2232679, + -1.4487461 + ], + [ + 34.2228349, + -1.4487587 + ], + [ + 34.2223792, + -1.4487543 + ], + [ + 34.2212503, + -1.4488045 + ], + [ + 34.2204273, + -1.4488283 + ], + [ + 34.2194716, + -1.448856 + ], + [ + 34.219261, + -1.4488621 + ], + [ + 34.2190927, + -1.4488671 + ], + [ + 34.2189697, + -1.4488707 + ], + [ + 34.2187686, + -1.4488484 + ], + [ + 34.2186087, + -1.4487848 + ], + [ + 34.2182305, + -1.4485442 + ], + [ + 34.2181703, + -1.4484809 + ], + [ + 34.2172431, + -1.4475055 + ], + [ + 34.2171851, + -1.4474445 + ], + [ + 34.2171323, + -1.4473889 + ], + [ + 34.2170166, + -1.4472978 + ], + [ + 34.2168973, + -1.4472091 + ], + [ + 34.2167973, + -1.447142 + ], + [ + 34.2165014, + -1.4470065 + ], + [ + 34.2162262, + -1.4468855 + ], + [ + 34.2160215, + -1.4468391 + ], + [ + 34.2158013, + -1.4467893 + ], + [ + 34.2153993, + -1.446711 + ], + [ + 34.2153748, + -1.4467062 + ], + [ + 34.2150208, + -1.4466445 + ], + [ + 34.2145058, + -1.4465426 + ], + [ + 34.2142376, + -1.44643 + ], + [ + 34.2140801, + -1.4463482 + ], + [ + 34.213964, + -1.4462879 + ], + [ + 34.2137119, + -1.4460659 + ], + [ + 34.2136235, + -1.4459882 + ], + [ + 34.2124397, + -1.4449459 + ], + [ + 34.2114665, + -1.4440668 + ], + [ + 34.2112818, + -1.4439015 + ], + [ + 34.2107748, + -1.443443 + ], + [ + 34.2099809, + -1.4426466 + ], + [ + 34.2075884, + -1.4403822 + ], + [ + 34.2074355, + -1.4402374 + ], + [ + 34.2072612, + -1.4400551 + ], + [ + 34.207119, + -1.439866 + ], + [ + 34.2069111, + -1.4394974 + ], + [ + 34.2067318, + -1.4392258 + ], + [ + 34.2066809, + -1.4391488 + ], + [ + 34.2065463, + -1.438945 + ], + [ + 34.2064181, + -1.4387155 + ], + [ + 34.2064055, + -1.438693 + ], + [ + 34.2058853, + -1.4378929 + ], + [ + 34.2058677, + -1.4378658 + ], + [ + 34.2057511, + -1.4376848 + ], + [ + 34.2055965, + -1.4374781 + ], + [ + 34.2054898, + -1.4373224 + ], + [ + 34.205428, + -1.437255 + ], + [ + 34.2053568, + -1.4371726 + ], + [ + 34.2052844, + -1.4370908 + ], + [ + 34.2051905, + -1.437005 + ], + [ + 34.2047414, + -1.4366159 + ], + [ + 34.2043933, + -1.4363782 + ], + [ + 34.2041976, + -1.4362384 + ], + [ + 34.204121, + -1.4361837 + ], + [ + 34.2040364, + -1.4361234 + ], + [ + 34.2035455, + -1.4357593 + ], + [ + 34.2034837, + -1.4357142 + ], + [ + 34.2033076, + -1.435541 + ], + [ + 34.2031547, + -1.4353533 + ], + [ + 34.202987, + -1.4350882 + ], + [ + 34.2028315, + -1.434864 + ], + [ + 34.2027027, + -1.4346789 + ], + [ + 34.2023911, + -1.43425 + ], + [ + 34.2022374, + -1.4340665 + ], + [ + 34.2020429, + -1.4338598 + ], + [ + 34.2017042, + -1.4335638 + ], + [ + 34.2015352, + -1.4334205 + ], + [ + 34.2012107, + -1.4331751 + ], + [ + 34.2006173, + -1.432684 + ], + [ + 34.2002711, + -1.4324047 + ], + [ + 34.1999629, + -1.4321611 + ], + [ + 34.1997724, + -1.432015 + ], + [ + 34.1996169, + -1.431901 + ], + [ + 34.1994895, + -1.43183 + ], + [ + 34.1993258, + -1.4317722 + ], + [ + 34.199126, + -1.4317522 + ], + [ + 34.1989369, + -1.4317496 + ], + [ + 34.1986392, + -1.4317684 + ], + [ + 34.19826, + -1.4318013 + ], + [ + 34.1979485, + -1.4318233 + ], + [ + 34.1975864, + -1.4318417 + ], + [ + 34.197451, + -1.4318421 + ], + [ + 34.1973404, + -1.4318354 + ], + [ + 34.1972097, + -1.4318282 + ], + [ + 34.196999, + -1.4317871 + ], + [ + 34.1968595, + -1.4317415 + ], + [ + 34.1966986, + -1.4316825 + ], + [ + 34.1963605, + -1.4315547 + ], + [ + 34.1959583, + -1.4314144 + ], + [ + 34.1956138, + -1.4312919 + ], + [ + 34.1955642, + -1.4312742 + ], + [ + 34.1954901, + -1.4312479 + ], + [ + 34.1946768, + -1.4309535 + ], + [ + 34.1945918, + -1.430921 + ], + [ + 34.1941045, + -1.430735 + ], + [ + 34.1937723, + -1.4306073 + ], + [ + 34.1933968, + -1.4304732 + ], + [ + 34.1930765, + -1.4303719 + ], + [ + 34.1926242, + -1.4302289 + ], + [ + 34.1923749, + -1.4301448 + ], + [ + 34.1921442, + -1.430075 + ], + [ + 34.192012, + -1.4300352 + ], + [ + 34.1915834, + -1.4299062 + ], + [ + 34.1912738, + -1.4298096 + ], + [ + 34.191012, + -1.429727 + ], + [ + 34.1905725, + -1.4295817 + ], + [ + 34.1904547, + -1.4295446 + ], + [ + 34.1901674, + -1.4294543 + ], + [ + 34.1897839, + -1.4293363 + ], + [ + 34.1893399, + -1.4291728 + ], + [ + 34.1892703, + -1.429154 + ], + [ + 34.1888592, + -1.4290266 + ], + [ + 34.1882993, + -1.4288684 + ], + [ + 34.1879785, + -1.4287768 + ], + [ + 34.1879157, + -1.4287424 + ], + [ + 34.1878192, + -1.4286465 + ], + [ + 34.187716, + -1.4285104 + ] + ] + }, + "id": "way/456998191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/457007244", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "Tanroads", + "source:bridge": "Bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.394041, + -1.4237165 + ], + [ + 34.3938235, + -1.4237432 + ] + ] + }, + "id": "way/457007244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/457007245", + "highway": "secondary", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3938235, + -1.4237432 + ], + [ + 34.3937768, + -1.423749 + ], + [ + 34.3931462, + -1.4238267 + ], + [ + 34.3922667, + -1.4238886 + ], + [ + 34.3922214, + -1.4238918 + ], + [ + 34.3916303, + -1.4239656 + ] + ] + }, + "id": "way/457007245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/457007246", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "Tanroads", + "source:bridge": "Bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3916303, + -1.4239656 + ], + [ + 34.3913444, + -1.4239938 + ] + ] + }, + "id": "way/457007246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/457007247", + "highway": "secondary", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3913444, + -1.4239938 + ], + [ + 34.3909442, + -1.4240453 + ], + [ + 34.390372, + -1.4241117 + ], + [ + 34.3896978, + -1.4241749 + ], + [ + 34.3894986, + -1.4241856 + ] + ] + }, + "id": "way/457007247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/461120614", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4752886, + -1.2445403 + ], + [ + 34.475557, + -1.2446674 + ], + [ + 34.4758313, + -1.2447947 + ], + [ + 34.4760445, + -1.2449083 + ], + [ + 34.4761951, + -1.2449858 + ], + [ + 34.476424, + -1.2451068 + ], + [ + 34.477454, + -1.2457363 + ], + [ + 34.4775619, + -1.2458 + ], + [ + 34.4777504, + -1.2459059 + ], + [ + 34.4783382, + -1.246238 + ], + [ + 34.4785563, + -1.2463584 + ], + [ + 34.4790794, + -1.2466575 + ], + [ + 34.4796386, + -1.2469604 + ], + [ + 34.4797995, + -1.2470518 + ], + [ + 34.4799383, + -1.2471307 + ], + [ + 34.4802596, + -1.2473124 + ] + ] + }, + "id": "way/461120614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/461120652", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4802596, + -1.2473124 + ], + [ + 34.4804668, + -1.2474136 + ], + [ + 34.4805948, + -1.2474753 + ], + [ + 34.4807746, + -1.247598 + ] + ] + }, + "id": "way/461120652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/461120654", + "highway": "secondary", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4807746, + -1.247598 + ], + [ + 34.4811548, + -1.2478212 + ], + [ + 34.4821411, + -1.2483488 + ], + [ + 34.4824529, + -1.248509 + ], + [ + 34.4829343, + -1.2487766 + ], + [ + 34.4830692, + -1.2488516 + ], + [ + 34.4833059, + -1.2489857 + ], + [ + 34.4839758, + -1.2493705 + ], + [ + 34.4841743, + -1.2494979 + ], + [ + 34.4844264, + -1.2496675 + ], + [ + 34.4849313, + -1.2500355 + ], + [ + 34.4853403, + -1.2503332 + ], + [ + 34.4855677, + -1.2504726 + ], + [ + 34.4857071, + -1.2505544 + ], + [ + 34.48586, + -1.2506295 + ], + [ + 34.4860464, + -1.250714 + ], + [ + 34.4864065, + -1.2509385 + ], + [ + 34.4866312, + -1.2510733 + ], + [ + 34.486894, + -1.2512168 + ], + [ + 34.4871327, + -1.2513361 + ], + [ + 34.4872587, + -1.2513953 + ], + [ + 34.4879803, + -1.2517343 + ], + [ + 34.4881842, + -1.2518416 + ], + [ + 34.488384, + -1.2519475 + ], + [ + 34.4887501, + -1.2521486 + ], + [ + 34.4889365, + -1.2522518 + ], + [ + 34.4891068, + -1.2523309 + ], + [ + 34.4894354, + -1.2524677 + ], + [ + 34.4899182, + -1.2526259 + ], + [ + 34.4900925, + -1.2526702 + ], + [ + 34.4907537, + -1.2528418 + ], + [ + 34.4909844, + -1.2529142 + ], + [ + 34.4912338, + -1.2530054 + ], + [ + 34.4915662, + -1.2531478 + ], + [ + 34.4918722, + -1.2532789 + ], + [ + 34.4921578, + -1.2534049 + ], + [ + 34.4921977, + -1.2534218 + ], + [ + 34.4923094, + -1.2534693 + ], + [ + 34.4926017, + -1.2535779 + ], + [ + 34.4930457, + -1.2537535 + ], + [ + 34.4931623, + -1.2537857 + ], + [ + 34.4932898, + -1.2538165 + ], + [ + 34.4942553, + -1.2539779 + ], + [ + 34.4942848, + -1.2539828 + ], + [ + 34.4944538, + -1.2540056 + ], + [ + 34.4946496, + -1.254023 + ], + [ + 34.4950037, + -1.2540445 + ], + [ + 34.4956836, + -1.2540431 + ], + [ + 34.4958395, + -1.2540378 + ], + [ + 34.4965164, + -1.2540431 + ], + [ + 34.4970517, + -1.2540566 + ] + ] + }, + "id": "way/461120654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/461178709", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5896018, + -1.5359398 + ], + [ + 34.5896776, + -1.5360821 + ] + ] + }, + "id": "way/461178709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/461178710", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5896018, + -1.5359398 + ], + [ + 34.5894885, + -1.5357241 + ], + [ + 34.5893809, + -1.5354974 + ], + [ + 34.5893383, + -1.5354077 + ], + [ + 34.589174, + -1.5350933 + ], + [ + 34.58896, + -1.5346717 + ], + [ + 34.5886865, + -1.5344397 + ], + [ + 34.5883888, + -1.5341046 + ], + [ + 34.5882447, + -1.5339551 + ], + [ + 34.5880458, + -1.5337462 + ], + [ + 34.587902, + -1.5336217 + ], + [ + 34.5877509, + -1.5334684 + ], + [ + 34.5875553, + -1.5332532 + ], + [ + 34.5863592, + -1.5321551 + ], + [ + 34.5859143, + -1.5316405 + ], + [ + 34.5857536, + -1.5314796 + ], + [ + 34.5854786, + -1.5312973 + ], + [ + 34.5852694, + -1.531166 + ], + [ + 34.584969, + -1.5310158 + ], + [ + 34.5846879, + -1.5308958 + ], + [ + 34.5843616, + -1.5307397 + ], + [ + 34.5843123, + -1.5307162 + ], + [ + 34.5835635, + -1.5303052 + ], + [ + 34.5833067, + -1.530175 + ], + [ + 34.5827506, + -1.529893 + ], + [ + 34.5821578, + -1.5295925 + ], + [ + 34.582116, + -1.5295732 + ], + [ + 34.5819386, + -1.5294601 + ], + [ + 34.5817199, + -1.5293415 + ], + [ + 34.5816658, + -1.5293092 + ], + [ + 34.5814592, + -1.5291228 + ], + [ + 34.5809698, + -1.5287139 + ], + [ + 34.5805138, + -1.52825 + ], + [ + 34.5803245, + -1.5280452 + ], + [ + 34.5798802, + -1.5276865 + ], + [ + 34.57847, + -1.5262405 + ], + [ + 34.5784375, + -1.5262064 + ], + [ + 34.5783073, + -1.5260679 + ], + [ + 34.5779416, + -1.5256787 + ], + [ + 34.5776467, + -1.5253823 + ], + [ + 34.5774508, + -1.5251854 + ], + [ + 34.5769949, + -1.524794 + ], + [ + 34.5767476, + -1.5245463 + ], + [ + 34.576681, + -1.5244796 + ], + [ + 34.576385, + -1.5241832 + ], + [ + 34.5763537, + -1.5241518 + ], + [ + 34.5758792, + -1.5236924 + ], + [ + 34.5758324, + -1.5236521 + ], + [ + 34.5757583, + -1.5235968 + ], + [ + 34.5753795, + -1.5233204 + ], + [ + 34.5739258, + -1.5222595 + ], + [ + 34.5732143, + -1.5217402 + ], + [ + 34.5731867, + -1.5217172 + ], + [ + 34.5720868, + -1.5209004 + ], + [ + 34.5718533, + -1.5207344 + ], + [ + 34.5717188, + -1.52056 + ], + [ + 34.5712155, + -1.5202618 + ], + [ + 34.571193, + -1.5202451 + ], + [ + 34.5707368, + -1.5199072 + ], + [ + 34.5705112, + -1.5197401 + ], + [ + 34.5703724, + -1.5195735 + ], + [ + 34.5699958, + -1.5193349 + ], + [ + 34.5698011, + -1.5191069 + ], + [ + 34.5696857, + -1.5189595 + ], + [ + 34.5695516, + -1.5187879 + ], + [ + 34.5694152, + -1.518689 + ], + [ + 34.5693539, + -1.5185869 + ], + [ + 34.5690771, + -1.5181262 + ], + [ + 34.569069, + -1.5181128 + ], + [ + 34.5688901, + -1.5178149 + ], + [ + 34.5686772, + -1.5174605 + ], + [ + 34.568665, + -1.5174402 + ], + [ + 34.5685308, + -1.5172167 + ], + [ + 34.5685186, + -1.5171965 + ], + [ + 34.5683351, + -1.516891 + ], + [ + 34.5681658, + -1.5164845 + ], + [ + 34.5679933, + -1.5163162 + ], + [ + 34.567699, + -1.5157997 + ], + [ + 34.5672794, + -1.5149814 + ], + [ + 34.567282, + -1.5148384 + ], + [ + 34.567132, + -1.5147022 + ], + [ + 34.5668864, + -1.5142485 + ], + [ + 34.5665393, + -1.5135837 + ], + [ + 34.5665082, + -1.5135241 + ], + [ + 34.5657959, + -1.5121774 + ], + [ + 34.5653172, + -1.5112711 + ], + [ + 34.564607, + -1.5099263 + ], + [ + 34.5645607, + -1.5098446 + ], + [ + 34.5644557, + -1.5096594 + ], + [ + 34.5644233, + -1.5094673 + ] + ] + }, + "id": "way/461178710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/462135785", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.157061, + -1.4380254 + ], + [ + 34.1569068, + -1.4380915 + ], + [ + 34.1544482, + -1.4391361 + ], + [ + 34.1539741, + -1.4392912 + ], + [ + 34.1534156, + -1.4394739 + ], + [ + 34.1530307, + -1.4395728 + ], + [ + 34.1520799, + -1.4398171 + ], + [ + 34.1511109, + -1.4400335 + ], + [ + 34.1505103, + -1.4401379 + ], + [ + 34.1497856, + -1.4402457 + ], + [ + 34.1481695, + -1.4404643 + ], + [ + 34.1475826, + -1.4405303 + ], + [ + 34.1468826, + -1.4406394 + ], + [ + 34.1462805, + -1.4407811 + ], + [ + 34.1456362, + -1.4409625 + ], + [ + 34.1449419, + -1.4411913 + ], + [ + 34.1439172, + -1.4416123 + ], + [ + 34.1425064, + -1.4422907 + ], + [ + 34.1409273, + -1.4429876 + ], + [ + 34.1396445, + -1.4434759 + ], + [ + 34.1385019, + -1.443803 + ], + [ + 34.1372235, + -1.4440612 + ], + [ + 34.1358089, + -1.4442454 + ], + [ + 34.1340253, + -1.4443098 + ], + [ + 34.1328612, + -1.4442776 + ], + [ + 34.1318567, + -1.444169 + ], + [ + 34.1314074, + -1.4441261 + ], + [ + 34.1302594, + -1.4438928 + ], + [ + 34.129444, + -1.4436957 + ], + [ + 34.1281346, + -1.4433115 + ], + [ + 34.126177, + -1.4428245 + ], + [ + 34.1240401, + -1.4422317 + ], + [ + 34.1223597, + -1.4419167 + ], + [ + 34.1216355, + -1.4417558 + ], + [ + 34.1211125, + -1.4416539 + ], + [ + 34.1195755, + -1.4414206 + ], + [ + 34.1184946, + -1.4412892 + ], + [ + 34.1162009, + -1.4410793 + ], + [ + 34.1146403, + -1.4410157 + ], + [ + 34.1128003, + -1.440997 + ], + [ + 34.1099169, + -1.4410184 + ], + [ + 34.1025241, + -1.4410911 + ], + [ + 34.101535, + -1.4411015 + ], + [ + 34.1002173, + -1.4411099 + ], + [ + 34.0971332, + -1.4411333 + ], + [ + 34.0956813, + -1.4411442 + ], + [ + 34.0955811, + -1.441145 + ], + [ + 34.0927914, + -1.4410601 + ], + [ + 34.090764, + -1.4408401 + ], + [ + 34.0879598, + -1.4404506 + ], + [ + 34.0859865, + -1.4401173 + ], + [ + 34.0840634, + -1.4397525 + ], + [ + 34.0834574, + -1.4396541 + ], + [ + 34.0818366, + -1.4393911 + ], + [ + 34.0794162, + -1.4389982 + ], + [ + 34.0792226, + -1.4389745 + ], + [ + 34.0776982, + -1.4387875 + ], + [ + 34.0770365, + -1.4387659 + ], + [ + 34.0764644, + -1.4387473 + ], + [ + 34.0762788, + -1.4387544 + ], + [ + 34.0756276, + -1.4387795 + ], + [ + 34.0749194, + -1.4388572 + ], + [ + 34.0740826, + -1.4389699 + ], + [ + 34.0731572, + -1.4391656 + ], + [ + 34.0729456, + -1.4392231 + ], + [ + 34.0719234, + -1.4395008 + ], + [ + 34.0707298, + -1.4399405 + ], + [ + 34.0699332, + -1.4403105 + ], + [ + 34.0694397, + -1.4405572 + ], + [ + 34.0681978, + -1.4412919 + ], + [ + 34.0673422, + -1.4419113 + ], + [ + 34.0664115, + -1.4427077 + ], + [ + 34.0658044, + -1.4432988 + ], + [ + 34.0655813, + -1.4435161 + ], + [ + 34.0653784, + -1.4437436 + ], + [ + 34.0649711, + -1.4442 + ], + [ + 34.0645504, + -1.4446702 + ], + [ + 34.0645318, + -1.444691 + ], + [ + 34.0641316, + -1.4451383 + ], + [ + 34.0638446, + -1.4454628 + ], + [ + 34.0632674, + -1.4460378 + ], + [ + 34.0623777, + -1.4467742 + ], + [ + 34.0622219, + -1.4468986 + ], + [ + 34.0615955, + -1.4472955 + ], + [ + 34.0610229, + -1.4476628 + ], + [ + 34.0602652, + -1.4480208 + ], + [ + 34.0596228, + -1.4483077 + ], + [ + 34.0587058, + -1.4485799 + ], + [ + 34.0577614, + -1.4488279 + ], + [ + 34.0570275, + -1.4489255 + ], + [ + 34.056145, + -1.4490247 + ], + [ + 34.0560272, + -1.4490308 + ], + [ + 34.0555102, + -1.449084 + ], + [ + 34.0524482, + -1.4493755 + ], + [ + 34.0517643, + -1.44946 + ], + [ + 34.0513539, + -1.4495176 + ], + [ + 34.0508339, + -1.4496061 + ], + [ + 34.0503068, + -1.4497563 + ], + [ + 34.0494699, + -1.4500301 + ], + [ + 34.0492903, + -1.4501102 + ], + [ + 34.0484159, + -1.4505553 + ], + [ + 34.0478542, + -1.4508683 + ], + [ + 34.0472572, + -1.4513302 + ], + [ + 34.0460986, + -1.4523902 + ], + [ + 34.0445139, + -1.4538399 + ], + [ + 34.0437588, + -1.4543306 + ], + [ + 34.0430507, + -1.4547047 + ], + [ + 34.0425893, + -1.454868 + ], + [ + 34.0411749, + -1.4553687 + ], + [ + 34.0400698, + -1.4556678 + ], + [ + 34.0394806, + -1.4558764 + ], + [ + 34.039415, + -1.4559043 + ], + [ + 34.0390294, + -1.4560681 + ], + [ + 34.038092, + -1.4564945 + ], + [ + 34.0372753, + -1.4569704 + ], + [ + 34.0366235, + -1.457441 + ], + [ + 34.0359945, + -1.4579813 + ], + [ + 34.0354192, + -1.4585805 + ], + [ + 34.0351383, + -1.4589208 + ], + [ + 34.0349887, + -1.4591101 + ], + [ + 34.0345622, + -1.4597241 + ], + [ + 34.0341143, + -1.4605486 + ], + [ + 34.0339816, + -1.4608195 + ], + [ + 34.0338688, + -1.4610635 + ], + [ + 34.0334055, + -1.4621226 + ], + [ + 34.0332848, + -1.4623652 + ], + [ + 34.0327662, + -1.4631093 + ], + [ + 34.0322977, + -1.463655 + ], + [ + 34.0314474, + -1.464347 + ], + [ + 34.0308018, + -1.4647623 + ], + [ + 34.0301581, + -1.465052 + ], + [ + 34.0296277, + -1.4652437 + ], + [ + 34.0284206, + -1.4655279 + ], + [ + 34.0262651, + -1.4659299 + ], + [ + 34.0262311, + -1.4659363 + ], + [ + 34.0260792, + -1.4659646 + ], + [ + 34.0257585, + -1.4660244 + ], + [ + 34.0255435, + -1.4660794 + ], + [ + 34.0248083, + -1.4662676 + ], + [ + 34.0243744, + -1.4664495 + ], + [ + 34.0237752, + -1.4667369 + ], + [ + 34.0232663, + -1.4670311 + ], + [ + 34.0228839, + -1.4673282 + ], + [ + 34.0224098, + -1.4677641 + ], + [ + 34.0219412, + -1.468312 + ], + [ + 34.0212887, + -1.4692186 + ], + [ + 34.0208826, + -1.4696785 + ], + [ + 34.0204068, + -1.4700244 + ], + [ + 34.0197866, + -1.4703945 + ], + [ + 34.0189619, + -1.4707425 + ], + [ + 34.018214, + -1.4710434 + ], + [ + 34.0176864, + -1.471242 + ], + [ + 34.0170101, + -1.4714848 + ], + [ + 34.0167476, + -1.4715904 + ], + [ + 34.0160674, + -1.4718641 + ], + [ + 34.0155849, + -1.4721427 + ], + [ + 34.0152684, + -1.4723626 + ], + [ + 34.0150431, + -1.4725355 + ], + [ + 34.0147011, + -1.4728828 + ], + [ + 34.0143683, + -1.4733585 + ], + [ + 34.0140789, + -1.4739097 + ], + [ + 34.0139099, + -1.4744607 + ], + [ + 34.0138563, + -1.4747852 + ], + [ + 34.0138254, + -1.4752115 + ], + [ + 34.0138342, + -1.4754183 + ], + [ + 34.0138426, + -1.4755744 + ], + [ + 34.0138583, + -1.4758688 + ], + [ + 34.0138583, + -1.4761758 + ], + [ + 34.0138302, + -1.4764466 + ], + [ + 34.0137497, + -1.4767771 + ], + [ + 34.0136786, + -1.4769876 + ], + [ + 34.0135847, + -1.4772021 + ], + [ + 34.0135002, + -1.4774032 + ], + [ + 34.0133755, + -1.4776083 + ], + [ + 34.0132267, + -1.4778148 + ], + [ + 34.0130268, + -1.4780373 + ], + [ + 34.012764, + -1.478355 + ], + [ + 34.0126661, + -1.4785012 + ], + [ + 34.0125293, + -1.478713 + ], + [ + 34.0124247, + -1.4789382 + ], + [ + 34.012371, + -1.479071 + ], + [ + 34.0123013, + -1.4792888 + ], + [ + 34.0122491, + -1.4795229 + ], + [ + 34.0122436, + -1.4795476 + ], + [ + 34.0122344, + -1.4796219 + ], + [ + 34.0122114, + -1.4798063 + ], + [ + 34.0122034, + -1.4800744 + ], + [ + 34.0122168, + -1.4802286 + ], + [ + 34.0122262, + -1.4803828 + ], + [ + 34.0122798, + -1.4806885 + ], + [ + 34.0123268, + -1.480911 + ], + [ + 34.0123777, + -1.4812073 + ], + [ + 34.0123858, + -1.4814097 + ], + [ + 34.0123912, + -1.4815706 + ], + [ + 34.0123697, + -1.4818159 + ], + [ + 34.0123134, + -1.4821149 + ], + [ + 34.0122678, + -1.4822785 + ], + [ + 34.0122329, + -1.4823757 + ], + [ + 34.0121437, + -1.482611 + ], + [ + 34.0120532, + -1.4827748 + ], + [ + 34.0119854, + -1.482905 + ], + [ + 34.0119352, + -1.4830014 + ], + [ + 34.0117702, + -1.4832199 + ], + [ + 34.0115932, + -1.4834224 + ], + [ + 34.0114443, + -1.4835524 + ], + [ + 34.0112995, + -1.4836691 + ], + [ + 34.0111855, + -1.4837455 + ], + [ + 34.0109776, + -1.4838675 + ], + [ + 34.0108167, + -1.4839493 + ], + [ + 34.0105954, + -1.4840404 + ], + [ + 34.0103956, + -1.4840927 + ], + [ + 34.0101207, + -1.484149 + ], + [ + 34.0098712, + -1.4841705 + ], + [ + 34.0097375, + -1.4841766 + ], + [ + 34.0096969, + -1.4841785 + ], + [ + 34.0093133, + -1.4841664 + ], + [ + 34.0090558, + -1.4841557 + ], + [ + 34.0088453, + -1.4841638 + ], + [ + 34.0086092, + -1.4841959 + ], + [ + 34.0083289, + -1.4842791 + ], + [ + 34.0080862, + -1.4843836 + ], + [ + 34.0078569, + -1.4845298 + ], + [ + 34.0076946, + -1.4846544 + ], + [ + 34.0075337, + -1.4848086 + ], + [ + 34.0074197, + -1.4849387 + ], + [ + 34.007303, + -1.4850969 + ], + [ + 34.0072158, + -1.485243 + ], + [ + 34.0071474, + -1.4853811 + ], + [ + 34.007075, + -1.4855366 + ], + [ + 34.0070556, + -1.4855956 + ], + [ + 34.0069806, + -1.4858236 + ], + [ + 34.0069731, + -1.4858463 + ], + [ + 34.0069034, + -1.4860983 + ], + [ + 34.0068001, + -1.4864214 + ], + [ + 34.006678, + -1.4867003 + ], + [ + 34.0066056, + -1.4868209 + ], + [ + 34.0065077, + -1.4869604 + ], + [ + 34.0064004, + -1.4871119 + ], + [ + 34.0061899, + -1.4873156 + ], + [ + 34.0060625, + -1.4874175 + ], + [ + 34.0059431, + -1.4874993 + ], + [ + 34.0056749, + -1.4876548 + ], + [ + 34.0054429, + -1.4877447 + ], + [ + 34.005231, + -1.4877983 + ], + [ + 34.0050848, + -1.4878264 + ], + [ + 34.0049078, + -1.4878519 + ], + [ + 34.004598, + -1.4878439 + ], + [ + 34.0043257, + -1.4878318 + ], + [ + 34.004032, + -1.487809 + ], + [ + 34.0038765, + -1.4878063 + ], + [ + 34.0036807, + -1.4878117 + ], + [ + 34.0034446, + -1.4878492 + ], + [ + 34.0032032, + -1.487923 + ], + [ + 34.0029525, + -1.4880074 + ], + [ + 34.0026346, + -1.4880959 + ], + [ + 34.0025126, + -1.4881267 + ], + [ + 34.0023999, + -1.4881388 + ], + [ + 34.0021746, + -1.4881495 + ], + [ + 34.0020298, + -1.4881388 + ], + [ + 34.0018098, + -1.4881066 + ], + [ + 34.001555, + -1.4880383 + ], + [ + 34.001197, + -1.4879163 + ], + [ + 34.0010065, + -1.4878599 + ], + [ + 34.0007477, + -1.4878211 + ], + [ + 34.0005398, + -1.4878184 + ], + [ + 34.0003467, + -1.4878251 + ], + [ + 34.0002448, + -1.4878385 + ], + [ + 34.000108, + -1.487864 + ], + [ + 33.9999028, + -1.4879189 + ], + [ + 33.9997405, + -1.4879819 + ], + [ + 33.9993824, + -1.4881536 + ], + [ + 33.9987763, + -1.4884981 + ], + [ + 33.9983391, + -1.4887488 + ], + [ + 33.9979796, + -1.4889566 + ], + [ + 33.9976766, + -1.4890987 + ], + [ + 33.9975022, + -1.4891644 + ], + [ + 33.9971978, + -1.4892489 + ], + [ + 33.9969349, + -1.4892797 + ], + [ + 33.9965768, + -1.4893079 + ], + [ + 33.9964098, + -1.4893369 + ], + [ + 33.9962295, + -1.4893776 + ], + [ + 33.9959425, + -1.4894982 + ], + [ + 33.9956099, + -1.489694 + ], + [ + 33.9952612, + -1.4899835 + ], + [ + 33.994816, + -1.4904648 + ], + [ + 33.9946851, + -1.4906108 + ], + [ + 33.9944794, + -1.4908402 + ], + [ + 33.9941213, + -1.491225 + ], + [ + 33.9939523, + -1.4914047 + ], + [ + 33.9938325, + -1.4915138 + ], + [ + 33.9936304, + -1.4916647 + ], + [ + 33.9933729, + -1.4917974 + ], + [ + 33.9930766, + -1.4919168 + ], + [ + 33.992835, + -1.4919973 + ], + [ + 33.9924449, + -1.4921018 + ], + [ + 33.9920533, + -1.4922586 + ], + [ + 33.9918521, + -1.4923632 + ], + [ + 33.9915276, + -1.4925549 + ], + [ + 33.9912393, + -1.4927976 + ], + [ + 33.9909966, + -1.4930067 + ] + ] + }, + "id": "way/462135785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/462135786", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2133302, + -1.4122272 + ], + [ + 34.2132935, + -1.4123748 + ] + ] + }, + "id": "way/462135786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/464373574", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4086888, + -1.3174801 + ], + [ + 34.4084472, + -1.3175848 + ] + ] + }, + "id": "way/464373574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/464373575", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4752975, + -1.2446738 + ], + [ + 34.4753127, + -1.244897 + ], + [ + 34.4753148, + -1.2451292 + ], + [ + 34.475319, + -1.2454433 + ], + [ + 34.4753082, + -1.2457812 + ], + [ + 34.4753082, + -1.2462324 + ], + [ + 34.4753093, + -1.2465094 + ], + [ + 34.4753234, + -1.2467722 + ], + [ + 34.4753455, + -1.247117 + ], + [ + 34.4753792, + -1.2473405 + ], + [ + 34.4754221, + -1.2475498 + ], + [ + 34.4754437, + -1.2477025 + ], + [ + 34.4754732, + -1.2481289 + ], + [ + 34.4754986, + -1.2485392 + ], + [ + 34.4755174, + -1.2488905 + ], + [ + 34.4755452, + -1.249214 + ], + [ + 34.4755751, + -1.2497164 + ], + [ + 34.4756127, + -1.2502058 + ], + [ + 34.4756206, + -1.2505611 + ], + [ + 34.4755951, + -1.2510173 + ], + [ + 34.4755576, + -1.2512771 + ], + [ + 34.4755081, + -1.2516042 + ], + [ + 34.4754158, + -1.2519445 + ], + [ + 34.4753464, + -1.2521131 + ], + [ + 34.4753002, + -1.2522283 + ], + [ + 34.4752512, + -1.2523484 + ], + [ + 34.4751902, + -1.2524744 + ], + [ + 34.475111, + -1.2526053 + ], + [ + 34.4750375, + -1.2527216 + ], + [ + 34.474855, + -1.253004 + ], + [ + 34.4746096, + -1.2533039 + ], + [ + 34.4744317, + -1.2534815 + ], + [ + 34.4740328, + -1.2538997 + ], + [ + 34.4735808, + -1.2543428 + ], + [ + 34.4735007, + -1.2544225 + ], + [ + 34.4729492, + -1.2549965 + ], + [ + 34.4727452, + -1.2552052 + ], + [ + 34.4725939, + -1.2553879 + ], + [ + 34.4724342, + -1.2555958 + ], + [ + 34.4719448, + -1.256486 + ], + [ + 34.4717395, + -1.2567674 + ], + [ + 34.4714646, + -1.2570693 + ], + [ + 34.4709389, + -1.2575265 + ], + [ + 34.4705518, + -1.257803 + ], + [ + 34.4703233, + -1.2578979 + ], + [ + 34.4700457, + -1.2579933 + ], + [ + 34.4698298, + -1.2580561 + ], + [ + 34.4695857, + -1.2581312 + ], + [ + 34.4693443, + -1.2581795 + ], + [ + 34.4690546, + -1.2582089 + ], + [ + 34.468718, + -1.258209 + ], + [ + 34.4683384, + -1.2581633 + ], + [ + 34.4679845, + -1.2580842 + ], + [ + 34.4676425, + -1.2579716 + ], + [ + 34.4673246, + -1.2578469 + ], + [ + 34.4671047, + -1.2577423 + ], + [ + 34.4668337, + -1.2575654 + ], + [ + 34.466479, + -1.2573066 + ], + [ + 34.4663959, + -1.2572376 + ], + [ + 34.4661253, + -1.2570129 + ], + [ + 34.4660895, + -1.2569754 + ], + [ + 34.465313, + -1.2562809 + ], + [ + 34.4650904, + -1.2560825 + ], + [ + 34.464751, + -1.2557861 + ], + [ + 34.4642642, + -1.2553866 + ], + [ + 34.4639571, + -1.2551647 + ], + [ + 34.463772, + -1.2550438 + ], + [ + 34.4635569, + -1.2549259 + ], + [ + 34.4632362, + -1.2547566 + ], + [ + 34.4627286, + -1.2545607 + ], + [ + 34.4624726, + -1.2544753 + ], + [ + 34.4618765, + -1.2543476 + ], + [ + 34.4612934, + -1.2542694 + ], + [ + 34.4607666, + -1.2542697 + ], + [ + 34.4601631, + -1.2543314 + ], + [ + 34.4595502, + -1.254454 + ], + [ + 34.4589293, + -1.2546693 + ], + [ + 34.4583788, + -1.2549334 + ], + [ + 34.4578859, + -1.2552284 + ], + [ + 34.4575525, + -1.2554816 + ], + [ + 34.4572301, + -1.2558035 + ], + [ + 34.4570129, + -1.2560126 + ], + [ + 34.4567111, + -1.256368 + ], + [ + 34.4564697, + -1.2566965 + ], + [ + 34.4562216, + -1.2571202 + ], + [ + 34.4560208, + -1.2575414 + ], + [ + 34.4558474, + -1.257973 + ], + [ + 34.4556242, + -1.2586549 + ], + [ + 34.4554873, + -1.2590394 + ], + [ + 34.455311, + -1.2594384 + ], + [ + 34.4551533, + -1.2597612 + ], + [ + 34.4548845, + -1.2602013 + ], + [ + 34.4542006, + -1.2610407 + ], + [ + 34.4533798, + -1.2617701 + ], + [ + 34.4529641, + -1.2620603 + ], + [ + 34.4524426, + -1.2623771 + ], + [ + 34.4518013, + -1.2627965 + ], + [ + 34.4511839, + -1.2633238 + ], + [ + 34.4505378, + -1.2640172 + ], + [ + 34.450153, + -1.2645462 + ], + [ + 34.4498763, + -1.2650113 + ], + [ + 34.4497004, + -1.2653692 + ] + ] + }, + "id": "way/464373575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465237367", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1859697, + -1.2944678 + ], + [ + 34.1860253, + -1.2945059 + ] + ] + }, + "id": "way/465237367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465237368", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1907191, + -1.2969532 + ], + [ + 34.1910059, + -1.297133 + ], + [ + 34.1915147, + -1.297486 + ], + [ + 34.1917167, + -1.2976167 + ], + [ + 34.1919662, + -1.2977474 + ], + [ + 34.1925979, + -1.297981 + ], + [ + 34.1928338, + -1.2980682 + ], + [ + 34.1940697, + -1.2984603 + ], + [ + 34.1960187, + -1.2992206 + ], + [ + 34.196569, + -1.2994618 + ], + [ + 34.1971752, + -1.299797 + ], + [ + 34.1978726, + -1.300278 + ], + [ + 34.1985618, + -1.3008365 + ], + [ + 34.1989659, + -1.3011454 + ], + [ + 34.1994056, + -1.3014543 + ], + [ + 34.1996433, + -1.3015849 + ], + [ + 34.1999404, + -1.3017156 + ], + [ + 34.2011947, + -1.302184 + ], + [ + 34.2013542, + -1.3022436 + ], + [ + 34.2018317, + -1.302422 + ], + [ + 34.2019117, + -1.3024519 + ], + [ + 34.2020082, + -1.3024879 + ], + [ + 34.2031253, + -1.3028681 + ], + [ + 34.20406, + -1.3032307 + ], + [ + 34.20571, + -1.3038708 + ], + [ + 34.20627, + -1.3040881 + ], + [ + 34.2063102, + -1.3041037 + ], + [ + 34.2072366, + -1.3044783 + ], + [ + 34.2084083, + -1.3049521 + ], + [ + 34.2085846, + -1.3050233 + ], + [ + 34.2089841, + -1.3051849 + ], + [ + 34.2104129, + -1.3057736 + ], + [ + 34.2109113, + -1.3059704 + ], + [ + 34.2114411, + -1.3062041 + ], + [ + 34.211658, + -1.3063492 + ], + [ + 34.2120585, + -1.3067503 + ], + [ + 34.2122285, + -1.3069763 + ], + [ + 34.2124709, + -1.307283 + ], + [ + 34.212697, + -1.3076386 + ], + [ + 34.2128365, + -1.307939 + ], + [ + 34.2128864, + -1.3081069 + ], + [ + 34.2130511, + -1.3085611 + ], + [ + 34.2132467, + -1.309168 + ], + [ + 34.2137056, + -1.311381 + ], + [ + 34.2137246, + -1.3114862 + ], + [ + 34.2137636, + -1.3116607 + ], + [ + 34.2141277, + -1.3125002 + ], + [ + 34.2142708, + -1.3128301 + ] + ] + }, + "id": "way/465237368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465538556", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1624775, + -1.2921476 + ], + [ + 34.1625735, + -1.2921409 + ] + ] + }, + "id": "way/465538556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465538558", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1745548, + -1.2865891 + ], + [ + 34.1746701, + -1.2866374 + ], + [ + 34.1749101, + -1.2867542 + ], + [ + 34.1750131, + -1.2868251 + ], + [ + 34.1756376, + -1.2872552 + ], + [ + 34.1770291, + -1.2882617 + ], + [ + 34.1771861, + -1.2883752 + ], + [ + 34.1773677, + -1.2884893 + ], + [ + 34.1780441, + -1.2889958 + ], + [ + 34.1784678, + -1.2892915 + ], + [ + 34.1792214, + -1.2898173 + ], + [ + 34.1794999, + -1.2900116 + ], + [ + 34.1802136, + -1.2904893 + ], + [ + 34.1809022, + -1.2909502 + ], + [ + 34.1814575, + -1.2913502 + ], + [ + 34.1818088, + -1.2916022 + ], + [ + 34.182415, + -1.2920286 + ], + [ + 34.1828012, + -1.292286 + ], + [ + 34.1829273, + -1.2923611 + ], + [ + 34.1836333, + -1.2928721 + ], + [ + 34.184503, + -1.2934333 + ], + [ + 34.1856439, + -1.2942769 + ], + [ + 34.1859697, + -1.2944678 + ] + ] + }, + "id": "way/465538558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/466109485", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5464748, + -1.2732701 + ], + [ + 34.5466439, + -1.2733748 + ] + ] + }, + "id": "way/466109485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/472248486", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4086888, + -1.3174801 + ], + [ + 34.4096396, + -1.3170319 + ], + [ + 34.4098903, + -1.3169137 + ], + [ + 34.4099746, + -1.316875 + ], + [ + 34.41199, + -1.3159499 + ], + [ + 34.4120737, + -1.3159117 + ], + [ + 34.4125572, + -1.315691 + ], + [ + 34.413494, + -1.3152633 + ], + [ + 34.4138136, + -1.3151175 + ], + [ + 34.4143416, + -1.3148765 + ], + [ + 34.4147741, + -1.3146791 + ], + [ + 34.4149895, + -1.3145807 + ], + [ + 34.4158056, + -1.3142082 + ], + [ + 34.4164206, + -1.3139274 + ], + [ + 34.416922, + -1.3136709 + ], + [ + 34.4179879, + -1.3131296 + ], + [ + 34.4184184, + -1.3128658 + ], + [ + 34.4195796, + -1.3121 + ], + [ + 34.4199407, + -1.3118611 + ], + [ + 34.4203967, + -1.3115554 + ], + [ + 34.4211271, + -1.3109977 + ], + [ + 34.4215617, + -1.3106764 + ], + [ + 34.4217974, + -1.310457 + ], + [ + 34.4220208, + -1.3102491 + ], + [ + 34.4229615, + -1.3093736 + ], + [ + 34.4236786, + -1.3086205 + ], + [ + 34.4237062, + -1.3085916 + ], + [ + 34.4238222, + -1.3084698 + ], + [ + 34.4239145, + -1.3083729 + ], + [ + 34.4246329, + -1.3074983 + ], + [ + 34.4247956, + -1.3073003 + ], + [ + 34.4250441, + -1.3069615 + ], + [ + 34.4252998, + -1.3065785 + ], + [ + 34.4256526, + -1.3061079 + ], + [ + 34.4261102, + -1.3054117 + ], + [ + 34.4264378, + -1.3048796 + ], + [ + 34.4264792, + -1.304803 + ], + [ + 34.4265525, + -1.3046673 + ], + [ + 34.4270432, + -1.303759 + ], + [ + 34.4273409, + -1.3032105 + ], + [ + 34.42738, + -1.3031233 + ], + [ + 34.4274036, + -1.3030707 + ], + [ + 34.4276725, + -1.3024708 + ], + [ + 34.4284546, + -1.3008218 + ], + [ + 34.4286506, + -1.3004085 + ], + [ + 34.4288832, + -1.2999181 + ], + [ + 34.4293633, + -1.2988664 + ], + [ + 34.4300432, + -1.2973344 + ], + [ + 34.4300879, + -1.2972337 + ], + [ + 34.4312806, + -1.2946811 + ], + [ + 34.4316099, + -1.2939668 + ], + [ + 34.43179, + -1.293576 + ], + [ + 34.4321324, + -1.2928333 + ], + [ + 34.4322309, + -1.2926196 + ], + [ + 34.4328689, + -1.2912356 + ], + [ + 34.4335318, + -1.2898714 + ], + [ + 34.4339957, + -1.2889167 + ], + [ + 34.4342289, + -1.2885278 + ], + [ + 34.4345232, + -1.2880119 + ], + [ + 34.4347438, + -1.2876737 + ], + [ + 34.4350789, + -1.2872356 + ], + [ + 34.4351079, + -1.2871951 + ], + [ + 34.4351218, + -1.2871756 + ], + [ + 34.4354282, + -1.2867476 + ], + [ + 34.436359, + -1.2857101 + ], + [ + 34.4366809, + -1.2853514 + ], + [ + 34.4370043, + -1.2850642 + ], + [ + 34.4373217, + -1.2847585 + ], + [ + 34.43769, + -1.2844161 + ], + [ + 34.4378856, + -1.2842369 + ], + [ + 34.4386633, + -1.2834518 + ], + [ + 34.4393962, + -1.2825462 + ], + [ + 34.4394901, + -1.2824037 + ], + [ + 34.4397137, + -1.2820658 + ], + [ + 34.4400011, + -1.2815112 + ], + [ + 34.4402041, + -1.2810901 + ], + [ + 34.4404101, + -1.2806431 + ], + [ + 34.4404422, + -1.2805677 + ], + [ + 34.4404728, + -1.2804863 + ], + [ + 34.4405444, + -1.2802918 + ], + [ + 34.4405813, + -1.2801852 + ], + [ + 34.4406702, + -1.2799644 + ], + [ + 34.4407915, + -1.2796922 + ], + [ + 34.4409156, + -1.2794039 + ], + [ + 34.4410382, + -1.2791496 + ], + [ + 34.4412062, + -1.2788784 + ], + [ + 34.4414697, + -1.2784905 + ], + [ + 34.4418773, + -1.2779752 + ], + [ + 34.4424167, + -1.2774179 + ], + [ + 34.4432558, + -1.2767647 + ], + [ + 34.4441334, + -1.2762675 + ], + [ + 34.4445323, + -1.2761293 + ], + [ + 34.4454914, + -1.2757281 + ], + [ + 34.4460908, + -1.2754285 + ], + [ + 34.4466842, + -1.275021 + ], + [ + 34.4468282, + -1.2748935 + ], + [ + 34.4471094, + -1.2746404 + ], + [ + 34.4479154, + -1.2737146 + ], + [ + 34.4480335, + -1.2735569 + ], + [ + 34.4482239, + -1.2732598 + ], + [ + 34.4483624, + -1.2730436 + ], + [ + 34.4486681, + -1.2723965 + ], + [ + 34.4489318, + -1.2716115 + ], + [ + 34.4490576, + -1.2709584 + ], + [ + 34.4491236, + -1.2701794 + ], + [ + 34.4491188, + -1.2700654 + ], + [ + 34.4490909, + -1.2694017 + ], + [ + 34.4490516, + -1.2688971 + ], + [ + 34.4490516, + -1.26819 + ], + [ + 34.449058, + -1.2680551 + ], + [ + 34.4490816, + -1.2675549 + ], + [ + 34.4492135, + -1.2667579 + ], + [ + 34.4494173, + -1.2660329 + ], + [ + 34.4497004, + -1.2653692 + ] + ] + }, + "id": "way/472248486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/472389988", + "highway": "secondary", + "ref": "R185", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.039287, + -1.6291875 + ], + [ + 34.0388712, + -1.6287049 + ], + [ + 34.0381926, + -1.6280159 + ], + [ + 34.0375435, + -1.6273483 + ] + ] + }, + "id": "way/472389988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/472389989", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0393889, + -1.6292988 + ], + [ + 34.039287, + -1.6291875 + ] + ] + }, + "id": "way/472389989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/472389990", + "highway": "secondary", + "ref": "R185", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0405235, + -1.6302466 + ], + [ + 34.040333, + -1.630134 + ], + [ + 34.0400997, + -1.6299811 + ], + [ + 34.0398878, + -1.6298095 + ], + [ + 34.0396652, + -1.6295763 + ], + [ + 34.0393889, + -1.6292988 + ] + ] + }, + "id": "way/472389990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/472788899", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.157339, + -1.4378879 + ], + [ + 34.157061, + -1.4380254 + ] + ] + }, + "id": "way/472788899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/472788905", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2132935, + -1.4123748 + ], + [ + 34.2131799, + -1.4129464 + ], + [ + 34.2131102, + -1.4133137 + ], + [ + 34.2128339, + -1.414171 + ], + [ + 34.2125742, + -1.4148781 + ], + [ + 34.2122787, + -1.4154991 + ], + [ + 34.2119971, + -1.4159871 + ], + [ + 34.2116952, + -1.4164929 + ], + [ + 34.2113721, + -1.4169202 + ], + [ + 34.2110798, + -1.4172501 + ], + [ + 34.2104136, + -1.4179517 + ], + [ + 34.2098245, + -1.4184379 + ], + [ + 34.2090438, + -1.4189748 + ], + [ + 34.2085665, + -1.4192637 + ], + [ + 34.2080484, + -1.4195132 + ], + [ + 34.2074883, + -1.419741 + ], + [ + 34.2068772, + -1.4199428 + ], + [ + 34.2057449, + -1.4201942 + ], + [ + 34.2051565, + -1.4203058 + ], + [ + 34.2038727, + -1.4205455 + ], + [ + 34.2028784, + -1.4207728 + ], + [ + 34.2022146, + -1.4209635 + ], + [ + 34.2017114, + -1.4211195 + ], + [ + 34.2010081, + -1.4213686 + ], + [ + 34.2005682, + -1.4215429 + ], + [ + 34.2001352, + -1.4217347 + ], + [ + 34.1996187, + -1.4219719 + ], + [ + 34.1990987, + -1.4222487 + ], + [ + 34.1984868, + -1.4225619 + ], + [ + 34.1977733, + -1.4229828 + ], + [ + 34.1973849, + -1.4232049 + ], + [ + 34.1970652, + -1.4233877 + ], + [ + 34.1964062, + -1.4237652 + ], + [ + 34.1953804, + -1.4243693 + ], + [ + 34.1947959, + -1.4247158 + ], + [ + 34.1942543, + -1.4250341 + ], + [ + 34.1939714, + -1.425192 + ], + [ + 34.1932377, + -1.4256159 + ], + [ + 34.1928497, + -1.4258406 + ], + [ + 34.1923509, + -1.4261264 + ], + [ + 34.1920288, + -1.426311 + ], + [ + 34.191027, + -1.4268687 + ], + [ + 34.1901854, + -1.4273133 + ], + [ + 34.1898179, + -1.4274956 + ], + [ + 34.1893512, + -1.4277181 + ], + [ + 34.1887315, + -1.4280184 + ], + [ + 34.187716, + -1.4285104 + ], + [ + 34.1876438, + -1.4285392 + ], + [ + 34.1870566, + -1.4287616 + ], + [ + 34.1870194, + -1.4287758 + ], + [ + 34.1857128, + -1.429276 + ], + [ + 34.1856359, + -1.4292908 + ], + [ + 34.1848384, + -1.4295576 + ], + [ + 34.1845313, + -1.4296742 + ], + [ + 34.1841906, + -1.4297721 + ], + [ + 34.1836505, + -1.4299105 + ], + [ + 34.1834382, + -1.4299648 + ], + [ + 34.182694, + -1.4301555 + ], + [ + 34.1823587, + -1.4302386 + ], + [ + 34.1819242, + -1.4303432 + ], + [ + 34.1818004, + -1.4303708 + ], + [ + 34.1812962, + -1.4304832 + ], + [ + 34.1812268, + -1.4304987 + ], + [ + 34.1804009, + -1.430666 + ], + [ + 34.1797807, + -1.4307417 + ], + [ + 34.1790022, + -1.43089 + ], + [ + 34.1779026, + -1.4311024 + ], + [ + 34.1775211, + -1.4311866 + ], + [ + 34.1769152, + -1.4312825 + ], + [ + 34.176144, + -1.4314716 + ], + [ + 34.1755526, + -1.4315909 + ], + [ + 34.1751911, + -1.4316379 + ], + [ + 34.1748641, + -1.4316714 + ], + [ + 34.1736453, + -1.4319321 + ], + [ + 34.1730094, + -1.4320518 + ], + [ + 34.1728596, + -1.4320776 + ], + [ + 34.1725708, + -1.4321391 + ], + [ + 34.1722132, + -1.4321867 + ], + [ + 34.1719896, + -1.4322416 + ], + [ + 34.1716006, + -1.4323166 + ], + [ + 34.1713158, + -1.4323716 + ], + [ + 34.1707669, + -1.4324724 + ], + [ + 34.1702011, + -1.4325949 + ], + [ + 34.1695591, + -1.4327238 + ], + [ + 34.1690245, + -1.4328246 + ], + [ + 34.1684892, + -1.432952 + ], + [ + 34.1678555, + -1.4331115 + ], + [ + 34.1677347, + -1.4331484 + ], + [ + 34.1674801, + -1.4332299 + ], + [ + 34.1673412, + -1.4332744 + ], + [ + 34.1668488, + -1.4334368 + ], + [ + 34.1660656, + -1.4337317 + ], + [ + 34.1651834, + -1.4340894 + ], + [ + 34.1630265, + -1.4350602 + ], + [ + 34.1628638, + -1.43513 + ], + [ + 34.1610603, + -1.4360506 + ], + [ + 34.1599948, + -1.4365945 + ], + [ + 34.1582536, + -1.4374374 + ], + [ + 34.157339, + -1.4378879 + ] + ] + }, + "id": "way/472788905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/473939123", + "highway": "trunk", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2133302, + -1.4122272 + ], + [ + 34.2135596, + -1.411479 + ], + [ + 34.2138419, + -1.4108665 + ], + [ + 34.2143374, + -1.4100123 + ], + [ + 34.2146766, + -1.4095652 + ], + [ + 34.2150556, + -1.4091322 + ], + [ + 34.2154935, + -1.4087225 + ], + [ + 34.2167261, + -1.4077057 + ], + [ + 34.2173147, + -1.4071003 + ], + [ + 34.217841, + -1.4064401 + ], + [ + 34.2183178, + -1.4056952 + ], + [ + 34.2188981, + -1.4045385 + ], + [ + 34.2190053, + -1.4043187 + ], + [ + 34.2191058, + -1.4040947 + ], + [ + 34.2195527, + -1.4031509 + ], + [ + 34.2204017, + -1.4013929 + ], + [ + 34.2209134, + -1.4002922 + ], + [ + 34.2214941, + -1.3991511 + ], + [ + 34.2217067, + -1.3987966 + ], + [ + 34.2219863, + -1.3984246 + ], + [ + 34.2224414, + -1.3978814 + ], + [ + 34.2227319, + -1.3976041 + ], + [ + 34.2230525, + -1.3973197 + ], + [ + 34.223359, + -1.3970805 + ], + [ + 34.2236889, + -1.39685 + ], + [ + 34.2240308, + -1.3966449 + ], + [ + 34.2244814, + -1.3964088 + ], + [ + 34.2250648, + -1.3961702 + ], + [ + 34.2254819, + -1.3960321 + ], + [ + 34.2272548, + -1.3955857 + ], + [ + 34.2276625, + -1.3954355 + ], + [ + 34.2279576, + -1.3953027 + ], + [ + 34.2283726, + -1.3950795 + ], + [ + 34.2288863, + -1.3947497 + ], + [ + 34.2294911, + -1.3942697 + ], + [ + 34.2299873, + -1.3937924 + ], + [ + 34.2303199, + -1.3934089 + ], + [ + 34.2307195, + -1.3928351 + ], + [ + 34.2310656, + -1.3922238 + ], + [ + 34.2311334, + -1.3920675 + ], + [ + 34.2312814, + -1.3917264 + ], + [ + 34.231588, + -1.3910447 + ], + [ + 34.2317381, + -1.3907068 + ], + [ + 34.2319234, + -1.3903278 + ], + [ + 34.2320787, + -1.3900697 + ], + [ + 34.2323462, + -1.3896705 + ], + [ + 34.2326025, + -1.3893654 + ], + [ + 34.232976, + -1.3889689 + ], + [ + 34.2333402, + -1.3886122 + ], + [ + 34.2333544, + -1.3885983 + ], + [ + 34.233613, + -1.3883767 + ], + [ + 34.2339248, + -1.38814 + ], + [ + 34.2343922, + -1.3878551 + ], + [ + 34.2348595, + -1.3875876 + ], + [ + 34.2352119, + -1.3874404 + ], + [ + 34.2357742, + -1.3872054 + ], + [ + 34.2367633, + -1.3868509 + ], + [ + 34.2377036, + -1.3865006 + ], + [ + 34.2402633, + -1.3855707 + ], + [ + 34.2415519, + -1.3851026 + ], + [ + 34.2426286, + -1.3846434 + ], + [ + 34.243452, + -1.3841902 + ], + [ + 34.2439343, + -1.383838 + ], + [ + 34.2443479, + -1.383536 + ], + [ + 34.244703, + -1.3832279 + ], + [ + 34.2450989, + -1.3828844 + ], + [ + 34.2457795, + -1.3823083 + ], + [ + 34.2466438, + -1.381659 + ], + [ + 34.2471, + -1.3813794 + ], + [ + 34.2473881, + -1.3811817 + ], + [ + 34.2479152, + -1.3809055 + ], + [ + 34.2488348, + -1.3805184 + ], + [ + 34.2490428, + -1.3804308 + ], + [ + 34.2491878, + -1.3803698 + ], + [ + 34.2502782, + -1.3799107 + ], + [ + 34.2513163, + -1.3794427 + ], + [ + 34.2520726, + -1.3790312 + ], + [ + 34.2525934, + -1.3786977 + ], + [ + 34.2527107, + -1.3786427 + ], + [ + 34.2527479, + -1.3786198 + ], + [ + 34.253358, + -1.378244 + ], + [ + 34.2537969, + -1.3778828 + ], + [ + 34.2540207, + -1.3776986 + ], + [ + 34.2543543, + -1.3774608 + ], + [ + 34.2544533, + -1.3773704 + ], + [ + 34.2546428, + -1.3772108 + ], + [ + 34.2548897, + -1.3769907 + ], + [ + 34.2558225, + -1.3760462 + ], + [ + 34.2563638, + -1.3754327 + ], + [ + 34.256447, + -1.3753407 + ], + [ + 34.2567556, + -1.3749995 + ], + [ + 34.2567635, + -1.3749908 + ], + [ + 34.2575059, + -1.3740526 + ], + [ + 34.2581034, + -1.3732975 + ], + [ + 34.2581357, + -1.3732566 + ], + [ + 34.258926, + -1.3722957 + ], + [ + 34.2590145, + -1.3721881 + ], + [ + 34.2592481, + -1.3718831 + ], + [ + 34.2593001, + -1.3718152 + ], + [ + 34.2594753, + -1.3716142 + ], + [ + 34.2595376, + -1.3715466 + ], + [ + 34.2599892, + -1.3709748 + ], + [ + 34.2606998, + -1.3700918 + ], + [ + 34.2610342, + -1.3697018 + ], + [ + 34.261391, + -1.3693351 + ], + [ + 34.261606, + -1.3691132 + ], + [ + 34.2619986, + -1.3687544 + ], + [ + 34.2623008, + -1.3685226 + ], + [ + 34.2625582, + -1.3683144 + ], + [ + 34.2628946, + -1.368042 + ], + [ + 34.2633185, + -1.3677145 + ], + [ + 34.2638646, + -1.3672926 + ], + [ + 34.2651838, + -1.3665168 + ], + [ + 34.2666806, + -1.365834 + ], + [ + 34.2692622, + -1.3647066 + ], + [ + 34.2711609, + -1.3638991 + ], + [ + 34.2712608, + -1.3638566 + ], + [ + 34.2727585, + -1.3632197 + ], + [ + 34.2744672, + -1.362423 + ], + [ + 34.2746823, + -1.3623078 + ], + [ + 34.2754803, + -1.361878 + ], + [ + 34.276354, + -1.3613017 + ], + [ + 34.2768369, + -1.3609443 + ], + [ + 34.2784955, + -1.3597344 + ], + [ + 34.2807236, + -1.3580455 + ], + [ + 34.2811222, + -1.357746 + ], + [ + 34.2815341, + -1.3574546 + ] + ] + }, + "id": "way/473939123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/473939124", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "oneway": "no", + "ref": "T4", + "source": "Africover", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.282053, + -1.357273 + ], + [ + 34.2815341, + -1.3574546 + ] + ] + }, + "id": "way/473939124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474074913", + "bridge": "yes", + "bridge:structure": "beam", + "highway": "secondary", + "lane_markings": "no", + "layer": "1", + "maxweight:signed": "no", + "ref": "C12", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3727056, + -1.4648831 + ], + [ + 35.3727066, + -1.4651958 + ] + ] + }, + "id": "way/474074913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474661351", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2139277, + -3.2311823 + ], + [ + 34.2127379, + -3.2314439 + ], + [ + 34.2121081, + -3.2315744 + ], + [ + 34.2115971, + -3.2317049 + ], + [ + 34.2113355, + -3.2317449 + ], + [ + 34.2111455, + -3.2317256 + ], + [ + 34.2109296, + -3.2316573 + ], + [ + 34.2107324, + -3.2314899 + ], + [ + 34.2106466, + -3.2313413 + ], + [ + 34.2105782, + -3.2312047 + ], + [ + 34.2103824, + -3.2306263 + ], + [ + 34.2102993, + -3.2303759 + ], + [ + 34.2097765, + -3.2290392 + ], + [ + 34.209724, + -3.2289062 + ], + [ + 34.2095075, + -3.2284785 + ], + [ + 34.2092203, + -3.2279318 + ], + [ + 34.2091595, + -3.2278176 + ], + [ + 34.2091252, + -3.2276945 + ], + [ + 34.2089826, + -3.2270301 + ], + [ + 34.2089611, + -3.2269474 + ], + [ + 34.2088281, + -3.2264368 + ], + [ + 34.2087568, + -3.2259859 + ], + [ + 34.2087093, + -3.2255588 + ], + [ + 34.2087255, + -3.2253689 + ], + [ + 34.2087338, + -3.2252714 + ], + [ + 34.2087461, + -3.2250922 + ], + [ + 34.2087641, + -3.2249635 + ], + [ + 34.2089044, + -3.2244937 + ], + [ + 34.2091846, + -3.2238383 + ], + [ + 34.2097148, + -3.2228685 + ], + [ + 34.2098026, + -3.22264 + ], + [ + 34.209862, + -3.2222603 + ], + [ + 34.2098992, + -3.2215729 + ], + [ + 34.2098739, + -3.2213704 + ], + [ + 34.2097714, + -3.2211718 + ], + [ + 34.2095411, + -3.2208958 + ], + [ + 34.2093035, + -3.2206941 + ], + [ + 34.2091727, + -3.220611 + ], + [ + 34.209019, + -3.220552 + ] + ] + }, + "id": "way/474661351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474663092", + "highway": "secondary", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2437564, + -1.8560241 + ], + [ + 35.2435505, + -1.8566659 + ], + [ + 35.2434424, + -1.8569744 + ], + [ + 35.2433337, + -1.8571222 + ], + [ + 35.2430064, + -1.8572823 + ], + [ + 35.2425294, + -1.8575504 + ], + [ + 35.2413798, + -1.858551 + ], + [ + 35.2406605, + -1.8590213 + ], + [ + 35.2401385, + -1.8593082 + ], + [ + 35.2393809, + -1.8596596 + ], + [ + 35.2393019, + -1.8596865 + ], + [ + 35.2383717, + -1.8600027 + ], + [ + 35.2375396, + -1.8603538 + ], + [ + 35.2370159, + -1.8606282 + ], + [ + 35.2354201, + -1.8615639 + ], + [ + 35.233334, + -1.862761 + ], + [ + 35.2329665, + -1.8629754 + ], + [ + 35.2324462, + -1.8632167 + ], + [ + 35.2297452, + -1.8643668 + ], + [ + 35.228793, + -1.8648439 + ], + [ + 35.2277872, + -1.8652353 + ], + [ + 35.2254755, + -1.866231 + ], + [ + 35.2247208, + -1.866487 + ], + [ + 35.222996, + -1.8668574 + ], + [ + 35.2225854, + -1.8670277 + ], + [ + 35.222183, + -1.8671454 + ] + ] + }, + "id": "way/474663092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474702043", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1308051, + -1.4051991 + ], + [ + 34.1302428, + -1.4055883 + ], + [ + 34.1290793, + -1.4062241 + ], + [ + 34.1266733, + -1.407471 + ], + [ + 34.125371, + -1.408033 + ], + [ + 34.1228377, + -1.409352 + ], + [ + 34.1215046, + -1.4100686 + ] + ] + }, + "id": "way/474702043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474702044", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1625735, + -1.2921409 + ], + [ + 34.1629429, + -1.2920937 + ], + [ + 34.1633633, + -1.2920098 + ], + [ + 34.1637931, + -1.2918169 + ], + [ + 34.1643501, + -1.2915179 + ], + [ + 34.1652887, + -1.2910415 + ], + [ + 34.1657323, + -1.2908164 + ], + [ + 34.1660495, + -1.2906497 + ], + [ + 34.1675261, + -1.2899388 + ], + [ + 34.1690817, + -1.2892934 + ], + [ + 34.1693848, + -1.2891701 + ], + [ + 34.1699052, + -1.2889904 + ], + [ + 34.1702726, + -1.2888376 + ], + [ + 34.171158, + -1.2883215 + ], + [ + 34.1727242, + -1.2874619 + ], + [ + 34.1728637, + -1.2873922 + ], + [ + 34.1733465, + -1.2871026 + ], + [ + 34.1740733, + -1.2867513 + ], + [ + 34.1742492, + -1.2866689 + ], + [ + 34.1743349, + -1.2866387 + ], + [ + 34.1744395, + -1.2866119 + ], + [ + 34.1745548, + -1.2865891 + ] + ] + }, + "id": "way/474702044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474705778", + "highway": "trunk", + "note": "New T36 alignment", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8859752, + -2.3392298 + ], + [ + 33.8855998, + -2.3390098 + ], + [ + 33.885248, + -2.3388078 + ], + [ + 33.884878, + -2.338501 + ], + [ + 33.8845775, + -2.3381955 + ], + [ + 33.8842584, + -2.3377855 + ], + [ + 33.8839686, + -2.3372897 + ], + [ + 33.8838481, + -2.3370468 + ], + [ + 33.8835824, + -2.3364562 + ], + [ + 33.8834161, + -2.3361158 + ], + [ + 33.8829959, + -2.3353588 + ], + [ + 33.8826222, + -2.3346419 + ], + [ + 33.8822682, + -2.3340951 + ], + [ + 33.8819248, + -2.3337575 + ], + [ + 33.8817654, + -2.3336392 + ], + [ + 33.8814045, + -2.3333421 + ], + [ + 33.8810286, + -2.3331075 + ], + [ + 33.8805945, + -2.3329213 + ], + [ + 33.8797362, + -2.3326319 + ], + [ + 33.8788369, + -2.332353 + ], + [ + 33.8786472, + -2.3322942 + ], + [ + 33.8781161, + -2.3321281 + ], + [ + 33.8777348, + -2.3319631 + ], + [ + 33.8774349, + -2.331797 + ], + [ + 33.8772836, + -2.3317005 + ], + [ + 33.8771322, + -2.3315851 + ], + [ + 33.8769574, + -2.3314634 + ], + [ + 33.8764679, + -2.3309569 + ], + [ + 33.8762399, + -2.3306875 + ], + [ + 33.8759648, + -2.3303091 + ], + [ + 33.8758469, + -2.3300859 + ], + [ + 33.8756836, + -2.3296148 + ] + ] + }, + "id": "way/474705778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/474832386", + "highway": "secondary", + "ref": "R365", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8254948, + -2.6986421 + ], + [ + 33.8280685, + -2.6997917 + ], + [ + 33.8283098, + -2.699915 + ], + [ + 33.828598, + -2.7000817 + ], + [ + 33.8313142, + -2.701727 + ], + [ + 33.8326372, + -2.7025159 + ], + [ + 33.8337334, + -2.7031696 + ], + [ + 33.8351816, + -2.7040222 + ] + ] + }, + "id": "way/474832386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/475511257", + "highway": "secondary", + "name": "Nyamongo Road", + "name:en": "Nyamongo Road", + "name:sw": "Barabara ya Nyamongo", + "ref": "R184", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5308164, + -1.578714 + ], + [ + 34.5307481, + -1.578393 + ], + [ + 34.5306408, + -1.577972 + ], + [ + 34.5305711, + -1.5776288 + ], + [ + 34.5305201, + -1.57735 + ], + [ + 34.5305255, + -1.5771194 + ], + [ + 34.5305845, + -1.57687 + ], + [ + 34.5310271, + -1.5756501 + ], + [ + 34.5314194, + -1.5746084 + ], + [ + 34.5314857, + -1.5743283 + ], + [ + 34.5315192, + -1.5741444 + ], + [ + 34.5315287, + -1.5739301 + ], + [ + 34.5315192, + -1.5737545 + ], + [ + 34.5315052, + -1.5736425 + ], + [ + 34.5314817, + -1.5734944 + ], + [ + 34.5314442, + -1.5733389 + ], + [ + 34.5313986, + -1.5731633 + ], + [ + 34.5313409, + -1.5729381 + ], + [ + 34.531293, + -1.5727684 + ], + [ + 34.5312014, + -1.5724018 + ], + [ + 34.5310941, + -1.5719769 + ], + [ + 34.5309842, + -1.5715666 + ], + [ + 34.5308859, + -1.5712151 + ], + [ + 34.5307079, + -1.5705263 + ], + [ + 34.5305041, + -1.569797 + ], + [ + 34.5300856, + -1.5682956 + ], + [ + 34.5293051, + -1.5652819 + ], + [ + 34.5290856, + -1.5643392 + ], + [ + 34.5288491, + -1.5632657 + ], + [ + 34.5288062, + -1.5630511 + ], + [ + 34.5287552, + -1.5628287 + ], + [ + 34.5287177, + -1.5627307 + ], + [ + 34.5286855, + -1.562653 + ], + [ + 34.528648, + -1.5625806 + ], + [ + 34.5283717, + -1.5621476 + ], + [ + 34.5276367, + -1.5610818 + ], + [ + 34.5275389, + -1.5609558 + ], + [ + 34.5274329, + -1.5608311 + ], + [ + 34.5265451, + -1.5599598 + ], + [ + 34.52544, + -1.5589194 + ], + [ + 34.5253247, + -1.5587907 + ], + [ + 34.525255, + -1.5586325 + ], + [ + 34.5251638, + -1.5583241 + ], + [ + 34.525027, + -1.5576699 + ], + [ + 34.5244879, + -1.5551791 + ], + [ + 34.5244536, + -1.5549072 + ], + [ + 34.5244262, + -1.5540476 + ], + [ + 34.5244101, + -1.5537741 + ], + [ + 34.5243484, + -1.5535033 + ], + [ + 34.524204, + -1.5532695 + ], + [ + 34.5236764, + -1.5525165 + ], + [ + 34.5228383, + -1.5513798 + ], + [ + 34.5226076, + -1.5511411 + ], + [ + 34.5218244, + -1.5504119 + ], + [ + 34.5216984, + -1.5503261 + ], + [ + 34.5215374, + -1.5502778 + ], + [ + 34.5213872, + -1.5502644 + ], + [ + 34.5210171, + -1.550444 + ], + [ + 34.5203814, + -1.5509669 + ], + [ + 34.5195445, + -1.551597 + ], + [ + 34.519279, + -1.5517551 + ], + [ + 34.5190483, + -1.5518356 + ], + [ + 34.5187774, + -1.5518544 + ], + [ + 34.5163524, + -1.5514185 + ], + [ + 34.5151645, + -1.5511411 + ], + [ + 34.5145986, + -1.5510393 + ], + [ + 34.5141721, + -1.5510124 + ], + [ + 34.5133969, + -1.5510956 + ], + [ + 34.5123158, + -1.5512097 + ], + [ + 34.5120305, + -1.551238 + ], + [ + 34.5087728, + -1.5515541 + ], + [ + 34.5054576, + -1.5518369 + ], + [ + 34.5052953, + -1.5518704 + ], + [ + 34.5051438, + -1.5519066 + ], + [ + 34.5051062, + -1.5519388 + ], + [ + 34.5049493, + -1.5520728 + ], + [ + 34.5048433, + -1.5522069 + ], + [ + 34.5046918, + -1.5523678 + ], + [ + 34.5042985, + -1.5532394 + ], + [ + 34.5041764, + -1.5536715 + ], + [ + 34.5036709, + -1.5545713 + ], + [ + 34.502998, + -1.5559392 + ], + [ + 34.5025948, + -1.556494 + ], + [ + 34.5022241, + -1.5570311 + ], + [ + 34.5016053, + -1.5578998 + ], + [ + 34.5013505, + -1.5582147 + ], + [ + 34.5007938, + -1.5587016 + ], + [ + 34.5003126, + -1.5589821 + ], + [ + 34.5001896, + -1.5590371 + ], + [ + 34.4999707, + -1.5591542 + ], + [ + 34.4993604, + -1.5592858 + ], + [ + 34.4982907, + -1.5593497 + ], + [ + 34.4978267, + -1.5593148 + ], + [ + 34.4967914, + -1.5590025 + ], + [ + 34.4962039, + -1.5587008 + ], + [ + 34.4953269, + -1.5585199 + ], + [ + 34.4943076, + -1.5583241 + ], + [ + 34.4941359, + -1.5582852 + ], + [ + 34.4935915, + -1.5582893 + ], + [ + 34.4931597, + -1.558351 + ], + [ + 34.492642, + -1.5585453 + ], + [ + 34.4922158, + -1.5587657 + ], + [ + 34.4919336, + -1.5589057 + ], + [ + 34.4903648, + -1.5598444 + ], + [ + 34.4899651, + -1.5601272 + ], + [ + 34.4895404, + -1.5603805 + ], + [ + 34.4891665, + -1.5607652 + ], + [ + 34.4882914, + -1.5618741 + ], + [ + 34.4879794, + -1.5622786 + ], + [ + 34.4876583, + -1.5625731 + ], + [ + 34.487356, + -1.5628018 + ], + [ + 34.4866794, + -1.5633192 + ], + [ + 34.4863093, + -1.5636128 + ], + [ + 34.4858667, + -1.5638662 + ], + [ + 34.4857121, + -1.5639064 + ], + [ + 34.4855973, + -1.5639183 + ], + [ + 34.4854745, + -1.5639249 + ], + [ + 34.4853048, + -1.5639148 + ], + [ + 34.4851908, + -1.5638702 + ], + [ + 34.4846996, + -1.5635071 + ], + [ + 34.4843968, + -1.5633313 + ], + [ + 34.4842788, + -1.5632991 + ], + [ + 34.4837343, + -1.5632401 + ], + [ + 34.483464, + -1.5632063 + ], + [ + 34.4832891, + -1.5631597 + ], + [ + 34.4821465, + -1.5626181 + ], + [ + 34.481889, + -1.5625873 + ], + [ + 34.4815501, + -1.5626177 + ], + [ + 34.4811423, + -1.5626629 + ], + [ + 34.479775, + -1.5629089 + ], + [ + 34.4785086, + -1.5631403 + ], + [ + 34.4781645, + -1.5631911 + ], + [ + 34.4774271, + -1.5632927 + ], + [ + 34.4770879, + -1.5633166 + ], + [ + 34.4767496, + -1.5632038 + ], + [ + 34.4765656, + -1.5631078 + ], + [ + 34.4752119, + -1.5624017 + ], + [ + 34.4742792, + -1.5619637 + ], + [ + 34.473719, + -1.5616314 + ], + [ + 34.4733605, + -1.5615005 + ], + [ + 34.4717476, + -1.5610831 + ], + [ + 34.4714552, + -1.5609906 + ], + [ + 34.4709885, + -1.560874 + ], + [ + 34.469473, + -1.5602559 + ], + [ + 34.4670947, + -1.5592598 + ], + [ + 34.4646396, + -1.5582582 + ], + [ + 34.4644328, + -1.5581685 + ], + [ + 34.4639021, + -1.5579112 + ], + [ + 34.4636211, + -1.5577836 + ], + [ + 34.4632016, + -1.5577026 + ], + [ + 34.4627253, + -1.5575452 + ], + [ + 34.4626574, + -1.5575271 + ], + [ + 34.4625468, + -1.5575042 + ], + [ + 34.4625091, + -1.5574981 + ], + [ + 34.4622523, + -1.557469 + ], + [ + 34.4619932, + -1.5574318 + ], + [ + 34.4618771, + -1.5574151 + ], + [ + 34.4615655, + -1.5573704 + ], + [ + 34.4613054, + -1.5573331 + ], + [ + 34.4609967, + -1.5572462 + ], + [ + 34.4605913, + -1.5570489 + ], + [ + 34.4601975, + -1.5569609 + ], + [ + 34.4596454, + -1.5567382 + ], + [ + 34.4595435, + -1.5567181 + ], + [ + 34.4594563, + -1.5567596 + ], + [ + 34.4591921, + -1.5568783 + ], + [ + 34.4590466, + -1.5569969 + ], + [ + 34.4585524, + -1.5575251 + ], + [ + 34.4579619, + -1.5581624 + ], + [ + 34.4573688, + -1.558813 + ], + [ + 34.4569141, + -1.5593326 + ], + [ + 34.4567308, + -1.559592 + ], + [ + 34.4566575, + -1.5597389 + ], + [ + 34.4564885, + -1.5600575 + ], + [ + 34.4560868, + -1.5606639 + ], + [ + 34.4557708, + -1.5613132 + ], + [ + 34.4556214, + -1.5615494 + ], + [ + 34.4555479, + -1.5616655 + ], + [ + 34.4553405, + -1.5620323 + ], + [ + 34.4552193, + -1.562282 + ], + [ + 34.4549006, + -1.5624854 + ], + [ + 34.4546351, + -1.5626141 + ], + [ + 34.4545519, + -1.5626797 + ], + [ + 34.4538411, + -1.562921 + ], + [ + 34.4525124, + -1.5634333 + ], + [ + 34.4511649, + -1.5640117 + ], + [ + 34.449324, + -1.564771 + ], + [ + 34.4487691, + -1.5650151 + ], + [ + 34.4485169, + -1.5651518 + ], + [ + 34.4483238, + -1.56531 + ], + [ + 34.4480677, + -1.5655621 + ], + [ + 34.4479389, + -1.5657443 + ], + [ + 34.4464087, + -1.5680245 + ], + [ + 34.4462758, + -1.5681177 + ], + [ + 34.4448279, + -1.5699758 + ], + [ + 34.4444536, + -1.5705334 + ], + [ + 34.4440672, + -1.5709285 + ], + [ + 34.4439116, + -1.5712408 + ], + [ + 34.4437741, + -1.5715661 + ], + [ + 34.4436457, + -1.5717959 + ], + [ + 34.4432749, + -1.5734165 + ], + [ + 34.4429448, + -1.5747833 + ], + [ + 34.4428559, + -1.5752456 + ], + [ + 34.4426483, + -1.5765228 + ], + [ + 34.4424429, + -1.5771591 + ], + [ + 34.4422187, + -1.5774801 + ], + [ + 34.4420193, + -1.5778138 + ], + [ + 34.4416961, + -1.5781637 + ], + [ + 34.4412705, + -1.5784995 + ], + [ + 34.4402966, + -1.5793365 + ], + [ + 34.4399747, + -1.579661 + ], + [ + 34.4395634, + -1.5799232 + ], + [ + 34.4393784, + -1.5800976 + ], + [ + 34.4384739, + -1.5805557 + ], + [ + 34.4377699, + -1.580957 + ], + [ + 34.4376237, + -1.5810057 + ], + [ + 34.4373224, + -1.5811498 + ], + [ + 34.4362515, + -1.5816847 + ], + [ + 34.4359486, + -1.5818085 + ], + [ + 34.4348336, + -1.5823424 + ], + [ + 34.4344203, + -1.5825898 + ], + [ + 34.4340138, + -1.5828133 + ], + [ + 34.4325015, + -1.5835234 + ], + [ + 34.4319865, + -1.5836762 + ], + [ + 34.4318095, + -1.5837271 + ], + [ + 34.4314769, + -1.5837661 + ], + [ + 34.4308506, + -1.5838194 + ], + [ + 34.4297388, + -1.5838518 + ], + [ + 34.4282595, + -1.5837614 + ], + [ + 34.4278344, + -1.5837449 + ], + [ + 34.4273942, + -1.5837409 + ], + [ + 34.4270829, + -1.5837264 + ], + [ + 34.4265797, + -1.5836877 + ], + [ + 34.4258891, + -1.5836858 + ], + [ + 34.4237226, + -1.5837566 + ], + [ + 34.4232613, + -1.5838009 + ], + [ + 34.4229984, + -1.5838049 + ], + [ + 34.4226712, + -1.5838706 + ], + [ + 34.4223708, + -1.5839966 + ], + [ + 34.422143, + -1.5841572 + ], + [ + 34.4219699, + -1.584235 + ], + [ + 34.4218438, + -1.5842993 + ], + [ + 34.4215828, + -1.5845767 + ], + [ + 34.4212305, + -1.5849386 + ], + [ + 34.4209614, + -1.5852139 + ], + [ + 34.4201079, + -1.5863405 + ], + [ + 34.4186705, + -1.5882377 + ], + [ + 34.4184315, + -1.5885487 + ], + [ + 34.4179693, + -1.5891579 + ], + [ + 34.417575, + -1.5895574 + ], + [ + 34.4165824, + -1.5907025 + ], + [ + 34.416374, + -1.590862 + ], + [ + 34.4161633, + -1.5909456 + ], + [ + 34.4158899, + -1.5910295 + ], + [ + 34.4157207, + -1.5910554 + ], + [ + 34.4156057, + -1.591081 + ], + [ + 34.4154392, + -1.591113 + ], + [ + 34.4153001, + -1.5911642 + ], + [ + 34.4143966, + -1.5913431 + ], + [ + 34.4137716, + -1.5914838 + ], + [ + 34.4133237, + -1.5915361 + ], + [ + 34.4129616, + -1.5916044 + ], + [ + 34.4121784, + -1.591756 + ], + [ + 34.4113469, + -1.5919705 + ], + [ + 34.4100809, + -1.5922895 + ], + [ + 34.4094452, + -1.5924088 + ], + [ + 34.409, + -1.5924987 + ], + [ + 34.408485, + -1.5925294 + ], + [ + 34.4080733, + -1.5926012 + ], + [ + 34.4079164, + -1.5926421 + ], + [ + 34.4078815, + -1.5926568 + ], + [ + 34.4074792, + -1.5928231 + ], + [ + 34.4072405, + -1.5929839 + ], + [ + 34.4070607, + -1.593189 + ], + [ + 34.4055436, + -1.5946764 + ], + [ + 34.4042539, + -1.5960116 + ], + [ + 34.4042074, + -1.5960597 + ], + [ + 34.4040079, + -1.5962329 + ], + [ + 34.4036017, + -1.5966702 + ], + [ + 34.4025374, + -1.5977391 + ], + [ + 34.4020047, + -1.5983449 + ], + [ + 34.401345, + -1.5989924 + ], + [ + 34.4000253, + -1.600274 + ], + [ + 34.398711, + -1.6015596 + ], + [ + 34.3963172, + -1.6037408 + ], + [ + 34.3960189, + -1.6040192 + ], + [ + 34.3950569, + -1.6049236 + ], + [ + 34.394445, + -1.6054179 + ], + [ + 34.3941573, + -1.6056133 + ], + [ + 34.3938603, + -1.6057369 + ], + [ + 34.3935438, + -1.6057637 + ], + [ + 34.3921423, + -1.6058066 + ], + [ + 34.391632, + -1.6058241 + ], + [ + 34.3914031, + -1.6058456 + ], + [ + 34.3911367, + -1.6059185 + ], + [ + 34.3908797, + -1.6060348 + ], + [ + 34.3905564, + -1.6062196 + ], + [ + 34.3902838, + -1.606456 + ], + [ + 34.3899509, + -1.606867 + ], + [ + 34.3896264, + -1.607115 + ], + [ + 34.3892804, + -1.6074435 + ], + [ + 34.3891006, + -1.6076083 + ], + [ + 34.3888029, + -1.6077491 + ], + [ + 34.3884194, + -1.6079207 + ], + [ + 34.3880117, + -1.6081084 + ], + [ + 34.3878937, + -1.608162 + ], + [ + 34.3868985, + -1.6085708 + ], + [ + 34.3844819, + -1.6095401 + ], + [ + 34.3839428, + -1.6097358 + ], + [ + 34.3835565, + -1.6099021 + ], + [ + 34.3829437, + -1.610176 + ], + [ + 34.3821258, + -1.6104887 + ], + [ + 34.3811381, + -1.6109213 + ], + [ + 34.3800697, + -1.6114276 + ], + [ + 34.3793679, + -1.6117358 + ], + [ + 34.3788671, + -1.6119672 + ], + [ + 34.3787071, + -1.6120598 + ], + [ + 34.3777142, + -1.6125699 + ], + [ + 34.3764701, + -1.6131395 + ], + [ + 34.3758908, + -1.6134278 + ], + [ + 34.3756628, + -1.6135163 + ], + [ + 34.3753489, + -1.6136226 + ], + [ + 34.3747348, + -1.6137415 + ], + [ + 34.3741205, + -1.6138581 + ], + [ + 34.3734741, + -1.6139747 + ], + [ + 34.3723154, + -1.6142777 + ], + [ + 34.3718487, + -1.6144091 + ], + [ + 34.3713874, + -1.6145646 + ], + [ + 34.3703172, + -1.6148461 + ], + [ + 34.3693355, + -1.6150847 + ], + [ + 34.3690189, + -1.6151906 + ], + [ + 34.367179, + -1.6156746 + ], + [ + 34.3666372, + -1.615822 + ], + [ + 34.3661195, + -1.6159695 + ], + [ + 34.3657252, + -1.6160834 + ], + [ + 34.3653095, + -1.6162001 + ], + [ + 34.3647421, + -1.6163479 + ], + [ + 34.3637752, + -1.6165979 + ], + [ + 34.3630165, + -1.6168 + ], + [ + 34.3626575, + -1.6169097 + ], + [ + 34.3621984, + -1.6170907 + ], + [ + 34.3617043, + -1.6173256 + ], + [ + 34.3613681, + -1.6175351 + ], + [ + 34.3610664, + -1.6177028 + ], + [ + 34.3609299, + -1.6177995 + ], + [ + 34.3609396, + -1.6179661 + ], + [ + 34.3609849, + -1.6181083 + ], + [ + 34.3610549, + -1.6183806 + ], + [ + 34.3617073, + -1.6195354 + ], + [ + 34.3619159, + -1.6199469 + ], + [ + 34.3621799, + -1.6206333 + ], + [ + 34.3622525, + -1.6208859 + ], + [ + 34.362385, + -1.6212494 + ], + [ + 34.3624865, + -1.6214922 + ], + [ + 34.3626284, + -1.621707 + ], + [ + 34.362717, + -1.6219078 + ], + [ + 34.3627831, + -1.6220738 + ], + [ + 34.3629119, + -1.6225608 + ], + [ + 34.3629312, + -1.6227842 + ], + [ + 34.362984, + -1.6230584 + ], + [ + 34.3629893, + -1.623234 + ], + [ + 34.362734, + -1.6234173 + ], + [ + 34.3618736, + -1.6242261 + ], + [ + 34.3616603, + -1.6244781 + ], + [ + 34.3615668, + -1.6245562 + ], + [ + 34.3615386, + -1.6245789 + ], + [ + 34.3613814, + -1.6246336 + ], + [ + 34.3612329, + -1.624646 + ], + [ + 34.3606895, + -1.6246417 + ], + [ + 34.3604794, + -1.6246647 + ], + [ + 34.360339, + -1.6246933 + ], + [ + 34.3602056, + -1.6247343 + ], + [ + 34.360074, + -1.6247929 + ], + [ + 34.3600062, + -1.6248185 + ], + [ + 34.3599402, + -1.6248511 + ], + [ + 34.3598117, + -1.62492 + ], + [ + 34.3595596, + -1.6250974 + ], + [ + 34.3590622, + -1.6254795 + ], + [ + 34.3587718, + -1.6256101 + ], + [ + 34.3580942, + -1.6260848 + ], + [ + 34.3578511, + -1.6262904 + ], + [ + 34.3573264, + -1.6268108 + ], + [ + 34.3566824, + -1.6276203 + ], + [ + 34.356267, + -1.6281745 + ], + [ + 34.3556217, + -1.6289492 + ], + [ + 34.3550151, + -1.6294956 + ], + [ + 34.3549068, + -1.6295997 + ], + [ + 34.3548544, + -1.6296642 + ], + [ + 34.3547947, + -1.6297348 + ], + [ + 34.3547783, + -1.6298196 + ], + [ + 34.3547911, + -1.6299801 + ], + [ + 34.3548035, + -1.6301507 + ], + [ + 34.3548286, + -1.6303278 + ], + [ + 34.3548119, + -1.6305154 + ] + ] + }, + "id": "way/475511257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/475511258", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R184", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5308502, + -1.5789196 + ], + [ + 34.5308164, + -1.578714 + ] + ] + }, + "id": "way/475511258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/477689302", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6766764, + -1.8389232 + ], + [ + 34.6762922, + -1.8390035 + ], + [ + 34.6757226, + -1.8391549 + ], + [ + 34.6742229, + -1.839627 + ] + ] + }, + "id": "way/477689302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/478177688", + "access": "permissive", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "smoothness": "bad", + "source": "survey", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3972511, + -3.079607 + ], + [ + 35.3974151, + -3.0797154 + ] + ] + }, + "id": "way/478177688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/478177689", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "smoothness": "bad", + "source": "survey", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3974151, + -3.0797154 + ], + [ + 35.3976791, + -3.079939 + ], + [ + 35.3977921, + -3.0800925 + ], + [ + 35.3979095, + -3.0803133 + ], + [ + 35.3980429, + -3.0806394 + ], + [ + 35.3981227, + -3.0809057 + ], + [ + 35.3982509, + -3.0815213 + ], + [ + 35.3986961, + -3.0839463 + ], + [ + 35.3990015, + -3.0853204 + ], + [ + 35.3994398, + -3.0868492 + ], + [ + 35.3996422, + -3.0877352 + ], + [ + 35.3998864, + -3.0888231 + ], + [ + 35.4001368, + -3.0902087 + ], + [ + 35.4004363, + -3.0918951 + ] + ] + }, + "id": "way/478177689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/478177697", + "access": "permissive", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "lanes": "2", + "layer": "1", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4004363, + -3.0918951 + ], + [ + 35.400447, + -3.0919674 + ] + ] + }, + "id": "way/478177697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479323271", + "highway": "secondary", + "ref": "R184", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3548119, + -1.6305154 + ], + [ + 34.3546088, + -1.6306487 + ], + [ + 34.3543071, + -1.6307225 + ], + [ + 34.3541515, + -1.6307479 + ], + [ + 34.3537679, + -1.6307841 + ], + [ + 34.3536271, + -1.6307801 + ], + [ + 34.3534863, + -1.6307587 + ], + [ + 34.3533039, + -1.6307131 + ], + [ + 34.3531296, + -1.6306367 + ], + [ + 34.3529552, + -1.6305857 + ], + [ + 34.3526843, + -1.6304785 + ], + [ + 34.3525676, + -1.630445 + ], + [ + 34.3525073, + -1.6305227 + ], + [ + 34.3524174, + -1.6306501 + ], + [ + 34.3522806, + -1.6308713 + ], + [ + 34.3521667, + -1.6310496 + ], + [ + 34.3520808, + -1.6311447 + ], + [ + 34.3519749, + -1.6312734 + ], + [ + 34.3519253, + -1.6313204 + ], + [ + 34.3518408, + -1.6313994 + ], + [ + 34.3517174, + -1.6314919 + ], + [ + 34.3514518, + -1.6316515 + ], + [ + 34.3511863, + -1.6317949 + ], + [ + 34.3510871, + -1.6318579 + ], + [ + 34.3510388, + -1.6318968 + ], + [ + 34.3509999, + -1.6319451 + ], + [ + 34.350957, + -1.6320067 + ], + [ + 34.3509342, + -1.6320898 + ], + [ + 34.3509369, + -1.6322467 + ], + [ + 34.3509422, + -1.6324612 + ], + [ + 34.3509811, + -1.632669 + ], + [ + 34.3510952, + -1.6330477 + ], + [ + 34.3511408, + -1.633267 + ], + [ + 34.3511502, + -1.6334311 + ], + [ + 34.3511595, + -1.6335913 + ], + [ + 34.3511447, + -1.6337696 + ], + [ + 34.3511192, + -1.6339479 + ], + [ + 34.351083, + -1.6340484 + ], + [ + 34.3510334, + -1.6341422 + ], + [ + 34.3509677, + -1.6342294 + ], + [ + 34.3507075, + -1.6344425 + ], + [ + 34.3497272, + -1.6351048 + ], + [ + 34.3491371, + -1.635519 + ], + [ + 34.3487361, + -1.6357978 + ], + [ + 34.3476056, + -1.6365619 + ], + [ + 34.3471751, + -1.6368555 + ], + [ + 34.346825, + -1.6371035 + ], + [ + 34.3465206, + -1.6373247 + ], + [ + 34.3463396, + -1.6374279 + ], + [ + 34.3458085, + -1.637625 + ], + [ + 34.3456221, + -1.6376961 + ], + [ + 34.3454477, + -1.6377416 + ], + [ + 34.3450588, + -1.637755 + ], + [ + 34.3449549, + -1.6377557 + ], + [ + 34.3447731, + -1.6376987 + ], + [ + 34.3445545, + -1.6375969 + ], + [ + 34.3442246, + -1.6373703 + ], + [ + 34.3438987, + -1.6371491 + ], + [ + 34.3437311, + -1.6370177 + ], + [ + 34.3424329, + -1.6361692 + ], + [ + 34.3422157, + -1.6360941 + ], + [ + 34.3420078, + -1.6361705 + ], + [ + 34.3407793, + -1.6368113 + ], + [ + 34.3404561, + -1.636999 + ], + [ + 34.3402845, + -1.6371183 + ], + [ + 34.3400511, + -1.6373368 + ], + [ + 34.3382782, + -1.639424 + ], + [ + 34.3380824, + -1.6396358 + ], + [ + 34.3378812, + -1.639916 + ], + [ + 34.337672, + -1.6401345 + ], + [ + 34.3374172, + -1.6404992 + ], + [ + 34.3372691, + -1.6407752 + ], + [ + 34.3371463, + -1.6412257 + ], + [ + 34.3369587, + -1.6425095 + ], + [ + 34.3369415, + -1.6426646 + ], + [ + 34.3368968, + -1.6428907 + ], + [ + 34.3368236, + -1.6430042 + ], + [ + 34.3363389, + -1.6435985 + ], + [ + 34.3361565, + -1.6438103 + ], + [ + 34.3358803, + -1.6440382 + ], + [ + 34.3352714, + -1.644486 + ], + [ + 34.3336582, + -1.6455584 + ], + [ + 34.3329276, + -1.6460718 + ], + [ + 34.3325624, + -1.6463681 + ], + [ + 34.3321708, + -1.6466228 + ], + [ + 34.331814, + -1.6468239 + ], + [ + 34.3315418, + -1.6469325 + ], + [ + 34.3308142, + -1.6471952 + ], + [ + 34.3304662, + -1.6473547 + ], + [ + 34.329848, + -1.6476577 + ], + [ + 34.3295905, + -1.6477877 + ], + [ + 34.3293815, + -1.6479137 + ], + [ + 34.3291942, + -1.6479957 + ], + [ + 34.3288919, + -1.6482024 + ], + [ + 34.3288186, + -1.6482526 + ], + [ + 34.3287811, + -1.6482783 + ], + [ + 34.328699, + -1.6483616 + ], + [ + 34.3285254, + -1.6485379 + ], + [ + 34.3279006, + -1.6491723 + ], + [ + 34.3272079, + -1.6502009 + ], + [ + 34.3269299, + -1.6506138 + ], + [ + 34.326611, + -1.6512167 + ], + [ + 34.3265338, + -1.6513943 + ], + [ + 34.3263683, + -1.6521246 + ], + [ + 34.3261044, + -1.6544667 + ], + [ + 34.3260841, + -1.6546473 + ], + [ + 34.3259294, + -1.6555486 + ], + [ + 34.3257214, + -1.6566353 + ], + [ + 34.3256637, + -1.6569329 + ], + [ + 34.3255913, + -1.6571874 + ], + [ + 34.3254089, + -1.6574705 + ], + [ + 34.3252243, + -1.6576689 + ], + [ + 34.3239418, + -1.6586609 + ], + [ + 34.3227353, + -1.6595123 + ], + [ + 34.321106, + -1.6607598 + ], + [ + 34.3208948, + -1.6609318 + ], + [ + 34.3206969, + -1.6611271 + ], + [ + 34.3205118, + -1.6613679 + ], + [ + 34.3202862, + -1.6616613 + ], + [ + 34.3202332, + -1.6617303 + ], + [ + 34.3201215, + -1.6618756 + ], + [ + 34.3199548, + -1.6621092 + ], + [ + 34.3198883, + -1.6622024 + ], + [ + 34.3187959, + -1.6637413 + ], + [ + 34.3187605, + -1.6637895 + ], + [ + 34.3186032, + -1.6640036 + ], + [ + 34.3179528, + -1.6649152 + ], + [ + 34.3175621, + -1.6654628 + ], + [ + 34.3169322, + -1.6663456 + ], + [ + 34.3153721, + -1.6684897 + ], + [ + 34.3144816, + -1.6697552 + ], + [ + 34.3142268, + -1.6701118 + ], + [ + 34.3130843, + -1.6716978 + ], + [ + 34.3127146, + -1.6721899 + ], + [ + 34.312478, + -1.6725194 + ], + [ + 34.3117028, + -1.6733827 + ], + [ + 34.3113139, + -1.6737956 + ], + [ + 34.3104565, + -1.6749045 + ], + [ + 34.3094368, + -1.676224 + ], + [ + 34.3075377, + -1.6786815 + ], + [ + 34.3073989, + -1.6788123 + ], + [ + 34.3069374, + -1.6792138 + ], + [ + 34.3050972, + -1.6809824 + ], + [ + 34.3041616, + -1.6819197 + ], + [ + 34.3030529, + -1.6829975 + ], + [ + 34.3020881, + -1.683997 + ], + [ + 34.300757, + -1.685196 + ], + [ + 34.300126, + -1.6858336 + ], + [ + 34.2996547, + -1.6865193 + ], + [ + 34.2995783, + -1.6866305 + ], + [ + 34.2992248, + -1.687364 + ], + [ + 34.2989048, + -1.6880281 + ], + [ + 34.2982885, + -1.6893069 + ], + [ + 34.2981857, + -1.6895203 + ], + [ + 34.2975677, + -1.6908025 + ], + [ + 34.2974401, + -1.6910281 + ], + [ + 34.2973311, + -1.6911926 + ], + [ + 34.2972903, + -1.6912599 + ], + [ + 34.2963847, + -1.6925814 + ], + [ + 34.2957845, + -1.6934472 + ], + [ + 34.2951105, + -1.6944262 + ], + [ + 34.2949954, + -1.6945934 + ], + [ + 34.2939624, + -1.6957507 + ], + [ + 34.2925272, + -1.6974763 + ], + [ + 34.2921447, + -1.6978042 + ], + [ + 34.2918547, + -1.6979822 + ], + [ + 34.291688, + -1.6980637 + ], + [ + 34.2900851, + -1.6989345 + ], + [ + 34.2896645, + -1.6991793 + ], + [ + 34.2894405, + -1.6992575 + ], + [ + 34.289057, + -1.6993272 + ], + [ + 34.2883328, + -1.6993915 + ], + [ + 34.2858303, + -1.699547 + ], + [ + 34.2850685, + -1.6996301 + ], + [ + 34.2843255, + -1.6998071 + ], + [ + 34.2833626, + -1.7001583 + ], + [ + 34.2830193, + -1.7002495 + ], + [ + 34.2827994, + -1.7003192 + ], + [ + 34.282515, + -1.700346 + ], + [ + 34.2812195, + -1.7004371 + ], + [ + 34.2803854, + -1.7005256 + ], + [ + 34.2802218, + -1.700539 + ], + [ + 34.2796987, + -1.7007294 + ], + [ + 34.2793259, + -1.7009009 + ], + [ + 34.2791703, + -1.7009948 + ], + [ + 34.2790148, + -1.7011583 + ], + [ + 34.278588, + -1.7016755 + ], + [ + 34.2779466, + -1.7024799 + ], + [ + 34.2779122, + -1.7025278 + ], + [ + 34.2773545, + -1.7032844 + ], + [ + 34.277274, + -1.7034426 + ], + [ + 34.2771614, + -1.7036946 + ], + [ + 34.277105, + -1.7039278 + ], + [ + 34.2770326, + -1.7044077 + ], + [ + 34.2769468, + -1.7056142 + ], + [ + 34.2767993, + -1.7066678 + ], + [ + 34.2766598, + -1.7076705 + ], + [ + 34.276583, + -1.7080068 + ], + [ + 34.2765392, + -1.7081419 + ], + [ + 34.2762253, + -1.7087858 + ], + [ + 34.2760022, + -1.7091744 + ], + [ + 34.2754853, + -1.7097843 + ], + [ + 34.2749593, + -1.7103435 + ], + [ + 34.2747313, + -1.7105044 + ], + [ + 34.2737094, + -1.7109494 + ], + [ + 34.273307, + -1.7110942 + ], + [ + 34.2722771, + -1.7113971 + ], + [ + 34.2719901, + -1.7114695 + ], + [ + 34.2713168, + -1.7115071 + ], + [ + 34.2711908, + -1.7115392 + ], + [ + 34.2710277, + -1.7116439 + ], + [ + 34.2709163, + -1.7117594 + ], + [ + 34.2707951, + -1.7118744 + ], + [ + 34.270657, + -1.7119508 + ], + [ + 34.2705376, + -1.7119856 + ], + [ + 34.2703204, + -1.711987 + ], + [ + 34.2697513, + -1.7120078 + ], + [ + 34.2691308, + -1.7121103 + ], + [ + 34.2681237, + -1.7123073 + ], + [ + 34.2676717, + -1.7123704 + ], + [ + 34.2672881, + -1.7124226 + ], + [ + 34.2671768, + -1.7124508 + ], + [ + 34.2670684, + -1.7125009 + ], + [ + 34.2668094, + -1.7126492 + ], + [ + 34.2666176, + -1.7128141 + ], + [ + 34.2664929, + -1.7129494 + ], + [ + 34.2664627, + -1.712985 + ], + [ + 34.2658478, + -1.7137135 + ], + [ + 34.2652953, + -1.7145017 + ], + [ + 34.2650726, + -1.714794 + ], + [ + 34.2648232, + -1.7150594 + ], + [ + 34.2643458, + -1.715416 + ], + [ + 34.2633373, + -1.7162739 + ], + [ + 34.2623341, + -1.7170594 + ], + [ + 34.2614386, + -1.7177193 + ], + [ + 34.2603251, + -1.7185956 + ], + [ + 34.2601698, + -1.7186965 + ], + [ + 34.2593794, + -1.7190915 + ], + [ + 34.2590929, + -1.7192583 + ], + [ + 34.2583008, + -1.7197195 + ], + [ + 34.2580397, + -1.7199014 + ], + [ + 34.2574874, + -1.7202874 + ], + [ + 34.256509, + -1.721018 + ], + [ + 34.2541656, + -1.7227575 + ], + [ + 34.2539507, + -1.7228822 + ], + [ + 34.2536598, + -1.7229724 + ], + [ + 34.2534158, + -1.7230153 + ], + [ + 34.2532226, + -1.7230568 + ], + [ + 34.2515248, + -1.7234751 + ], + [ + 34.2508462, + -1.7237137 + ], + [ + 34.2500147, + -1.7240139 + ], + [ + 34.2492583, + -1.7242713 + ], + [ + 34.2480068, + -1.7246384 + ], + [ + 34.2476766, + -1.724741 + ], + [ + 34.2460826, + -1.7252794 + ], + [ + 34.2454147, + -1.7255207 + ], + [ + 34.2449561, + -1.7257217 + ], + [ + 34.2442319, + -1.7260314 + ], + [ + 34.2428049, + -1.7266306 + ], + [ + 34.2415175, + -1.7271963 + ], + [ + 34.2398706, + -1.7278183 + ], + [ + 34.2392859, + -1.7280676 + ], + [ + 34.2389002, + -1.72827 + ], + [ + 34.2387184, + -1.7283778 + ], + [ + 34.2383299, + -1.7286382 + ], + [ + 34.2364026, + -1.7299301 + ], + [ + 34.2357144, + -1.7305211 + ], + [ + 34.2356007, + -1.7306187 + ], + [ + 34.2353696, + -1.7308172 + ], + [ + 34.2343931, + -1.7317525 + ], + [ + 34.2340384, + -1.7320923 + ], + [ + 34.2336363, + -1.7325705 + ], + [ + 34.2327143, + -1.7340086 + ], + [ + 34.2325478, + -1.7342684 + ], + [ + 34.2322774, + -1.7345802 + ], + [ + 34.2315979, + -1.7351138 + ], + [ + 34.2304539, + -1.7358138 + ], + [ + 34.2299116, + -1.7360489 + ], + [ + 34.2292822, + -1.7362573 + ], + [ + 34.2286511, + -1.7363797 + ] + ] + }, + "id": "way/479323271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479494576", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "goods": "permissive", + "hgv": "no", + "highway": "primary", + "horse": "no", + "lanes": "2", + "maxspeed": "50", + "motor_vehicle": "permissive", + "motorcar": "permissive", + "motorcycle": "no", + "motorroad": "no", + "old_ref": "B144", + "opening_hours": "Mo-Su 06:00-18:00", + "ref": "T17", + "ref:alt": "B144", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted", + "vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.138738, + -2.909464 + ], + [ + 35.1406918, + -2.910581 + ], + [ + 35.1414303, + -2.910922 + ], + [ + 35.1424752, + -2.9114227 + ], + [ + 35.1430227, + -2.9116471 + ], + [ + 35.1436583, + -2.911856 + ], + [ + 35.144235, + -2.9121025 + ], + [ + 35.1471694, + -2.9135356 + ], + [ + 35.1492936, + -2.9144652 + ], + [ + 35.1494414, + -2.9145405 + ], + [ + 35.151713, + -2.9156974 + ], + [ + 35.1521931, + -2.9159063 + ], + [ + 35.1526598, + -2.9160804 + ], + [ + 35.1578382, + -2.9176374 + ], + [ + 35.1626591, + -2.9191743 + ], + [ + 35.1758904, + -2.9231255 + ], + [ + 35.1823502, + -2.9250538 + ], + [ + 35.185195, + -2.9258952 + ], + [ + 35.194454, + -2.9285445 + ], + [ + 35.2105929, + -2.9332429 + ], + [ + 35.2126981, + -2.9338942 + ], + [ + 35.2155221, + -2.934719 + ], + [ + 35.2160137, + -2.9348046 + ], + [ + 35.2162852, + -2.9348275 + ], + [ + 35.2164524, + -2.9348549 + ], + [ + 35.2166534, + -2.9349151 + ], + [ + 35.2171617, + -2.9351803 + ], + [ + 35.2180269, + -2.9355585 + ], + [ + 35.2200086, + -2.9363772 + ], + [ + 35.2235188, + -2.9380836 + ], + [ + 35.2279035, + -2.9401786 + ], + [ + 35.2282552, + -2.940395 + ], + [ + 35.228325, + -2.940462 + ], + [ + 35.2283866, + -2.9405745 + ], + [ + 35.2284001, + -2.9407272 + ], + [ + 35.2283974, + -2.9409094 + ], + [ + 35.228297, + -2.9421922 + ], + [ + 35.2282237, + -2.9426337 + ], + [ + 35.2280922, + -2.9430361 + ], + [ + 35.2279777, + -2.9432998 + ], + [ + 35.2279078, + -2.9435056 + ], + [ + 35.2278847, + -2.9437055 + ] + ] + }, + "id": "way/479494576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479806348", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0941012, + -1.6432187 + ], + [ + 34.0941615, + -1.6432459 + ] + ] + }, + "id": "way/479806348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479806349", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0405235, + -1.6302466 + ], + [ + 34.0408056, + -1.6303507 + ], + [ + 34.0411718, + -1.6304612 + ], + [ + 34.0420744, + -1.630624 + ], + [ + 34.0430913, + -1.63084 + ], + [ + 34.0432392, + -1.6308714 + ], + [ + 34.045001, + -1.6313001 + ], + [ + 34.0452291, + -1.6313662 + ], + [ + 34.0453053, + -1.6313953 + ], + [ + 34.0454199, + -1.6314428 + ], + [ + 34.0460887, + -1.6317471 + ], + [ + 34.0463494, + -1.6318443 + ], + [ + 34.0473282, + -1.6322279 + ], + [ + 34.0484682, + -1.6325952 + ], + [ + 34.0488705, + -1.6327052 + ], + [ + 34.0492433, + -1.6328044 + ], + [ + 34.0512899, + -1.6334264 + ], + [ + 34.0518075, + -1.633598 + ], + [ + 34.0527329, + -1.6338902 + ], + [ + 34.0535617, + -1.6341824 + ], + [ + 34.0539479, + -1.6343406 + ], + [ + 34.0549153, + -1.6347931 + ], + [ + 34.0552042, + -1.6349293 + ], + [ + 34.0559918, + -1.6352656 + ], + [ + 34.0564236, + -1.6354667 + ], + [ + 34.0569118, + -1.6356249 + ], + [ + 34.0574014, + -1.6357492 + ], + [ + 34.0588329, + -1.6360913 + ], + [ + 34.0603234, + -1.6364636 + ], + [ + 34.0613999, + -1.6367091 + ], + [ + 34.0636973, + -1.6371761 + ], + [ + 34.0644829, + -1.6373358 + ], + [ + 34.0663058, + -1.6377063 + ], + [ + 34.0668506, + -1.637817 + ], + [ + 34.0685925, + -1.6382056 + ], + [ + 34.0689122, + -1.6382769 + ], + [ + 34.0697782, + -1.6384308 + ], + [ + 34.0720914, + -1.6387648 + ], + [ + 34.0723541, + -1.6388147 + ], + [ + 34.0741543, + -1.6391569 + ], + [ + 34.0765348, + -1.6395527 + ], + [ + 34.0768728, + -1.6396278 + ], + [ + 34.0773261, + -1.6397511 + ], + [ + 34.0779278, + -1.639967 + ], + [ + 34.0792894, + -1.6404831 + ], + [ + 34.0803518, + -1.6408379 + ], + [ + 34.0808592, + -1.6410095 + ], + [ + 34.082492, + -1.6415582 + ], + [ + 34.0832618, + -1.6417861 + ], + [ + 34.0838921, + -1.6419604 + ], + [ + 34.0847397, + -1.6421293 + ], + [ + 34.0857241, + -1.6422687 + ], + [ + 34.0868264, + -1.6423947 + ], + [ + 34.0889265, + -1.6425096 + ], + [ + 34.0914146, + -1.642744 + ], + [ + 34.0930948, + -1.64288 + ], + [ + 34.0933228, + -1.6429148 + ], + [ + 34.0935186, + -1.6429577 + ], + [ + 34.0941012, + -1.6432187 + ] + ] + }, + "id": "way/479806349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479942926", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8328215, + -3.2407649 + ], + [ + 33.8328935, + -3.2408695 + ], + [ + 33.8350558, + -3.244275 + ], + [ + 33.835457, + -3.2448723 + ] + ] + }, + "id": "way/479942926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479942927", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8327442, + -3.2406321 + ], + [ + 33.8328215, + -3.2407649 + ] + ] + }, + "id": "way/479942927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479942928", + "highway": "secondary", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8355142, + -3.2449766 + ], + [ + 33.837185, + -3.2474993 + ], + [ + 33.8377135, + -3.2483563 + ], + [ + 33.8384156, + -3.2494545 + ], + [ + 33.8402966, + -3.2523187 + ], + [ + 33.8407391, + -3.2530123 + ], + [ + 33.841399, + -3.2540594 + ], + [ + 33.8418415, + -3.2547583 + ], + [ + 33.8422868, + -3.2553447 + ], + [ + 33.8426167, + -3.2557411 + ], + [ + 33.8430071, + -3.2560865 + ], + [ + 33.8433736, + -3.2564025 + ], + [ + 33.84425, + -3.2570916 + ], + [ + 33.8445267, + -3.2573599 + ], + [ + 33.8449314, + -3.2577897 + ], + [ + 33.845288, + -3.2582752 + ], + [ + 33.8457014, + -3.2589097 + ], + [ + 33.8459635, + -3.2593119 + ], + [ + 33.8465499, + -3.2602118 + ], + [ + 33.8471528, + -3.2611371 + ], + [ + 33.8477741, + -3.2620818 + ], + [ + 33.847891, + -3.2622596 + ], + [ + 33.8487641, + -3.2635872 + ], + [ + 33.8491124, + -3.2641169 + ], + [ + 33.8491388, + -3.264157 + ], + [ + 33.8501586, + -3.2657082 + ], + [ + 33.851183, + -3.2672664 + ], + [ + 33.8522173, + -3.2688786 + ], + [ + 33.8544736, + -3.2722498 + ], + [ + 33.8548475, + -3.2727026 + ], + [ + 33.8556683, + -3.273514 + ], + [ + 33.8569343, + -3.2747281 + ], + [ + 33.857283, + -3.2750457 + ], + [ + 33.857637, + -3.2754072 + ], + [ + 33.8578436, + -3.2756295 + ], + [ + 33.8580447, + -3.2758598 + ], + [ + 33.8582432, + -3.2761731 + ], + [ + 33.8598217, + -3.2788764 + ] + ] + }, + "id": "way/479942928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479942929", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.835457, + -3.2448723 + ], + [ + 33.8355142, + -3.2449766 + ] + ] + }, + "id": "way/479942929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/479959542", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1298719, + -3.0189813 + ], + [ + 34.1301937, + -3.0192398 + ], + [ + 34.1303654, + -3.0193282 + ], + [ + 34.1305853, + -3.0193724 + ], + [ + 34.1308643, + -3.0193791 + ], + [ + 34.1316247, + -3.0193523 + ], + [ + 34.1318446, + -3.019367 + ], + [ + 34.1321933, + -3.0194313 + ], + [ + 34.1323717, + -3.0194782 + ], + [ + 34.1324857, + -3.0195384 + ], + [ + 34.1325568, + -3.0195933 + ], + [ + 34.1326024, + -3.0196724 + ], + [ + 34.1326359, + -3.0197782 + ], + [ + 34.1329048, + -3.0218081 + ], + [ + 34.1330246, + -3.0228271 + ], + [ + 34.133256, + -3.0243741 + ], + [ + 34.133495, + -3.0258877 + ], + [ + 34.1335711, + -3.0263702 + ], + [ + 34.1338313, + -3.0274658 + ], + [ + 34.1340874, + -3.0283283 + ], + [ + 34.1344013, + -3.0295142 + ], + [ + 34.1346092, + -3.0303024 + ], + [ + 34.1348655, + -3.0314136 + ], + [ + 34.135122, + -3.0325253 + ], + [ + 34.1354258, + -3.0338166 + ], + [ + 34.1355767, + -3.0344302 + ], + [ + 34.1356936, + -3.0347521 + ], + [ + 34.1358358, + -3.035036 + ], + [ + 34.1359806, + -3.035245 + ], + [ + 34.1361603, + -3.0354003 + ], + [ + 34.1363749, + -3.0355316 + ], + [ + 34.1368818, + -3.0357298 + ], + [ + 34.1374826, + -3.035928 + ], + [ + 34.1382149, + -3.0361503 + ], + [ + 34.1391134, + -3.0364717 + ], + [ + 34.1426781, + -3.0376368 + ], + [ + 34.1444989, + -3.0381744 + ], + [ + 34.1457733, + -3.0385941 + ], + [ + 34.1474133, + -3.0391044 + ], + [ + 34.1507381, + -3.0402188 + ], + [ + 34.1541874, + -3.0413223 + ], + [ + 34.1546676, + -3.0414589 + ], + [ + 34.1552737, + -3.0416545 + ], + [ + 34.1558747, + -3.0419169 + ], + [ + 34.1577523, + -3.0427239 + ], + [ + 34.1598558, + -3.0437445 + ], + [ + 34.1617097, + -3.0445871 + ], + [ + 34.1626981, + -3.0450453 + ], + [ + 34.1630521, + -3.0451873 + ], + [ + 34.1633445, + -3.0452891 + ], + [ + 34.1637039, + -3.0453534 + ], + [ + 34.1656891, + -3.0454951 + ], + [ + 34.1657926, + -3.0455014 + ], + [ + 34.1676909, + -3.0456176 + ], + [ + 34.1683909, + -3.045664 + ], + [ + 34.16884, + -3.0456971 + ], + [ + 34.1696753, + -3.0457586 + ], + [ + 34.1698343, + -3.0457703 + ], + [ + 34.1704192, + -3.0458075 + ], + [ + 34.170931, + -3.0458568 + ], + [ + 34.1719807, + -3.0460065 + ], + [ + 34.1721228, + -3.0460279 + ], + [ + 34.1722105, + -3.0460405 + ], + [ + 34.1729163, + -3.0461417 + ], + [ + 34.1742364, + -3.046384 + ], + [ + 34.1753936, + -3.0465965 + ], + [ + 34.1755664, + -3.0466282 + ], + [ + 34.1759695, + -3.0466967 + ], + [ + 34.1770248, + -3.0468749 + ], + [ + 34.177242, + -3.046913 + ], + [ + 34.1776046, + -3.0469865 + ], + [ + 34.1779385, + -3.0470538 + ], + [ + 34.1783276, + -3.047125 + ], + [ + 34.1787947, + -3.0472154 + ], + [ + 34.1792937, + -3.0473004 + ], + [ + 34.1798891, + -3.0473391 + ], + [ + 34.1800681, + -3.04733 + ], + [ + 34.1802479, + -3.0472928 + ], + [ + 34.1810677, + -3.0470275 + ], + [ + 34.1810924, + -3.0470198 + ], + [ + 34.181805, + -3.0467452 + ], + [ + 34.1826611, + -3.0464027 + ], + [ + 34.1847639, + -3.0456597 + ], + [ + 34.1856051, + -3.0453711 + ], + [ + 34.186666, + -3.0450143 + ], + [ + 34.1879893, + -3.0445362 + ], + [ + 34.188066, + -3.0445004 + ], + [ + 34.1886533, + -3.0443066 + ], + [ + 34.1888849, + -3.0442371 + ], + [ + 34.1891806, + -3.0441771 + ], + [ + 34.1893518, + -3.0441717 + ], + [ + 34.1895895, + -3.0442429 + ], + [ + 34.1897915, + -3.0443497 + ], + [ + 34.1917405, + -3.0452398 + ], + [ + 34.1934755, + -3.0460942 + ], + [ + 34.1977419, + -3.0481353 + ], + [ + 34.2012476, + -3.0497849 + ], + [ + 34.201657, + -3.0499119 + ], + [ + 34.2022094, + -3.0499656 + ], + [ + 34.2037774, + -3.0500348 + ], + [ + 34.205454, + -3.0500885 + ], + [ + 34.206227, + -3.0501186 + ], + [ + 34.2066432, + -3.0501054 + ], + [ + 34.2072047, + -3.050013 + ], + [ + 34.2092064, + -3.0496238 + ], + [ + 34.2127473, + -3.0489839 + ], + [ + 34.2151783, + -3.0484892 + ], + [ + 34.2158369, + -3.0483668 + ], + [ + 34.2174723, + -3.0481125 + ], + [ + 34.2193735, + -3.0477866 + ], + [ + 34.219795, + -3.0477453 + ], + [ + 34.220886, + -3.0477239 + ], + [ + 34.22263, + -3.0477833 + ], + [ + 34.2237573, + -3.0478376 + ], + [ + 34.2239818, + -3.0478484 + ], + [ + 34.2241951, + -3.0478587 + ], + [ + 34.2246049, + -3.0479241 + ], + [ + 34.2250802, + -3.0480014 + ], + [ + 34.2259761, + -3.0481366 + ], + [ + 34.2268084, + -3.0482662 + ], + [ + 34.2272051, + -3.0483115 + ], + [ + 34.2274949, + -3.0483157 + ], + [ + 34.2277894, + -3.0482979 + ], + [ + 34.2284104, + -3.0481989 + ], + [ + 34.2285329, + -3.0481814 + ], + [ + 34.230531, + -3.0478955 + ], + [ + 34.2328101, + -3.0475656 + ], + [ + 34.2330064, + -3.0475383 + ], + [ + 34.2333561, + -3.0474896 + ], + [ + 34.2358423, + -3.0471434 + ], + [ + 34.2374656, + -3.0470045 + ], + [ + 34.2376835, + -3.0469905 + ], + [ + 34.2378968, + -3.0470379 + ], + [ + 34.2381112, + -3.0471303 + ], + [ + 34.2397071, + -3.0480221 + ], + [ + 34.241354, + -3.0489725 + ], + [ + 34.2424204, + -3.0495453 + ], + [ + 34.2427018, + -3.0496723 + ], + [ + 34.2431009, + -3.0497787 + ], + [ + 34.2442698, + -3.0499767 + ], + [ + 34.2458019, + -3.050253 + ], + [ + 34.246255, + -3.0503506 + ], + [ + 34.2466793, + -3.0504552 + ], + [ + 34.247766, + -3.0507585 + ], + [ + 34.2493521, + -3.0512236 + ], + [ + 34.2498163, + -3.0513666 + ], + [ + 34.2502198, + -3.0514909 + ], + [ + 34.2514309, + -3.0518639 + ], + [ + 34.2521868, + -3.0521065 + ], + [ + 34.2525513, + -3.0522885 + ], + [ + 34.2530913, + -3.052612 + ], + [ + 34.2531381, + -3.0526405 + ], + [ + 34.2545631, + -3.0535068 + ], + [ + 34.2549204, + -3.0537241 + ], + [ + 34.2555936, + -3.0541745 + ], + [ + 34.2561571, + -3.054523 + ], + [ + 34.2562924, + -3.0546067 + ], + [ + 34.2568243, + -3.0549254 + ], + [ + 34.2578226, + -3.0555236 + ], + [ + 34.2582838, + -3.0558148 + ], + [ + 34.2590995, + -3.0563297 + ], + [ + 34.259385, + -3.0565099 + ], + [ + 34.2598601, + -3.0568062 + ], + [ + 34.2599415, + -3.0568585 + ], + [ + 34.2601714, + -3.0570064 + ], + [ + 34.2610485, + -3.0575377 + ], + [ + 34.2611602, + -3.0576053 + ], + [ + 34.2620073, + -3.0581184 + ], + [ + 34.2623979, + -3.0583665 + ], + [ + 34.2627765, + -3.058607 + ], + [ + 34.2632639, + -3.0589166 + ], + [ + 34.2639173, + -3.0593316 + ], + [ + 34.2639504, + -3.0593527 + ], + [ + 34.2644936, + -3.0596999 + ], + [ + 34.2646877, + -3.0598239 + ], + [ + 34.264761, + -3.0598708 + ], + [ + 34.2651533, + -3.0601713 + ], + [ + 34.265296, + -3.0603011 + ], + [ + 34.2654087, + -3.0604158 + ], + [ + 34.2656345, + -3.0606297 + ], + [ + 34.2658073, + -3.0608115 + ], + [ + 34.2659894, + -3.0610031 + ], + [ + 34.2662002, + -3.0612329 + ], + [ + 34.2662593, + -3.0612974 + ], + [ + 34.2665831, + -3.0616504 + ], + [ + 34.2669034, + -3.0619995 + ], + [ + 34.2671071, + -3.0622342 + ], + [ + 34.2672259, + -3.0624478 + ], + [ + 34.2673191, + -3.0626331 + ], + [ + 34.2673814, + -3.062794 + ], + [ + 34.2674386, + -3.0629785 + ], + [ + 34.2674574, + -3.0631652 + ], + [ + 34.2674725, + -3.0633976 + ], + [ + 34.267475, + -3.0635546 + ], + [ + 34.2674763, + -3.0636626 + ], + [ + 34.2672722, + -3.0645485 + ], + [ + 34.2671308, + -3.0653077 + ], + [ + 34.2667624, + -3.0670403 + ], + [ + 34.2666034, + -3.0678287 + ], + [ + 34.2664781, + -3.0684505 + ], + [ + 34.2664059, + -3.0688085 + ], + [ + 34.2663458, + -3.0691272 + ], + [ + 34.2662633, + -3.0695323 + ], + [ + 34.2661788, + -3.0698983 + ], + [ + 34.2661333, + -3.0700928 + ], + [ + 34.2660994, + -3.0702569 + ], + [ + 34.2660959, + -3.0704177 + ], + [ + 34.2660919, + -3.0705744 + ], + [ + 34.2661348, + -3.071173 + ], + [ + 34.2661992, + -3.0715775 + ], + [ + 34.2662838, + -3.0719217 + ], + [ + 34.2663726, + -3.0722877 + ], + [ + 34.2664048, + -3.0724202 + ], + [ + 34.2664297, + -3.0725228 + ], + [ + 34.2666336, + -3.0735202 + ], + [ + 34.2666674, + -3.0736858 + ], + [ + 34.2667915, + -3.0742281 + ], + [ + 34.2668575, + -3.0745164 + ], + [ + 34.2672935, + -3.0763074 + ], + [ + 34.2673123, + -3.0764574 + ], + [ + 34.2673016, + -3.0766101 + ], + [ + 34.267197, + -3.0773654 + ], + [ + 34.2670333, + -3.0785278 + ], + [ + 34.266941, + -3.078845 + ], + [ + 34.266841, + -3.0790458 + ], + [ + 34.2666494, + -3.0793955 + ], + [ + 34.2662946, + -3.0798526 + ], + [ + 34.2661373, + -3.0800553 + ], + [ + 34.2657368, + -3.0806219 + ], + [ + 34.2653482, + -3.0811144 + ], + [ + 34.2651343, + -3.0814467 + ], + [ + 34.2648729, + -3.0819451 + ], + [ + 34.2647421, + -3.0822655 + ], + [ + 34.2646352, + -3.0826096 + ], + [ + 34.264552, + -3.0830012 + ], + [ + 34.2645164, + -3.0834403 + ], + [ + 34.2644688, + -3.0845083 + ], + [ + 34.2644171, + -3.0859455 + ], + [ + 34.2644132, + -3.0872289 + ], + [ + 34.2643381, + -3.0900619 + ], + [ + 34.264148, + -3.0953663 + ], + [ + 34.2641242, + -3.0973362 + ], + [ + 34.264041, + -3.0985821 + ], + [ + 34.2638746, + -3.0999705 + ], + [ + 34.2637439, + -3.1008012 + ], + [ + 34.2636983, + -3.101085 + ], + [ + 34.2636495, + -3.1013376 + ], + [ + 34.2635775, + -3.1019641 + ], + [ + 34.2635223, + -3.1024027 + ], + [ + 34.2634399, + -3.1029261 + ], + [ + 34.2633459, + -3.1037366 + ], + [ + 34.2621039, + -3.107399 + ], + [ + 34.2612992, + -3.109684 + ], + [ + 34.2607373, + -3.1112793 + ], + [ + 34.2603841, + -3.1121324 + ], + [ + 34.2601132, + -3.1126493 + ], + [ + 34.2598182, + -3.1131046 + ], + [ + 34.2594657, + -3.1136763 + ], + [ + 34.2591448, + -3.1142459 + ], + [ + 34.2589309, + -3.1146731 + ], + [ + 34.258405, + -3.1158717 + ], + [ + 34.2579208, + -3.1169752 + ], + [ + 34.2571762, + -3.1186003 + ], + [ + 34.2570582, + -3.1188896 + ], + [ + 34.2565647, + -3.1203867 + ], + [ + 34.2560669, + -3.1219353 + ], + [ + 34.255639, + -3.1234542 + ], + [ + 34.2551993, + -3.1252104 + ], + [ + 34.2549616, + -3.1258512 + ], + [ + 34.2548094, + -3.1261961 + ], + [ + 34.2543438, + -3.1273179 + ], + [ + 34.2533217, + -3.1297552 + ], + [ + 34.2529893, + -3.1306791 + ], + [ + 34.2529678, + -3.1309496 + ], + [ + 34.2530127, + -3.1312266 + ], + [ + 34.2530858, + -3.1315308 + ], + [ + 34.2532622, + -3.1321285 + ], + [ + 34.2533822, + -3.1326328 + ], + [ + 34.2534167, + -3.1328404 + ], + [ + 34.2534167, + -3.1330066 + ], + [ + 34.2533769, + -3.1331484 + ], + [ + 34.2532226, + -3.1335046 + ], + [ + 34.2530295, + -3.133909 + ], + [ + 34.2520025, + -3.1357239 + ], + [ + 34.2507684, + -3.1380147 + ], + [ + 34.2504856, + -3.1385379 + ], + [ + 34.2503956, + -3.1387043 + ], + [ + 34.2502132, + -3.1390552 + ], + [ + 34.2500402, + -3.139339 + ], + [ + 34.2499007, + -3.1394783 + ], + [ + 34.2496969, + -3.1396203 + ], + [ + 34.249356, + -3.1397859 + ], + [ + 34.2479858, + -3.1403754 + ], + [ + 34.2447066, + -3.1418338 + ], + [ + 34.2435601, + -3.1424406 + ], + [ + 34.2427432, + -3.1428729 + ], + [ + 34.241783, + -3.1434621 + ], + [ + 34.2415328, + -3.1437573 + ], + [ + 34.2414615, + -3.1440183 + ], + [ + 34.2414615, + -3.1445998 + ], + [ + 34.2417229, + -3.1492513 + ], + [ + 34.2418418, + -3.1508057 + ], + [ + 34.2418893, + -3.1517075 + ], + [ + 34.2418893, + -3.1520991 + ], + [ + 34.2418774, + -3.152372 + ], + [ + 34.2418393, + -3.1526535 + ], + [ + 34.241775, + -3.1531088 + ], + [ + 34.2416838, + -3.1537168 + ], + [ + 34.2415447, + -3.154674 + ], + [ + 34.2414615, + -3.1548401 + ], + [ + 34.2413307, + -3.15503 + ], + [ + 34.2411881, + -3.1551724 + ], + [ + 34.2407075, + -3.1555299 + ], + [ + 34.2393105, + -3.1565726 + ], + [ + 34.2375264, + -3.1578572 + ], + [ + 34.2361128, + -3.158907 + ], + [ + 34.2358047, + -3.1591 + ], + [ + 34.2351285, + -3.1594614 + ], + [ + 34.2337096, + -3.1600974 + ], + [ + 34.2327869, + -3.1605018 + ], + [ + 34.2325683, + -3.1606197 + ], + [ + 34.2324261, + -3.1607295 + ], + [ + 34.2323282, + -3.1608433 + ], + [ + 34.2319259, + -3.1614459 + ], + [ + 34.2309415, + -3.1629885 + ], + [ + 34.2300859, + -3.164365 + ], + [ + 34.2298445, + -3.1647534 + ], + [ + 34.2296594, + -3.1649649 + ], + [ + 34.2294797, + -3.1651095 + ], + [ + 34.2272245, + -3.1665992 + ], + [ + 34.2249903, + -3.1680231 + ], + [ + 34.2215243, + -3.1703024 + ], + [ + 34.2208672, + -3.1707416 + ], + [ + 34.2198479, + -3.1714218 + ], + [ + 34.2196816, + -3.1715638 + ], + [ + 34.2195502, + -3.1717352 + ], + [ + 34.2189816, + -3.1727047 + ], + [ + 34.2179669, + -3.1744662 + ], + [ + 34.2169211, + -3.1762342 + ], + [ + 34.2164576, + -3.177011 + ], + [ + 34.2163369, + -3.1772869 + ], + [ + 34.2163074, + -3.1774556 + ], + [ + 34.2163128, + -3.1776698 + ], + [ + 34.2164201, + -3.1783447 + ], + [ + 34.2172776, + -3.184208 + ], + [ + 34.2175738, + -3.1859766 + ], + [ + 34.2177964, + -3.1874831 + ], + [ + 34.2179178, + -3.1882216 + ], + [ + 34.2179908, + -3.1886287 + ], + [ + 34.2180179, + -3.188924 + ], + [ + 34.2180114, + -3.1893829 + ], + [ + 34.2179715, + -3.1897664 + ], + [ + 34.2178243, + -3.1901882 + ], + [ + 34.217646, + -3.1904848 + ], + [ + 34.217242, + -3.1909239 + ], + [ + 34.2162793, + -3.1917901 + ], + [ + 34.215956, + -3.1921154 + ], + [ + 34.2155514, + -3.1925047 + ], + [ + 34.2151623, + -3.1928698 + ], + [ + 34.2149434, + -3.1930746 + ], + [ + 34.2146588, + -3.1933464 + ], + [ + 34.2144775, + -3.1935225 + ], + [ + 34.2142423, + -3.1937601 + ], + [ + 34.21386, + -3.194428 + ], + [ + 34.2136735, + -3.1947746 + ], + [ + 34.2134969, + -3.1951454 + ], + [ + 34.2133747, + -3.1953951 + ], + [ + 34.2132068, + -3.1958458 + ], + [ + 34.21308, + -3.1963894 + ], + [ + 34.2126666, + -3.1989924 + ], + [ + 34.2121318, + -3.2025758 + ], + [ + 34.2116921, + -3.2050438 + ], + [ + 34.2110447, + -3.2088805 + ], + [ + 34.2107324, + -3.2107309 + ], + [ + 34.2105407, + -3.2123331 + ], + [ + 34.2103792, + -3.2131785 + ], + [ + 34.2103374, + -3.2134681 + ], + [ + 34.2096719, + -3.2169257 + ], + [ + 34.2092272, + -3.2194031 + ], + [ + 34.209019, + -3.220552 + ] + ] + }, + "id": "way/479959542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/480285854", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8144976, + -2.4531662 + ], + [ + 33.8143876, + -2.4530939 + ] + ] + }, + "id": "way/480285854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/480285855", + "highway": "secondary", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8143876, + -2.4530939 + ], + [ + 33.8134401, + -2.4524195 + ], + [ + 33.8115333, + -2.4510623 + ], + [ + 33.8107923, + -2.4505727 + ], + [ + 33.809968, + -2.4499226 + ], + [ + 33.8093068, + -2.449367 + ], + [ + 33.8092458, + -2.4493158 + ], + [ + 33.8084643, + -2.4486285 + ], + [ + 33.8078368, + -2.4481397 + ], + [ + 33.8072376, + -2.4475809 + ], + [ + 33.8069513, + -2.4472916 + ], + [ + 33.8068255, + -2.447168 + ], + [ + 33.8062373, + -2.4467281 + ], + [ + 33.8061027, + -2.4466274 + ], + [ + 33.8057794, + -2.4463856 + ], + [ + 33.8056912, + -2.4463195 + ], + [ + 33.8051807, + -2.4459372 + ], + [ + 33.804986, + -2.4457787 + ], + [ + 33.8040821, + -2.4450622 + ], + [ + 33.8038152, + -2.4448803 + ], + [ + 33.8019868, + -2.4436341 + ], + [ + 33.801357, + -2.443173 + ], + [ + 33.8009888, + -2.4428834 + ], + [ + 33.8007803, + -2.4426585 + ], + [ + 33.8000534, + -2.4417206 + ], + [ + 33.7998624, + -2.4414762 + ], + [ + 33.7996906, + -2.4413157 + ], + [ + 33.7991603, + -2.4409435 + ] + ] + }, + "id": "way/480285855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/482827353", + "bridge": "yes", + "highway": "secondary", + "layer": "2", + "ref": "R369", + "source": "bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7141725, + -3.0112291 + ], + [ + 33.7143561, + -3.0113047 + ] + ] + }, + "id": "way/482827353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/482827354", + "highway": "secondary", + "ref": "R369", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.6965195, + -2.9931575 + ], + [ + 33.6968789, + -2.993719 + ], + [ + 33.6970041, + -2.9939167 + ], + [ + 33.6975636, + -2.9947811 + ], + [ + 33.6978525, + -2.9953354 + ], + [ + 33.6979437, + -2.9955577 + ], + [ + 33.6980242, + -2.9957773 + ], + [ + 33.6980724, + -2.9960827 + ], + [ + 33.6982937, + -2.9983373 + ], + [ + 33.6984313, + -2.9996136 + ], + [ + 33.6986142, + -3.0010942 + ], + [ + 33.6986867, + -3.0016058 + ], + [ + 33.6988234, + -3.0021844 + ], + [ + 33.6990273, + -3.0026853 + ], + [ + 33.6992687, + -3.0031567 + ], + [ + 33.6995208, + -3.0034969 + ], + [ + 33.7006066, + -3.0048051 + ], + [ + 33.7007924, + -3.0050231 + ], + [ + 33.7015942, + -3.0059022 + ], + [ + 33.7023774, + -3.0066709 + ], + [ + 33.7030748, + -3.0072897 + ], + [ + 33.7039153, + -3.00803 + ], + [ + 33.7043488, + -3.00842 + ], + [ + 33.7046197, + -3.0086798 + ], + [ + 33.7047157, + -3.0087668 + ], + [ + 33.7048742, + -3.0088624 + ], + [ + 33.705047, + -3.0089358 + ], + [ + 33.7052715, + -3.0089985 + ], + [ + 33.7055907, + -3.0090307 + ], + [ + 33.7071719, + -3.0091632 + ], + [ + 33.7082246, + -3.0092423 + ], + [ + 33.70882, + -3.0093226 + ], + [ + 33.7090963, + -3.0094057 + ], + [ + 33.7118965, + -3.0102601 + ], + [ + 33.7123473, + -3.0104433 + ], + [ + 33.7141725, + -3.0112291 + ] + ] + }, + "id": "way/482827354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/484724763", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9826119, + -2.5728338 + ], + [ + 33.9826079, + -2.5729088 + ], + [ + 33.9826195, + -2.5744456 + ] + ] + }, + "id": "way/484724763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/484724766", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Bing", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9826025, + -2.5726838 + ], + [ + 33.9826119, + -2.5728338 + ] + ] + }, + "id": "way/484724766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/486090762", + "highway": "secondary", + "lanes": "2", + "maxspeed:type": "KE:rural", + "ref": "C12", + "smoothness": "bad", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.366495, + -1.4802698 + ], + [ + 35.3662053, + -1.4811372 + ], + [ + 35.3661141, + -1.4814094 + ], + [ + 35.3660571, + -1.4815669 + ], + [ + 35.3659894, + -1.4816936 + ], + [ + 35.3657808, + -1.482075 + ], + [ + 35.3653067, + -1.4829887 + ], + [ + 35.3650989, + -1.4834405 + ], + [ + 35.3647743, + -1.4840746 + ], + [ + 35.3647451, + -1.4841242 + ], + [ + 35.3644873, + -1.4845626 + ], + [ + 35.3642006, + -1.4850113 + ], + [ + 35.3638758, + -1.4854917 + ], + [ + 35.3635204, + -1.4859475 + ], + [ + 35.3627985, + -1.486853 + ], + [ + 35.3624638, + -1.4872552 + ], + [ + 35.3622075, + -1.4875709 + ], + [ + 35.3616375, + -1.488291 + ], + [ + 35.3612646, + -1.4889036 + ], + [ + 35.3610742, + -1.4892294 + ], + [ + 35.360932, + -1.4895203 + ], + [ + 35.3607497, + -1.4898367 + ], + [ + 35.3606316, + -1.4899815 + ], + [ + 35.3604653, + -1.4901585 + ], + [ + 35.3602554, + -1.4904347 + ], + [ + 35.3600162, + -1.4906863 + ], + [ + 35.3596632, + -1.4909981 + ], + [ + 35.3593965, + -1.4912659 + ], + [ + 35.3590961, + -1.4916654 + ], + [ + 35.3586951, + -1.4922566 + ], + [ + 35.3584255, + -1.4927044 + ], + [ + 35.3583129, + -1.4929068 + ], + [ + 35.3582056, + -1.4931468 + ], + [ + 35.3580889, + -1.4934565 + ], + [ + 35.3579079, + -1.4940879 + ], + [ + 35.3578261, + -1.494352 + ], + [ + 35.3577328, + -1.494706 + ], + [ + 35.3576557, + -1.4949748 + ], + [ + 35.357586, + -1.4952489 + ], + [ + 35.3575196, + -1.4955338 + ], + [ + 35.3574586, + -1.4958167 + ], + [ + 35.3573788, + -1.4960976 + ], + [ + 35.3573151, + -1.4963241 + ], + [ + 35.3572172, + -1.4966338 + ], + [ + 35.3571099, + -1.4970421 + ], + [ + 35.3570019, + -1.4974543 + ], + [ + 35.3569554, + -1.4976245 + ], + [ + 35.3569074, + -1.4978002 + ], + [ + 35.3568108, + -1.4981642 + ], + [ + 35.356719, + -1.4985074 + ], + [ + 35.3566376, + -1.4987389 + ], + [ + 35.3566425, + -1.4988084 + ], + [ + 35.356609, + -1.4989471 + ], + [ + 35.3565694, + -1.4990758 + ], + [ + 35.356493, + -1.4992964 + ], + [ + 35.3563482, + -1.4996932 + ], + [ + 35.356298, + -1.4998334 + ], + [ + 35.3562087, + -1.5000826 + ], + [ + 35.3561514, + -1.5002352 + ], + [ + 35.3561034, + -1.5003628 + ], + [ + 35.3559934, + -1.5006685 + ], + [ + 35.3559043, + -1.5009219 + ], + [ + 35.3558191, + -1.5011833 + ], + [ + 35.3557447, + -1.5014059 + ], + [ + 35.3556347, + -1.5016794 + ], + [ + 35.3555589, + -1.5018764 + ], + [ + 35.3554778, + -1.5021137 + ], + [ + 35.355406, + -1.5023524 + ], + [ + 35.3552914, + -1.5026942 + ], + [ + 35.3551764, + -1.5029924 + ], + [ + 35.3548465, + -1.5038947 + ], + [ + 35.3546938, + -1.5043426 + ], + [ + 35.3546078, + -1.5045848 + ], + [ + 35.3544897, + -1.5048719 + ], + [ + 35.3544019, + -1.5050505 + ], + [ + 35.3542259, + -1.5053628 + ], + [ + 35.3541373, + -1.5055089 + ], + [ + 35.3540354, + -1.5056671 + ], + [ + 35.3539389, + -1.505775 + ], + [ + 35.353849, + -1.5058675 + ], + [ + 35.3537216, + -1.5059815 + ], + [ + 35.3536069, + -1.5060834 + ], + [ + 35.3534621, + -1.5062007 + ], + [ + 35.3533155, + -1.5063129 + ], + [ + 35.3532616, + -1.5063488 + ], + [ + 35.3529934, + -1.5065231 + ], + [ + 35.3527359, + -1.5066853 + ], + [ + 35.3524442, + -1.506867 + ], + [ + 35.3522122, + -1.5070071 + ], + [ + 35.3513411, + -1.5075065 + ], + [ + 35.3508329, + -1.507792 + ], + [ + 35.3503682, + -1.5080883 + ], + [ + 35.3502416, + -1.5081611 + ], + [ + 35.3498894, + -1.5083698 + ], + [ + 35.3492135, + -1.5087439 + ], + [ + 35.3489251, + -1.5088994 + ], + [ + 35.3486556, + -1.509067 + ], + [ + 35.3484061, + -1.5092024 + ], + [ + 35.3481124, + -1.509374 + ], + [ + 35.3478838, + -1.509502 + ], + [ + 35.3476363, + -1.5096515 + ], + [ + 35.3474969, + -1.509744 + ], + [ + 35.3472957, + -1.5098914 + ], + [ + 35.3469296, + -1.5101663 + ], + [ + 35.3466292, + -1.5103848 + ], + [ + 35.346424, + -1.5105537 + ], + [ + 35.3460726, + -1.5108715 + ], + [ + 35.3457038, + -1.511224 + ], + [ + 35.3454624, + -1.5114573 + ], + [ + 35.3453256, + -1.5115833 + ], + [ + 35.3450064, + -1.511897 + ], + [ + 35.3446417, + -1.5122563 + ], + [ + 35.3443424, + -1.5125197 + ], + [ + 35.3440232, + -1.5128208 + ], + [ + 35.3438383, + -1.5130068 + ], + [ + 35.3436869, + -1.5131422 + ], + [ + 35.3435178, + -1.5132578 + ], + [ + 35.3434239, + -1.5132967 + ], + [ + 35.3433318, + -1.5133077 + ], + [ + 35.3431241, + -1.5133003 + ], + [ + 35.3429529, + -1.5132958 + ], + [ + 35.3427773, + -1.5132916 + ], + [ + 35.3426394, + -1.5132873 + ], + [ + 35.342522, + -1.5132934 + ], + [ + 35.3423901, + -1.5133022 + ], + [ + 35.3422841, + -1.5133141 + ], + [ + 35.3421913, + -1.5133365 + ], + [ + 35.3420722, + -1.5133631 + ], + [ + 35.3419033, + -1.5134296 + ], + [ + 35.3417251, + -1.5135285 + ], + [ + 35.3415653, + -1.513659 + ], + [ + 35.3414531, + -1.5137523 + ], + [ + 35.3413246, + -1.513868 + ], + [ + 35.3411056, + -1.5140931 + ], + [ + 35.3409546, + -1.5142487 + ], + [ + 35.3408307, + -1.5143928 + ], + [ + 35.3406698, + -1.5146242 + ], + [ + 35.3404695, + -1.515002 + ], + [ + 35.3401617, + -1.5156247 + ], + [ + 35.3400216, + -1.5159107 + ], + [ + 35.3398901, + -1.5161642 + ], + [ + 35.3397453, + -1.5164445 + ], + [ + 35.3396152, + -1.5167019 + ], + [ + 35.3394811, + -1.5169848 + ], + [ + 35.339351, + -1.5172382 + ], + [ + 35.3392786, + -1.5173815 + ], + [ + 35.3391882, + -1.5175601 + ], + [ + 35.339064, + -1.5178039 + ], + [ + 35.3389172, + -1.5180712 + ], + [ + 35.3388012, + -1.5182785 + ], + [ + 35.3386737, + -1.5185225 + ], + [ + 35.338486, + -1.5189032 + ], + [ + 35.338258, + -1.5193533 + ], + [ + 35.3381421, + -1.5195832 + ], + [ + 35.3379361, + -1.5199905 + ], + [ + 35.3378034, + -1.5202519 + ], + [ + 35.3377068, + -1.5204256 + ], + [ + 35.3375821, + -1.5206635 + ], + [ + 35.337453, + -1.5209394 + ] + ] + }, + "id": "way/486090762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/486090765", + "highway": "secondary", + "maxspeed": "40", + "ref": "C12", + "source": "survey", + "surface": "dirt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3374107, + -1.5210174 + ], + [ + 35.3373729, + -1.5210791 + ], + [ + 35.3371797, + -1.5214491 + ], + [ + 35.3370349, + -1.5217293 + ], + [ + 35.3369531, + -1.5218955 + ], + [ + 35.336882, + -1.5219813 + ], + [ + 35.3367801, + -1.5220966 + ], + [ + 35.3366366, + -1.5222199 + ], + [ + 35.3364837, + -1.5223151 + ], + [ + 35.3363067, + -1.5223982 + ], + [ + 35.3360935, + -1.522476 + ], + [ + 35.3359097, + -1.5225269 + ], + [ + 35.3356884, + -1.5225712 + ], + [ + 35.3353867, + -1.5226034 + ], + [ + 35.3349361, + -1.522653 + ], + [ + 35.3343219, + -1.5227106 + ], + [ + 35.333937, + -1.5227468 + ], + [ + 35.3335159, + -1.522775 + ], + [ + 35.3328386, + -1.5227857 + ], + [ + 35.332219, + -1.5228058 + ], + [ + 35.3318891, + -1.5228191 + ], + [ + 35.3315498, + -1.5228487 + ], + [ + 35.3312695, + -1.5228943 + ], + [ + 35.3309879, + -1.5229533 + ], + [ + 35.3306204, + -1.5230672 + ], + [ + 35.3299311, + -1.5233903 + ], + [ + 35.3296119, + -1.5234922 + ], + [ + 35.3293276, + -1.5235525 + ], + [ + 35.3290996, + -1.5235646 + ], + [ + 35.3289011, + -1.5235512 + ], + [ + 35.3285953, + -1.5235364 + ], + [ + 35.3281622, + -1.5234788 + ], + [ + 35.3276807, + -1.5234359 + ], + [ + 35.3269511, + -1.5233715 + ], + [ + 35.3266025, + -1.5233688 + ], + [ + 35.3262752, + -1.5234064 + ], + [ + 35.3257656, + -1.5234761 + ], + [ + 35.3254022, + -1.5235217 + ], + [ + 35.3249851, + -1.5235431 + ], + [ + 35.3235581, + -1.5237201 + ], + [ + 35.3223485, + -1.5238381 + ], + [ + 35.3213802, + -1.5239587 + ], + [ + 35.3202805, + -1.5240847 + ], + [ + 35.3201424, + -1.5241056 + ], + [ + 35.3196609, + -1.5241786 + ], + [ + 35.319225, + -1.5241907 + ], + [ + 35.3189313, + -1.5242094 + ], + [ + 35.3184888, + -1.5242067 + ], + [ + 35.3181066, + -1.5241705 + ], + [ + 35.3179617, + -1.5241531 + ], + [ + 35.3174776, + -1.5240713 + ], + [ + 35.3171651, + -1.5239802 + ], + [ + 35.3165375, + -1.5237536 + ], + [ + 35.3163108, + -1.523708 + ], + [ + 35.3160681, + -1.523704 + ], + [ + 35.315765, + -1.5237415 + ], + [ + 35.3154364, + -1.5238287 + ], + [ + 35.3152661, + -1.5238863 + ], + [ + 35.3151172, + -1.5239413 + ], + [ + 35.3149127, + -1.524028 + ], + [ + 35.3145299, + -1.5241812 + ], + [ + 35.3140497, + -1.5243341 + ], + [ + 35.3137963, + -1.5243985 + ], + [ + 35.3134958, + -1.5244467 + ], + [ + 35.3132746, + -1.5244735 + ], + [ + 35.3129044, + -1.5245057 + ], + [ + 35.3124619, + -1.5245218 + ], + [ + 35.3117618, + -1.524562 + ], + [ + 35.3106004, + -1.5245701 + ], + [ + 35.3096764, + -1.5245687 + ], + [ + 35.3094036, + -1.5245661 + ], + [ + 35.3090568, + -1.5245701 + ], + [ + 35.3084711, + -1.5246238 + ], + [ + 35.3078592, + -1.5247148 + ], + [ + 35.3074649, + -1.5247752 + ], + [ + 35.3066106, + -1.5249629 + ], + [ + 35.306097, + -1.5250889 + ], + [ + 35.305645, + -1.5252109 + ], + [ + 35.3053848, + -1.525298 + ], + [ + 35.3051716, + -1.5253972 + ], + [ + 35.305012, + -1.5254844 + ], + [ + 35.3048068, + -1.5256171 + ], + [ + 35.3044447, + -1.5258705 + ], + [ + 35.3037138, + -1.5263759 + ], + [ + 35.3030714, + -1.5268196 + ], + [ + 35.3024103, + -1.527258 + ], + [ + 35.3018108, + -1.5275784 + ], + [ + 35.3013857, + -1.5277943 + ], + [ + 35.3010558, + -1.5279592 + ], + [ + 35.3007956, + -1.5280637 + ], + [ + 35.3005475, + -1.5281294 + ], + [ + 35.3002994, + -1.528183 + ], + [ + 35.2998206, + -1.5281844 + ], + [ + 35.2996074, + -1.5281696 + ], + [ + 35.2988952, + -1.52812 + ], + [ + 35.2982721, + -1.5280487 + ], + [ + 35.2977794, + -1.5279685 + ], + [ + 35.2975287, + -1.5279163 + ], + [ + 35.2973637, + -1.527872 + ], + [ + 35.2970204, + -1.5277688 + ], + [ + 35.29672, + -1.5276428 + ], + [ + 35.2962452, + -1.5274028 + ], + [ + 35.2958523, + -1.5272754 + ], + [ + 35.2955827, + -1.5272232 + ], + [ + 35.295407, + -1.5272138 + ], + [ + 35.2952783, + -1.5272352 + ], + [ + 35.295112, + -1.5272956 + ], + [ + 35.2949725, + -1.5273733 + ], + [ + 35.2947083, + -1.5275516 + ], + [ + 35.2944548, + -1.5277862 + ], + [ + 35.294078, + -1.5281428 + ], + [ + 35.2937897, + -1.5284378 + ], + [ + 35.2935617, + -1.5287193 + ], + [ + 35.2934235, + -1.5289271 + ], + [ + 35.2933283, + -1.5291416 + ], + [ + 35.293276, + -1.5292569 + ], + [ + 35.2931634, + -1.5296162 + ], + [ + 35.2931043, + -1.5298468 + ], + [ + 35.2930413, + -1.5301565 + ], + [ + 35.2929836, + -1.5305251 + ], + [ + 35.2929568, + -1.5307155 + ], + [ + 35.2929327, + -1.5309541 + ], + [ + 35.2928723, + -1.5317196 + ], + [ + 35.2928254, + -1.5322465 + ], + [ + 35.2927878, + -1.5328189 + ], + [ + 35.2927691, + -1.5332949 + ], + [ + 35.292757, + -1.5338271 + ], + [ + 35.2927583, + -1.5343017 + ], + [ + 35.2927811, + -1.5355873 + ], + [ + 35.2927972, + -1.5359386 + ], + [ + 35.292863, + -1.5367067 + ], + [ + 35.2929099, + -1.5372577 + ], + [ + 35.2929139, + -1.5374065 + ], + [ + 35.2929092, + -1.5378402 + ], + [ + 35.2928904, + -1.5380983 + ], + [ + 35.2928106, + -1.5385474 + ], + [ + 35.2927396, + -1.5388826 + ], + [ + 35.292635, + -1.5392794 + ], + [ + 35.2925143, + -1.5395958 + ], + [ + 35.2922434, + -1.5401293 + ], + [ + 35.2919376, + -1.5407246 + ], + [ + 35.2917123, + -1.541175 + ], + [ + 35.2913421, + -1.5417944 + ], + [ + 35.291149, + -1.5420947 + ], + [ + 35.2905536, + -1.5429339 + ], + [ + 35.2900359, + -1.5435935 + ], + [ + 35.2897516, + -1.5439045 + ], + [ + 35.2894244, + -1.5441727 + ], + [ + 35.2889281, + -1.5445051 + ], + [ + 35.2879438, + -1.5451218 + ], + [ + 35.2866751, + -1.5457733 + ], + [ + 35.2856988, + -1.5462238 + ], + [ + 35.2845642, + -1.5467198 + ], + [ + 35.2841002, + -1.5469477 + ], + [ + 35.2836254, + -1.547248 + ], + [ + 35.2833787, + -1.5474304 + ], + [ + 35.2830246, + -1.5477521 + ], + [ + 35.2824506, + -1.5483312 + ], + [ + 35.2817425, + -1.5490351 + ], + [ + 35.2813375, + -1.5494024 + ], + [ + 35.2804068, + -1.5502054 + ], + [ + 35.279763, + -1.5508221 + ], + [ + 35.2794546, + -1.5510849 + ], + [ + 35.2789852, + -1.5514093 + ], + [ + 35.2777755, + -1.5522753 + ], + [ + 35.2764854, + -1.5531333 + ], + [ + 35.2747634, + -1.5543506 + ], + [ + 35.2736852, + -1.5550799 + ], + [ + 35.2730334, + -1.5555571 + ], + [ + 35.2723762, + -1.5561148 + ], + [ + 35.2711612, + -1.5571337 + ], + [ + 35.2704987, + -1.5577611 + ], + [ + 35.2687177, + -1.5593377 + ], + [ + 35.2681799, + -1.5599101 + ], + [ + 35.2675939, + -1.5605469 + ], + [ + 35.266867, + -1.5614129 + ], + [ + 35.2661508, + -1.5622226 + ], + [ + 35.2631012, + -1.5657055 + ], + [ + 35.2622911, + -1.566593 + ], + [ + 35.2615294, + -1.5675422 + ], + [ + 35.2605584, + -1.5688747 + ], + [ + 35.2599281, + -1.5697032 + ], + [ + 35.2595901, + -1.5701161 + ], + [ + 35.2593836, + -1.5703494 + ], + [ + 35.2591825, + -1.5705196 + ], + [ + 35.2584261, + -1.5711216 + ], + [ + 35.2575557, + -1.5717383 + ], + [ + 35.256637, + -1.5724166 + ], + [ + 35.2556969, + -1.573103 + ], + [ + 35.2549419, + -1.5736352 + ], + [ + 35.2543183, + -1.5741084 + ], + [ + 35.2533875, + -1.574823 + ], + [ + 35.2527465, + -1.5753485 + ], + [ + 35.2522315, + -1.5758244 + ], + [ + 35.2513625, + -1.5767561 + ], + [ + 35.2507603, + -1.5774358 + ], + [ + 35.250252, + -1.5780404 + ], + [ + 35.2497371, + -1.5786222 + ], + [ + 35.2494997, + -1.5788689 + ], + [ + 35.2492824, + -1.5790472 + ], + [ + 35.2489565, + -1.5792871 + ], + [ + 35.2485207, + -1.5796692 + ], + [ + 35.2473284, + -1.5806278 + ], + [ + 35.2466632, + -1.581176 + ], + [ + 35.2465291, + -1.5812632 + ], + [ + 35.2463212, + -1.5813731 + ], + [ + 35.2454482, + -1.581829 + ], + [ + 35.2452309, + -1.5819486 + ], + [ + 35.245137, + -1.5819938 + ], + [ + 35.2449976, + -1.5821158 + ], + [ + 35.244901, + -1.5822298 + ], + [ + 35.2447533, + -1.5824175 + ], + [ + 35.2445091, + -1.5827246 + ], + [ + 35.2443298, + -1.5828977 + ], + [ + 35.2440721, + -1.5830569 + ], + [ + 35.2438947, + -1.5831326 + ], + [ + 35.2436941, + -1.583145 + ], + [ + 35.2433364, + -1.5831394 + ], + [ + 35.2431162, + -1.5831109 + ], + [ + 35.2428834, + -1.5830656 + ], + [ + 35.2424803, + -1.5829938 + ], + [ + 35.2422368, + -1.5829541 + ], + [ + 35.2418974, + -1.5829126 + ], + [ + 35.2412831, + -1.5829047 + ], + [ + 35.2406202, + -1.5828491 + ], + [ + 35.2389644, + -1.5826894 + ], + [ + 35.2387284, + -1.5826355 + ], + [ + 35.2382934, + -1.5825292 + ], + [ + 35.2375055, + -1.5825478 + ], + [ + 35.2366246, + -1.5825648 + ], + [ + 35.2356688, + -1.5826092 + ], + [ + 35.2349742, + -1.5827727 + ], + [ + 35.2345611, + -1.5830167 + ], + [ + 35.2341749, + -1.5834014 + ], + [ + 35.2340542, + -1.5836347 + ], + [ + 35.2338906, + -1.5839095 + ], + [ + 35.2337081, + -1.5843412 + ], + [ + 35.2335499, + -1.5848399 + ], + [ + 35.2334065, + -1.5852178 + ], + [ + 35.2333029, + -1.5856117 + ], + [ + 35.2329502, + -1.5865358 + ], + [ + 35.2324432, + -1.5874859 + ], + [ + 35.2320934, + -1.5881192 + ], + [ + 35.2319238, + -1.5885826 + ], + [ + 35.2318258, + -1.589011 + ], + [ + 35.2317569, + -1.5893288 + ], + [ + 35.2316642, + -1.589536 + ], + [ + 35.231592, + -1.5898404 + ], + [ + 35.2314693, + -1.5901312 + ], + [ + 35.2312729, + -1.5904736 + ], + [ + 35.2310994, + -1.5908997 + ], + [ + 35.230999, + -1.5911442 + ], + [ + 35.2309292, + -1.5914181 + ], + [ + 35.2308737, + -1.5916348 + ], + [ + 35.2308878, + -1.5918311 + ], + [ + 35.2308959, + -1.5925898 + ], + [ + 35.2309334, + -1.5934357 + ], + [ + 35.2309906, + -1.5941455 + ], + [ + 35.2310595, + -1.5946691 + ], + [ + 35.2311276, + -1.5950727 + ], + [ + 35.2311908, + -1.5955054 + ], + [ + 35.2312159, + -1.596208 + ], + [ + 35.231203, + -1.5967564 + ], + [ + 35.2311909, + -1.5970728 + ], + [ + 35.231152, + -1.5974387 + ], + [ + 35.2311145, + -1.5980581 + ], + [ + 35.231085, + -1.5984723 + ], + [ + 35.2310729, + -1.5989053 + ], + [ + 35.2310776, + -1.6012855 + ], + [ + 35.2311528, + -1.603216 + ], + [ + 35.2312084, + -1.6041725 + ], + [ + 35.2312523, + -1.6049778 + ], + [ + 35.2313679, + -1.606005 + ], + [ + 35.2315637, + -1.6068349 + ], + [ + 35.2318979, + -1.6081829 + ], + [ + 35.2321219, + -1.6087727 + ], + [ + 35.2326339, + -1.6099985 + ], + [ + 35.2332361, + -1.6114572 + ], + [ + 35.2338699, + -1.612932 + ], + [ + 35.2340247, + -1.6132535 + ], + [ + 35.2344565, + -1.6142623 + ], + [ + 35.2347773, + -1.6151458 + ], + [ + 35.2350855, + -1.6162846 + ], + [ + 35.2353336, + -1.617113 + ], + [ + 35.235512, + -1.617605 + ], + [ + 35.2356239, + -1.6178399 + ], + [ + 35.2358148, + -1.6181984 + ], + [ + 35.2359948, + -1.618404 + ], + [ + 35.2361557, + -1.6185595 + ], + [ + 35.2364507, + -1.618782 + ], + [ + 35.2368343, + -1.6190046 + ], + [ + 35.2374566, + -1.6193236 + ], + [ + 35.2380037, + -1.6195864 + ], + [ + 35.2404901, + -1.6207312 + ], + [ + 35.2425045, + -1.6216643 + ], + [ + 35.243006, + -1.6219619 + ], + [ + 35.243293, + -1.6221764 + ], + [ + 35.2434593, + -1.6223399 + ], + [ + 35.2435881, + -1.6225464 + ], + [ + 35.2436873, + -1.6227072 + ], + [ + 35.2437732, + -1.6229164 + ], + [ + 35.2438582, + -1.6233939 + ], + [ + 35.2438536, + -1.6238762 + ], + [ + 35.2437545, + -1.6243429 + ], + [ + 35.2435751, + -1.6248527 + ], + [ + 35.2433692, + -1.6253174 + ], + [ + 35.2431847, + -1.625598 + ], + [ + 35.2429792, + -1.6259031 + ], + [ + 35.2427639, + -1.6260964 + ], + [ + 35.2425924, + -1.6262454 + ], + [ + 35.2424501, + -1.6263619 + ], + [ + 35.2422182, + -1.6264879 + ], + [ + 35.2419458, + -1.6266222 + ], + [ + 35.2416574, + -1.6267603 + ], + [ + 35.2411433, + -1.6270024 + ], + [ + 35.2404378, + -1.6272826 + ], + [ + 35.2396506, + -1.6275735 + ], + [ + 35.2393596, + -1.6277049 + ], + [ + 35.2390766, + -1.6278242 + ], + [ + 35.2387561, + -1.6279569 + ], + [ + 35.2383926, + -1.6281124 + ], + [ + 35.2379702, + -1.6283296 + ], + [ + 35.2372715, + -1.6286593 + ], + [ + 35.2367163, + -1.6289395 + ], + [ + 35.236149, + -1.6292117 + ], + [ + 35.2356984, + -1.6294302 + ], + [ + 35.2352719, + -1.6296366 + ], + [ + 35.2349165, + -1.6298189 + ], + [ + 35.2347301, + -1.6299302 + ], + [ + 35.2345665, + -1.6300307 + ], + [ + 35.2344082, + -1.6301594 + ], + [ + 35.2341454, + -1.6304208 + ], + [ + 35.2339898, + -1.6306206 + ], + [ + 35.2336559, + -1.6310871 + ], + [ + 35.2333769, + -1.631504 + ], + [ + 35.232988, + -1.6321394 + ], + [ + 35.2326836, + -1.6326354 + ], + [ + 35.2323255, + -1.6332132 + ], + [ + 35.2309793, + -1.635394 + ], + [ + 35.2306303, + -1.6360468 + ], + [ + 35.23047, + -1.6363666 + ], + [ + 35.22997, + -1.6373846 + ], + [ + 35.2295394, + -1.6382403 + ], + [ + 35.2290845, + -1.639245 + ], + [ + 35.2290638, + -1.6392894 + ], + [ + 35.228939, + -1.6396144 + ], + [ + 35.2288233, + -1.6399215 + ], + [ + 35.2287086, + -1.6402324 + ], + [ + 35.2286281, + -1.6404556 + ], + [ + 35.2284919, + -1.6408102 + ], + [ + 35.2284222, + -1.6410293 + ], + [ + 35.2283451, + -1.6412747 + ], + [ + 35.2282512, + -1.6416024 + ], + [ + 35.2282177, + -1.6417941 + ], + [ + 35.228156, + -1.6420663 + ], + [ + 35.2281003, + -1.642272 + ], + [ + 35.2280259, + -1.6425649 + ], + [ + 35.2279568, + -1.642888 + ], + [ + 35.2279032, + -1.643124 + ], + [ + 35.2278422, + -1.6433726 + ], + [ + 35.2277718, + -1.643681 + ], + [ + 35.2277248, + -1.6438713 + ], + [ + 35.2276799, + -1.6440375 + ], + [ + 35.2276424, + -1.6441502 + ], + [ + 35.2276162, + -1.6442232 + ], + [ + 35.2275854, + -1.6442902 + ], + [ + 35.2275103, + -1.6444069 + ], + [ + 35.2274345, + -1.6445155 + ], + [ + 35.2273285, + -1.6446334 + ], + [ + 35.227128, + -1.6448613 + ], + [ + 35.2269255, + -1.6450725 + ], + [ + 35.2267116, + -1.6452601 + ], + [ + 35.2264709, + -1.6454639 + ], + [ + 35.2262583, + -1.6456382 + ], + [ + 35.226082, + -1.6457829 + ], + [ + 35.2259727, + -1.6458701 + ], + [ + 35.2259036, + -1.6459344 + ], + [ + 35.2258426, + -1.6460068 + ], + [ + 35.2257876, + -1.6460946 + ], + [ + 35.2257474, + -1.646163 + ], + [ + 35.2256595, + -1.6463473 + ], + [ + 35.225565, + -1.6465826 + ], + [ + 35.2254711, + -1.6467729 + ], + [ + 35.2253745, + -1.6469398 + ], + [ + 35.2252793, + -1.647094 + ], + [ + 35.2251338, + -1.6473004 + ], + [ + 35.2250011, + -1.6474895 + ], + [ + 35.2248783, + -1.6476376 + ], + [ + 35.2246825, + -1.6478608 + ], + [ + 35.22459, + -1.6479479 + ], + [ + 35.2244318, + -1.6480874 + ], + [ + 35.22425, + -1.6482268 + ], + [ + 35.2239255, + -1.6484513 + ], + [ + 35.2236606, + -1.6486363 + ], + [ + 35.2234923, + -1.6487596 + ], + [ + 35.2232891, + -1.6489131 + ], + [ + 35.2229217, + -1.6491739 + ], + [ + 35.2224838, + -1.6494963 + ], + [ + 35.2221525, + -1.6497443 + ], + [ + 35.2216684, + -1.6500921 + ], + [ + 35.2214954, + -1.6502356 + ], + [ + 35.2212151, + -1.6504574 + ], + [ + 35.2208564, + -1.6507195 + ], + [ + 35.2206324, + -1.6508603 + ], + [ + 35.2202824, + -1.6510593 + ], + [ + 35.2199786, + -1.6512309 + ], + [ + 35.2197225, + -1.6513784 + ], + [ + 35.2193154, + -1.6515674 + ], + [ + 35.2188957, + -1.6517531 + ], + [ + 35.2184471, + -1.6519535 + ], + [ + 35.2179247, + -1.6521881 + ], + [ + 35.2174741, + -1.6523919 + ], + [ + 35.2170416, + -1.6525822 + ], + [ + 35.2167845, + -1.6526989 + ], + [ + 35.2166198, + -1.6527737 + ], + [ + 35.2165394, + -1.6528135 + ], + [ + 35.2163731, + -1.6528925 + ], + [ + 35.2162024, + -1.6529564 + ] + ] + }, + "id": "way/486090765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/487189744", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9299691, + -2.5057485 + ], + [ + 33.9299242, + -2.5057431 + ] + ] + }, + "id": "way/487189744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/487189745", + "highway": "secondary", + "ref": "R348", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9680686, + -2.5097698 + ], + [ + 33.9648694, + -2.5092712 + ], + [ + 33.9642425, + -2.5091728 + ], + [ + 33.9605222, + -2.5086167 + ], + [ + 33.9601776, + -2.508568 + ], + [ + 33.9598436, + -2.5085323 + ], + [ + 33.9582893, + -2.508351 + ], + [ + 33.9539765, + -2.5079039 + ], + [ + 33.9511436, + -2.507606 + ], + [ + 33.9474875, + -2.5072754 + ], + [ + 33.9462195, + -2.507184 + ], + [ + 33.9438095, + -2.5070551 + ], + [ + 33.9402971, + -2.5068407 + ], + [ + 33.9386137, + -2.5066687 + ], + [ + 33.9375397, + -2.5065665 + ], + [ + 33.9356874, + -2.5063623 + ], + [ + 33.9346527, + -2.5062756 + ], + [ + 33.9329985, + -2.5060721 + ], + [ + 33.9327011, + -2.5060414 + ], + [ + 33.9322993, + -2.5059997 + ], + [ + 33.9314231, + -2.5059209 + ], + [ + 33.9299691, + -2.5057485 + ] + ] + }, + "id": "way/487189745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/487581380", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9093385, + -2.3506611 + ], + [ + 33.907381, + -2.350153 + ], + [ + 33.9062226, + -2.3498403 + ], + [ + 33.9057296, + -2.3496765 + ], + [ + 33.9051, + -2.3494674 + ], + [ + 33.9040996, + -2.3490064 + ], + [ + 33.9033131, + -2.348598 + ], + [ + 33.9018036, + -2.3477709 + ], + [ + 33.8996337, + -2.3466078 + ], + [ + 33.8959641, + -2.3446477 + ], + [ + 33.8933775, + -2.3432217 + ], + [ + 33.8916984, + -2.3423051 + ], + [ + 33.8900121, + -2.3413877 + ], + [ + 33.8883797, + -2.3405227 + ], + [ + 33.8876334, + -2.3400938 + ], + [ + 33.8872853, + -2.3399079 + ], + [ + 33.8859752, + -2.3392298 + ] + ] + }, + "id": "way/487581380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489606252", + "highway": "secondary", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5466321, + -1.4288215 + ], + [ + 34.5456504, + -1.4280841 + ], + [ + 34.545147, + -1.4278186 + ], + [ + 34.5424563, + -1.4263992 + ], + [ + 34.5410907, + -1.4255744 + ], + [ + 34.5404068, + -1.4252566 + ], + [ + 34.5397174, + -1.4249161 + ], + [ + 34.5378023, + -1.4243959 + ], + [ + 34.5364473, + -1.4238858 + ], + [ + 34.5346668, + -1.4231169 + ], + [ + 34.5341089, + -1.422889 + ], + [ + 34.5339272, + -1.4228163 + ], + [ + 34.5326847, + -1.422401 + ], + [ + 34.5314725, + -1.4221189 + ], + [ + 34.5296732, + -1.4219384 + ], + [ + 34.5295224, + -1.4219108 + ], + [ + 34.5291329, + -1.4218581 + ], + [ + 34.528671, + -1.4217957 + ], + [ + 34.5282675, + -1.4216758 + ], + [ + 34.5279077, + -1.4215193 + ], + [ + 34.5274466, + -1.421264 + ], + [ + 34.5274225, + -1.4212501 + ], + [ + 34.5271794, + -1.4211092 + ], + [ + 34.5268676, + -1.4209432 + ], + [ + 34.5267994, + -1.4209069 + ], + [ + 34.5265821, + -1.4208305 + ], + [ + 34.5264009, + -1.420787 + ], + [ + 34.5261957, + -1.4207593 + ], + [ + 34.5260145, + -1.4207649 + ], + [ + 34.5258347, + -1.420792 + ], + [ + 34.5255166, + -1.4208354 + ], + [ + 34.5250713, + -1.4208961 + ], + [ + 34.52488, + -1.4209196 + ], + [ + 34.5240537, + -1.4209944 + ], + [ + 34.5240018, + -1.4210119 + ], + [ + 34.5236016, + -1.4210516 + ], + [ + 34.5226282, + -1.4211429 + ], + [ + 34.5223757, + -1.4211442 + ], + [ + 34.5223612, + -1.4211434 + ], + [ + 34.5221892, + -1.4211332 + ], + [ + 34.5219209, + -1.4210272 + ], + [ + 34.5215607, + -1.4208477 + ], + [ + 34.5213951, + -1.4208122 + ], + [ + 34.5211629, + -1.4206765 + ], + [ + 34.5197312, + -1.4198394 + ], + [ + 34.5194989, + -1.4196986 + ], + [ + 34.5193775, + -1.419622 + ], + [ + 34.5187559, + -1.4192301 + ], + [ + 34.5184329, + -1.4190157 + ], + [ + 34.5174325, + -1.4183517 + ], + [ + 34.5173731, + -1.4183122 + ], + [ + 34.5170907, + -1.4181832 + ], + [ + 34.516218, + -1.4177845 + ], + [ + 34.5161923, + -1.4177742 + ], + [ + 34.5155337, + -1.4175109 + ], + [ + 34.5154274, + -1.4174745 + ], + [ + 34.5148909, + -1.4172907 + ], + [ + 34.514581, + -1.4170938 + ], + [ + 34.5145851, + -1.41704 + ], + [ + 34.5143947, + -1.4168604 + ], + [ + 34.5143029, + -1.4168444 + ], + [ + 34.5140862, + -1.4165695 + ], + [ + 34.5139172, + -1.4161605 + ], + [ + 34.5136386, + -1.4155451 + ], + [ + 34.5135525, + -1.4152864 + ], + [ + 34.5134643, + -1.4151338 + ], + [ + 34.5133272, + -1.4148534 + ], + [ + 34.5131542, + -1.4144726 + ], + [ + 34.5127932, + -1.4137735 + ], + [ + 34.5126352, + -1.4135154 + ], + [ + 34.5124911, + -1.413222 + ], + [ + 34.5124259, + -1.4131118 + ], + [ + 34.5123368, + -1.4129648 + ], + [ + 34.5121872, + -1.4128128 + ], + [ + 34.5119726, + -1.412613 + ], + [ + 34.5114502, + -1.4123939 + ], + [ + 34.509961, + -1.4119816 + ], + [ + 34.5096472, + -1.4117952 + ], + [ + 34.5094391, + -1.4116378 + ], + [ + 34.5091644, + -1.4114373 + ], + [ + 34.5090094, + -1.4111223 + ], + [ + 34.5084436, + -1.4102133 + ], + [ + 34.5084078, + -1.4100053 + ], + [ + 34.5079255, + -1.4095231 + ], + [ + 34.5078878, + -1.4094779 + ], + [ + 34.507768, + -1.4092753 + ], + [ + 34.5075349, + -1.4091428 + ], + [ + 34.507386, + -1.4089797 + ], + [ + 34.50698, + -1.4086988 + ], + [ + 34.5068439, + -1.4085802 + ], + [ + 34.5066192, + -1.4083843 + ], + [ + 34.5065981, + -1.408366 + ], + [ + 34.5062864, + -1.4080609 + ], + [ + 34.5060548, + -1.4078668 + ], + [ + 34.5060343, + -1.4078496 + ], + [ + 34.5058062, + -1.4075988 + ], + [ + 34.5055811, + -1.4075249 + ], + [ + 34.5055273, + -1.4074951 + ], + [ + 34.5052564, + -1.4073843 + ], + [ + 34.5049243, + -1.4073465 + ], + [ + 34.5046985, + -1.4072851 + ], + [ + 34.5043195, + -1.4072784 + ], + [ + 34.5042206, + -1.4072814 + ], + [ + 34.5035433, + -1.4073418 + ], + [ + 34.5031054, + -1.407458 + ], + [ + 34.5028915, + -1.4075184 + ], + [ + 34.5027526, + -1.4075652 + ], + [ + 34.5025713, + -1.4076219 + ], + [ + 34.5025279, + -1.4076393 + ], + [ + 34.5018072, + -1.4079433 + ], + [ + 34.5013623, + -1.4081402 + ], + [ + 34.5013109, + -1.4081713 + ], + [ + 34.5012747, + -1.4081861 + ], + [ + 34.5011902, + -1.4082383 + ], + [ + 34.5005867, + -1.408544 + ], + [ + 34.5001682, + -1.4087357 + ], + [ + 34.4997364, + -1.4088256 + ], + [ + 34.4994072, + -1.4088367 + ], + [ + 34.4986044, + -1.4088262 + ], + [ + 34.498117, + -1.4088178 + ], + [ + 34.4975943, + -1.408788 + ], + [ + 34.4974386, + -1.4087545 + ], + [ + 34.4967136, + -1.4084442 + ], + [ + 34.4960641, + -1.4081536 + ], + [ + 34.4960087, + -1.4081272 + ], + [ + 34.495922, + -1.4080859 + ], + [ + 34.4948888, + -1.4076374 + ], + [ + 34.4948494, + -1.4076203 + ], + [ + 34.4938526, + -1.4071414 + ], + [ + 34.4936002, + -1.4070944 + ], + [ + 34.4934091, + -1.4070446 + ], + [ + 34.4932096, + -1.4070237 + ], + [ + 34.4930794, + -1.4070093 + ], + [ + 34.492781, + -1.4070155 + ], + [ + 34.4922623, + -1.4070021 + ], + [ + 34.4919583, + -1.4070171 + ], + [ + 34.4909234, + -1.4069982 + ], + [ + 34.4905834, + -1.4069872 + ], + [ + 34.4905291, + -1.4069855 + ], + [ + 34.4898786, + -1.4069252 + ], + [ + 34.4892972, + -1.4068359 + ], + [ + 34.488226, + -1.4067532 + ], + [ + 34.4877818, + -1.4067137 + ], + [ + 34.4873978, + -1.4066934 + ], + [ + 34.4871585, + -1.4067019 + ], + [ + 34.4870512, + -1.4067084 + ], + [ + 34.486674, + -1.4068313 + ], + [ + 34.4858572, + -1.4071673 + ], + [ + 34.4856941, + -1.407248 + ], + [ + 34.4853986, + -1.4073864 + ], + [ + 34.4851264, + -1.4075148 + ], + [ + 34.4849473, + -1.4075992 + ], + [ + 34.48464, + -1.407726 + ], + [ + 34.4837459, + -1.4080493 + ], + [ + 34.4836644, + -1.4080775 + ], + [ + 34.483383, + -1.4081619 + ], + [ + 34.482978, + -1.4082276 + ], + [ + 34.4825434, + -1.4082531 + ], + [ + 34.4817307, + -1.4082504 + ], + [ + 34.4812882, + -1.4082652 + ], + [ + 34.4810951, + -1.4082754 + ], + [ + 34.4809798, + -1.4082919 + ], + [ + 34.4808555, + -1.4083294 + ], + [ + 34.4807142, + -1.4084256 + ], + [ + 34.480623, + -1.4085145 + ], + [ + 34.4804446, + -1.4088108 + ], + [ + 34.4801019, + -1.4095141 + ], + [ + 34.4783899, + -1.4125761 + ], + [ + 34.4780846, + -1.4132252 + ], + [ + 34.4780304, + -1.4133404 + ], + [ + 34.4773514, + -1.4145818 + ], + [ + 34.4769099, + -1.4153868 + ], + [ + 34.4767525, + -1.4156537 + ], + [ + 34.476546, + -1.4158079 + ], + [ + 34.4762617, + -1.4160747 + ], + [ + 34.4758834, + -1.4164249 + ], + [ + 34.4752635, + -1.4169386 + ], + [ + 34.4745968, + -1.4175834 + ], + [ + 34.4738126, + -1.4182276 + ], + [ + 34.4734653, + -1.41849 + ], + [ + 34.4728058, + -1.4189899 + ], + [ + 34.4724583, + -1.4192602 + ], + [ + 34.4719541, + -1.4195941 + ], + [ + 34.471182, + -1.4200847 + ], + [ + 34.4705597, + -1.4203303 + ], + [ + 34.4703341, + -1.4203837 + ], + [ + 34.470204, + -1.4204065 + ], + [ + 34.4700422, + -1.4204117 + ], + [ + 34.4697574, + -1.4203851 + ], + [ + 34.4694288, + -1.420314 + ], + [ + 34.4692438, + -1.4202396 + ], + [ + 34.4690727, + -1.4201598 + ], + [ + 34.4688883, + -1.4200387 + ], + [ + 34.468708, + -1.4199386 + ], + [ + 34.4683918, + -1.4196726 + ], + [ + 34.4675006, + -1.4191167 + ], + [ + 34.4673018, + -1.4190202 + ], + [ + 34.4671784, + -1.4189746 + ], + [ + 34.4670229, + -1.4189371 + ], + [ + 34.4665548, + -1.4188071 + ], + [ + 34.4662678, + -1.4187843 + ], + [ + 34.4660197, + -1.4187212 + ], + [ + 34.4654632, + -1.4186221 + ], + [ + 34.4651668, + -1.4185309 + ], + [ + 34.4649333, + -1.4183995 + ], + [ + 34.4644972, + -1.4182199 + ], + [ + 34.4642333, + -1.4180348 + ], + [ + 34.4638705, + -1.41788 + ], + [ + 34.4630392, + -1.4174357 + ], + [ + 34.4629512, + -1.4173886 + ], + [ + 34.4623437, + -1.4170602 + ], + [ + 34.4618851, + -1.4168295 + ], + [ + 34.4611209, + -1.4165745 + ], + [ + 34.4608719, + -1.4165145 + ], + [ + 34.4604043, + -1.4164064 + ], + [ + 34.459731, + -1.4161973 + ], + [ + 34.4593075, + -1.4160225 + ], + [ + 34.4590875, + -1.4159018 + ], + [ + 34.4588568, + -1.4157235 + ], + [ + 34.458425, + -1.4153373 + ], + [ + 34.4582561, + -1.4151671 + ], + [ + 34.4577705, + -1.414679 + ], + [ + 34.4574058, + -1.4143546 + ], + [ + 34.4571778, + -1.4141857 + ], + [ + 34.4571637, + -1.4141777 + ], + [ + 34.4566575, + -1.4139229 + ], + [ + 34.455883, + -1.4134952 + ], + [ + 34.4557977, + -1.4134691 + ], + [ + 34.4557395, + -1.4134622 + ], + [ + 34.4555095, + -1.4134349 + ], + [ + 34.4545412, + -1.4135636 + ], + [ + 34.4542783, + -1.413632 + ], + [ + 34.4540146, + -1.4137446 + ], + [ + 34.4520102, + -1.4150292 + ], + [ + 34.4509031, + -1.4156939 + ], + [ + 34.44996, + -1.4163228 + ], + [ + 34.4498113, + -1.4164988 + ], + [ + 34.4497191, + -1.4165921 + ], + [ + 34.4493655, + -1.4169812 + ], + [ + 34.4491528, + -1.4173064 + ], + [ + 34.4490185, + -1.4175118 + ], + [ + 34.4483587, + -1.4183928 + ], + [ + 34.4482895, + -1.4185117 + ], + [ + 34.4481869, + -1.4185538 + ], + [ + 34.4480275, + -1.4185966 + ], + [ + 34.4479295, + -1.4186033 + ], + [ + 34.4476184, + -1.4185993 + ], + [ + 34.4474267, + -1.4185711 + ], + [ + 34.4470229, + -1.4184853 + ], + [ + 34.4466099, + -1.4184048 + ], + [ + 34.4462585, + -1.4183526 + ], + [ + 34.4459554, + -1.4182185 + ], + [ + 34.4448262, + -1.4176715 + ], + [ + 34.4448138, + -1.4176652 + ], + [ + 34.4442906, + -1.4174201 + ], + [ + 34.4441195, + -1.41734 + ], + [ + 34.4440591, + -1.4173122 + ], + [ + 34.4439045, + -1.4172454 + ], + [ + 34.4437211, + -1.4172304 + ], + [ + 34.4435227, + -1.4172331 + ], + [ + 34.4431257, + -1.4173001 + ], + [ + 34.4425359, + -1.4174525 + ], + [ + 34.4418856, + -1.4175815 + ], + [ + 34.441289, + -1.4176729 + ], + [ + 34.4406279, + -1.4177995 + ], + [ + 34.4403331, + -1.4178613 + ], + [ + 34.4400619, + -1.4179149 + ], + [ + 34.4397739, + -1.4179715 + ], + [ + 34.4394999, + -1.4180413 + ], + [ + 34.4393869, + -1.4180554 + ], + [ + 34.4390307, + -1.4181282 + ], + [ + 34.4382362, + -1.4182758 + ], + [ + 34.43792, + -1.4183336 + ], + [ + 34.4376437, + -1.4184111 + ], + [ + 34.4373836, + -1.4184573 + ], + [ + 34.4371018, + -1.4185183 + ], + [ + 34.4369288, + -1.4185577 + ], + [ + 34.4367193, + -1.4186116 + ], + [ + 34.4365832, + -1.4186341 + ], + [ + 34.4364921, + -1.4186432 + ], + [ + 34.4362993, + -1.4186624 + ], + [ + 34.4361996, + -1.4186639 + ], + [ + 34.4359418, + -1.4186666 + ], + [ + 34.4358685, + -1.4186673 + ], + [ + 34.4357339, + -1.4186686 + ], + [ + 34.4344515, + -1.4186806 + ], + [ + 34.4344179, + -1.4186809 + ], + [ + 34.4343447, + -1.4186816 + ], + [ + 34.4332271, + -1.418692 + ], + [ + 34.4329521, + -1.4187252 + ], + [ + 34.4325309, + -1.4188075 + ], + [ + 34.432372, + -1.4188855 + ], + [ + 34.4318482, + -1.4191018 + ], + [ + 34.4317997, + -1.4191279 + ], + [ + 34.4316651, + -1.4192257 + ], + [ + 34.430127, + -1.4198572 + ], + [ + 34.4300411, + -1.4198925 + ], + [ + 34.429942, + -1.4199326 + ], + [ + 34.4292004, + -1.4202125 + ], + [ + 34.4284441, + -1.4203844 + ], + [ + 34.4267662, + -1.420569 + ], + [ + 34.4263298, + -1.4206078 + ], + [ + 34.4252371, + -1.4207182 + ], + [ + 34.4234518, + -1.4208899 + ], + [ + 34.423385, + -1.4208976 + ], + [ + 34.4232696, + -1.4209048 + ], + [ + 34.4230949, + -1.4209184 + ], + [ + 34.4199864, + -1.4212248 + ], + [ + 34.4199372, + -1.4212328 + ], + [ + 34.4195643, + -1.4212635 + ], + [ + 34.4179519, + -1.4214185 + ], + [ + 34.4166571, + -1.4215444 + ], + [ + 34.4164922, + -1.4215588 + ], + [ + 34.4156039, + -1.4216388 + ], + [ + 34.4148189, + -1.421735 + ], + [ + 34.4131868, + -1.4218807 + ], + [ + 34.411891, + -1.4219653 + ], + [ + 34.4112514, + -1.4220074 + ], + [ + 34.4102638, + -1.4220593 + ], + [ + 34.4099357, + -1.4220766 + ], + [ + 34.4098976, + -1.4220786 + ], + [ + 34.4085144, + -1.4221489 + ], + [ + 34.4081976, + -1.4221799 + ], + [ + 34.4078197, + -1.4222065 + ], + [ + 34.4069119, + -1.4222647 + ], + [ + 34.4060885, + -1.4222996 + ], + [ + 34.4056486, + -1.422309 + ], + [ + 34.4052448, + -1.4223253 + ], + [ + 34.4049726, + -1.4223411 + ], + [ + 34.4049096, + -1.4223456 + ], + [ + 34.4048689, + -1.4223489 + ], + [ + 34.4047833, + -1.42235 + ], + [ + 34.4047548, + -1.422352 + ], + [ + 34.4041921, + -1.4224135 + ], + [ + 34.4036549, + -1.4224911 + ], + [ + 34.4034376, + -1.4225185 + ], + [ + 34.4019896, + -1.4226844 + ], + [ + 34.4019166, + -1.4226935 + ], + [ + 34.4016525, + -1.4227343 + ], + [ + 34.4015507, + -1.4227459 + ], + [ + 34.4010928, + -1.422801 + ], + [ + 34.4010218, + -1.4228066 + ], + [ + 34.4005953, + -1.4228439 + ], + [ + 34.4001862, + -1.4228962 + ], + [ + 34.3997752, + -1.4229483 + ], + [ + 34.3997152, + -1.4229565 + ], + [ + 34.3996056, + -1.4229705 + ], + [ + 34.3989846, + -1.4230544 + ], + [ + 34.3983611, + -1.4231328 + ], + [ + 34.397523, + -1.42324 + ], + [ + 34.3967063, + -1.4233432 + ], + [ + 34.3962219, + -1.4234137 + ], + [ + 34.3957259, + -1.4235028 + ], + [ + 34.3948621, + -1.4236108 + ], + [ + 34.3944345, + -1.423669 + ], + [ + 34.3942048, + -1.4236992 + ], + [ + 34.394041, + -1.4237165 + ] + ] + }, + "id": "way/489606252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489606253", + "highway": "secondary", + "ref": "R183", + "source": "classification Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5768828, + -1.3958666 + ], + [ + 34.5771359, + -1.3964826 + ], + [ + 34.577185, + -1.396601 + ], + [ + 34.5772064, + -1.3966743 + ], + [ + 34.5772158, + -1.3967708 + ], + [ + 34.5772281, + -1.3968566 + ], + [ + 34.5771869, + -1.3970859 + ], + [ + 34.5771649, + -1.3971649 + ], + [ + 34.577157, + -1.3971932 + ], + [ + 34.5771159, + -1.3973581 + ], + [ + 34.5770959, + -1.3974 + ], + [ + 34.576801, + -1.3980177 + ], + [ + 34.576556, + -1.3985405 + ], + [ + 34.5762575, + -1.3990715 + ], + [ + 34.5761422, + -1.3991707 + ], + [ + 34.5758767, + -1.3993718 + ], + [ + 34.5756604, + -1.3994978 + ], + [ + 34.5754744, + -1.3995649 + ], + [ + 34.5749916, + -1.3996989 + ], + [ + 34.5744068, + -1.3998102 + ], + [ + 34.573878, + -1.3998946 + ], + [ + 34.5735066, + -1.3999161 + ], + [ + 34.57278, + -1.3999014 + ], + [ + 34.5725065, + -1.3999215 + ], + [ + 34.5723854, + -1.399947 + ], + [ + 34.5722959, + -1.3999741 + ], + [ + 34.5721627, + -1.4000203 + ], + [ + 34.5720729, + -1.4000515 + ], + [ + 34.5717967, + -1.4001776 + ], + [ + 34.5714859, + -1.4003076 + ], + [ + 34.5712901, + -1.4004363 + ], + [ + 34.5710326, + -1.4006535 + ], + [ + 34.570877, + -1.4008519 + ], + [ + 34.570751, + -1.4012032 + ], + [ + 34.5707371, + -1.4013735 + ], + [ + 34.5707108, + -1.4016966 + ], + [ + 34.5707059, + -1.4020284 + ], + [ + 34.5707054, + -1.4020586 + ], + [ + 34.5707, + -1.4023079 + ], + [ + 34.5706975, + -1.4023594 + ], + [ + 34.5706866, + -1.4025868 + ], + [ + 34.5706608, + -1.40277 + ], + [ + 34.5706491, + -1.4028281 + ], + [ + 34.5706142, + -1.4030078 + ], + [ + 34.5705686, + -1.4032277 + ], + [ + 34.5703456, + -1.4039369 + ], + [ + 34.5702042, + -1.4042057 + ], + [ + 34.5701743, + -1.40426 + ], + [ + 34.5699835, + -1.404441 + ], + [ + 34.569552, + -1.4047453 + ], + [ + 34.569377, + -1.4048993 + ], + [ + 34.5693489, + -1.404926 + ], + [ + 34.5691551, + -1.40511 + ], + [ + 34.5689186, + -1.405417 + ], + [ + 34.5687625, + -1.4056644 + ], + [ + 34.5687547, + -1.4056768 + ], + [ + 34.5687112, + -1.4057393 + ], + [ + 34.5678775, + -1.4069725 + ], + [ + 34.5678579, + -1.4070104 + ], + [ + 34.5678413, + -1.4070423 + ], + [ + 34.5677894, + -1.4071425 + ], + [ + 34.5677578, + -1.4072415 + ], + [ + 34.5677371, + -1.4073061 + ], + [ + 34.5677157, + -1.4074656 + ], + [ + 34.567717, + -1.4077257 + ], + [ + 34.5677547, + -1.4080094 + ], + [ + 34.5678807, + -1.4087495 + ], + [ + 34.5679105, + -1.4092483 + ], + [ + 34.5678484, + -1.4101282 + ], + [ + 34.567835, + -1.4105385 + ], + [ + 34.5677841, + -1.4109997 + ], + [ + 34.5676553, + -1.4116808 + ], + [ + 34.5674716, + -1.4125643 + ], + [ + 34.5673603, + -1.4128794 + ], + [ + 34.567308, + -1.4130121 + ], + [ + 34.5671108, + -1.4133687 + ], + [ + 34.5668882, + -1.4136999 + ], + [ + 34.5666964, + -1.4139613 + ], + [ + 34.5661533, + -1.4147644 + ], + [ + 34.5655498, + -1.4156211 + ], + [ + 34.5652721, + -1.4160877 + ], + [ + 34.5651408, + -1.4163638 + ], + [ + 34.5648967, + -1.4169644 + ], + [ + 34.564552, + -1.4179619 + ], + [ + 34.5643991, + -1.4183092 + ], + [ + 34.564265, + -1.4185425 + ], + [ + 34.5641685, + -1.418639 + ], + [ + 34.5639821, + -1.4188388 + ], + [ + 34.5636803, + -1.4191163 + ], + [ + 34.5633262, + -1.419371 + ], + [ + 34.5630661, + -1.4195761 + ], + [ + 34.5629145, + -1.4197424 + ], + [ + 34.5628421, + -1.4198295 + ], + [ + 34.5627455, + -1.4200494 + ], + [ + 34.5625149, + -1.4202156 + ], + [ + 34.5623727, + -1.4203162 + ], + [ + 34.5621863, + -1.420406 + ], + [ + 34.5620615, + -1.4204543 + ], + [ + 34.5618872, + -1.4204918 + ], + [ + 34.5617384, + -1.4205026 + ], + [ + 34.5590157, + -1.4203777 + ], + [ + 34.5588805, + -1.4203578 + ], + [ + 34.558733, + -1.4202947 + ], + [ + 34.5586069, + -1.4201996 + ], + [ + 34.557774, + -1.4192276 + ], + [ + 34.557357, + -1.4188307 + ], + [ + 34.5571461, + -1.4188428 + ], + [ + 34.5569262, + -1.4187838 + ], + [ + 34.5567431, + -1.4187516 + ], + [ + 34.5562094, + -1.4186913 + ], + [ + 34.5556341, + -1.4186765 + ], + [ + 34.5549152, + -1.4186926 + ], + [ + 34.5540338, + -1.4187021 + ], + [ + 34.5536318, + -1.4187087 + ], + [ + 34.5524865, + -1.4187114 + ], + [ + 34.5519997, + -1.4187172 + ], + [ + 34.5517632, + -1.4187355 + ], + [ + 34.5515801, + -1.4187711 + ], + [ + 34.5513884, + -1.4188542 + ], + [ + 34.5511792, + -1.4189856 + ], + [ + 34.5510263, + -1.4191894 + ], + [ + 34.5508191, + -1.4195802 + ], + [ + 34.5506957, + -1.4198402 + ], + [ + 34.5504963, + -1.420272 + ], + [ + 34.5503541, + -1.4206366 + ], + [ + 34.5500064, + -1.4216394 + ], + [ + 34.5497382, + -1.4224492 + ], + [ + 34.5495317, + -1.4229319 + ], + [ + 34.5494431, + -1.4230231 + ], + [ + 34.5493144, + -1.4230713 + ], + [ + 34.5491883, + -1.4231464 + ], + [ + 34.549073, + -1.4232617 + ], + [ + 34.5490086, + -1.4234038 + ], + [ + 34.548971, + -1.4236022 + ], + [ + 34.5489794, + -1.4239754 + ], + [ + 34.5489875, + -1.4240941 + ], + [ + 34.5490019, + -1.4243048 + ], + [ + 34.5489764, + -1.4246426 + ], + [ + 34.5488262, + -1.4251842 + ], + [ + 34.5485178, + -1.4259753 + ], + [ + 34.5482442, + -1.4269352 + ], + [ + 34.5481744, + -1.4271336 + ], + [ + 34.5480591, + -1.4273214 + ], + [ + 34.5477453, + -1.4276967 + ], + [ + 34.5471606, + -1.4283242 + ], + [ + 34.5466321, + -1.4288215 + ] + ] + }, + "id": "way/489606253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/490756269", + "bridge": "yes", + "highway": "primary", + "lane_markings": "no", + "layer": "1", + "maxweight:signed": "no", + "old_ref": "B144", + "ref": "T17", + "smoothness": "intermediate", + "source": "survey", + "source:date": "2014..2015", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8018907, + -2.4289963 + ], + [ + 34.8019519, + -2.4291086 + ], + [ + 34.8020283, + -2.4292486 + ] + ] + }, + "id": "way/490756269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/490756270", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8022576, + -2.429678 + ], + [ + 34.8024092, + -2.4299367 + ], + [ + 34.8026551, + -2.4303338 + ], + [ + 34.8028243, + -2.4305645 + ], + [ + 34.8030093, + -2.4307093 + ], + [ + 34.80376, + -2.4311211 + ], + [ + 34.8043403, + -2.4315062 + ], + [ + 34.8047227, + -2.4317487 + ], + [ + 34.8049404, + -2.4319759 + ], + [ + 34.8052168, + -2.4323943 + ], + [ + 34.8055731, + -2.4329023 + ], + [ + 34.8060092, + -2.4334392 + ], + [ + 34.806622, + -2.4342157 + ], + [ + 34.8070492, + -2.4348227 + ], + [ + 34.807944, + -2.4355747 + ], + [ + 34.8082906, + -2.4359292 + ], + [ + 34.8085, + -2.4362548 + ], + [ + 34.8086722, + -2.4366223 + ], + [ + 34.8088306, + -2.4371585 + ], + [ + 34.8089774, + -2.4377696 + ], + [ + 34.8091017, + -2.438298 + ], + [ + 34.8092399, + -2.4385825 + ], + [ + 34.8095112, + -2.4388667 + ], + [ + 34.8097058, + -2.4390212 + ], + [ + 34.8100241, + -2.4391559 + ], + [ + 34.8103207, + -2.4392328 + ], + [ + 34.8103859, + -2.4392477 + ], + [ + 34.8109645, + -2.4393802 + ], + [ + 34.8112171, + -2.4394144 + ], + [ + 34.81134, + -2.4394311 + ], + [ + 34.8116566, + -2.4394116 + ], + [ + 34.8119546, + -2.4393649 + ], + [ + 34.8129644, + -2.4391763 + ], + [ + 34.8144086, + -2.4385799 + ], + [ + 34.8146209, + -2.4385077 + ] + ] + }, + "id": "way/490756270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/490759297", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4673487, + -2.0735626 + ], + [ + 34.4673527, + -2.073702 + ] + ] + }, + "id": "way/490759297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/490759298", + "highway": "primary", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.3101818, + -1.9732762 + ], + [ + 34.3104717, + -1.97332 + ], + [ + 34.3108606, + -1.9733803 + ], + [ + 34.3115816, + -1.9734811 + ], + [ + 34.3121279, + -1.9736081 + ], + [ + 34.312592, + -1.9737475 + ], + [ + 34.3130855, + -1.9739593 + ], + [ + 34.3140591, + -1.974541 + ], + [ + 34.3143703, + -1.9746911 + ], + [ + 34.3147297, + -1.9747715 + ], + [ + 34.3150623, + -1.9747715 + ], + [ + 34.3168647, + -1.974683 + ], + [ + 34.3170283, + -1.9746723 + ], + [ + 34.3199734, + -1.974616 + ], + [ + 34.3211992, + -1.9745892 + ], + [ + 34.3215934, + -1.9745517 + ], + [ + 34.3225295, + -1.9744418 + ], + [ + 34.3234737, + -1.9742783 + ], + [ + 34.3259116, + -1.9736553 + ], + [ + 34.3272006, + -1.9733562 + ], + [ + 34.32824, + -1.9730854 + ], + [ + 34.3297366, + -1.9728254 + ], + [ + 34.3313352, + -1.9726351 + ], + [ + 34.331936, + -1.9725814 + ], + [ + 34.3324913, + -1.9725868 + ], + [ + 34.3330572, + -1.9727289 + ], + [ + 34.3337895, + -1.9731256 + ], + [ + 34.3358005, + -1.974498 + ], + [ + 34.3361498, + -1.9747206 + ], + [ + 34.3371664, + -1.9753318 + ], + [ + 34.3381534, + -1.9759885 + ], + [ + 34.3389956, + -1.9765568 + ], + [ + 34.3399154, + -1.9772335 + ], + [ + 34.3401704, + -1.9773422 + ], + [ + 34.3415732, + -1.9782992 + ], + [ + 34.3423242, + -1.9787683 + ], + [ + 34.3424852, + -1.9789157 + ], + [ + 34.3427163, + -1.9791849 + ], + [ + 34.343027, + -1.9796368 + ], + [ + 34.3434025, + -1.9802158 + ], + [ + 34.3437592, + -1.9807788 + ], + [ + 34.3441106, + -1.981347 + ], + [ + 34.3443091, + -1.9816634 + ], + [ + 34.3447543, + -1.9823791 + ], + [ + 34.3461437, + -1.9846522 + ], + [ + 34.3467552, + -1.9859228 + ], + [ + 34.3468538, + -1.9863235 + ], + [ + 34.34688, + -1.9866869 + ], + [ + 34.3468948, + -1.9869066 + ], + [ + 34.3468793, + -1.9871698 + ], + [ + 34.3468344, + -1.9874441 + ], + [ + 34.3467741, + -1.9880338 + ], + [ + 34.3467539, + -1.9881746 + ], + [ + 34.3467714, + -1.9883421 + ], + [ + 34.346872, + -1.98857 + ], + [ + 34.3470731, + -1.9888152 + ], + [ + 34.3472944, + -1.9889412 + ], + [ + 34.3474553, + -1.9889975 + ], + [ + 34.3483753, + -1.9892843 + ], + [ + 34.3496494, + -1.9896395 + ], + [ + 34.3502249, + -1.9897989 + ], + [ + 34.3503032, + -1.9898199 + ], + [ + 34.3519172, + -1.9902493 + ], + [ + 34.3526763, + -1.9904531 + ], + [ + 34.355046, + -1.9910428 + ], + [ + 34.3558882, + -1.9912384 + ], + [ + 34.3565453, + -1.9914073 + ], + [ + 34.3569745, + -1.9915172 + ], + [ + 34.3574211, + -1.9916513 + ], + [ + 34.3575793, + -1.9917156 + ], + [ + 34.3577403, + -1.9917853 + ], + [ + 34.3583953, + -1.9920606 + ], + [ + 34.3584127, + -1.9920673 + ], + [ + 34.36022, + -1.9927235 + ], + [ + 34.3630201, + -1.9938199 + ], + [ + 34.3633393, + -1.9939458 + ], + [ + 34.3637712, + -1.994112 + ], + [ + 34.3652614, + -1.9946817 + ], + [ + 34.3658606, + -1.9949108 + ], + [ + 34.3677113, + -1.9956239 + ], + [ + 34.3688051, + -1.9960737 + ], + [ + 34.3698797, + -1.9965686 + ], + [ + 34.3716213, + -1.9975476 + ], + [ + 34.3726317, + -1.9982969 + ], + [ + 34.3728652, + -1.9984857 + ], + [ + 34.3730326, + -1.9986457 + ], + [ + 34.3731694, + -1.9987651 + ], + [ + 34.3734533, + -1.9990215 + ], + [ + 34.3745268, + -2.0002754 + ], + [ + 34.374859, + -2.0006456 + ], + [ + 34.3762414, + -2.0023583 + ], + [ + 34.3775273, + -2.0038965 + ], + [ + 34.3780829, + -2.0048771 + ], + [ + 34.3784048, + -2.0052917 + ], + [ + 34.3787076, + -2.005663 + ], + [ + 34.3788561, + -2.0058006 + ], + [ + 34.3796181, + -2.006417 + ], + [ + 34.3804304, + -2.0070297 + ], + [ + 34.3811492, + -2.0074881 + ], + [ + 34.3816374, + -2.0077615 + ], + [ + 34.3822704, + -2.008043 + ], + [ + 34.3828068, + -2.0082092 + ], + [ + 34.3835221, + -2.0083388 + ], + [ + 34.3844859, + -2.0084263 + ], + [ + 34.3858002, + -2.008618 + ], + [ + 34.3863611, + -2.0087538 + ], + [ + 34.3867223, + -2.00889 + ], + [ + 34.3878906, + -2.0093469 + ], + [ + 34.3895177, + -2.0098818 + ], + [ + 34.3915933, + -2.0103231 + ], + [ + 34.3928033, + -2.0106015 + ], + [ + 34.3940257, + -2.0108583 + ], + [ + 34.3962718, + -2.0113445 + ], + [ + 34.3965749, + -2.011374 + ], + [ + 34.3970711, + -2.0114491 + ], + [ + 34.3974678, + -2.0114875 + ], + [ + 34.3979908, + -2.0115357 + ], + [ + 34.3982966, + -2.0116403 + ], + [ + 34.3988771, + -2.0119866 + ], + [ + 34.4010458, + -2.013187 + ], + [ + 34.4020845, + -2.0137054 + ], + [ + 34.4026069, + -2.0139235 + ], + [ + 34.4033181, + -2.0142203 + ], + [ + 34.4039461, + -2.0144456 + ], + [ + 34.407426, + -2.0156938 + ], + [ + 34.4086068, + -2.0161167 + ], + [ + 34.4116696, + -2.0172137 + ], + [ + 34.4147979, + -2.0183451 + ], + [ + 34.4161394, + -2.0188303 + ], + [ + 34.4161791, + -2.0188445 + ], + [ + 34.4196523, + -2.0202679 + ], + [ + 34.4221582, + -2.0212994 + ], + [ + 34.4238744, + -2.0218084 + ], + [ + 34.4248001, + -2.0219013 + ], + [ + 34.4253172, + -2.0219845 + ], + [ + 34.4258992, + -2.0220328 + ], + [ + 34.4331685, + -2.0219809 + ], + [ + 34.4356383, + -2.0218128 + ], + [ + 34.4381173, + -2.0217297 + ], + [ + 34.440512, + -2.0217537 + ], + [ + 34.4411843, + -2.0217374 + ], + [ + 34.442405, + -2.0216116 + ], + [ + 34.4429777, + -2.0216217 + ], + [ + 34.4434351, + -2.0217265 + ], + [ + 34.4441413, + -2.0219855 + ], + [ + 34.4445214, + -2.0221251 + ], + [ + 34.4468026, + -2.0230414 + ], + [ + 34.4493127, + -2.0241327 + ], + [ + 34.4493672, + -2.0241557 + ], + [ + 34.4495324, + -2.0242253 + ], + [ + 34.4501455, + -2.0244838 + ], + [ + 34.4505371, + -2.0246055 + ], + [ + 34.4510163, + -2.0247545 + ], + [ + 34.4528173, + -2.0251644 + ], + [ + 34.4531849, + -2.025248 + ], + [ + 34.4535429, + -2.0253295 + ], + [ + 34.4543194, + -2.0255028 + ], + [ + 34.4547358, + -2.0256652 + ], + [ + 34.4548868, + -2.0257609 + ], + [ + 34.4555459, + -2.0261541 + ], + [ + 34.4557624, + -2.0262864 + ], + [ + 34.4559459, + -2.0264604 + ], + [ + 34.4560605, + -2.0265661 + ], + [ + 34.45632, + -2.026808 + ], + [ + 34.4570048, + -2.0274642 + ], + [ + 34.4574373, + -2.0280684 + ], + [ + 34.4576817, + -2.0284661 + ], + [ + 34.4579094, + -2.0289422 + ], + [ + 34.4584485, + -2.0300011 + ], + [ + 34.4589743, + -2.0310278 + ], + [ + 34.4592973, + -2.0316118 + ], + [ + 34.4594734, + -2.0319293 + ], + [ + 34.4596395, + -2.0321723 + ], + [ + 34.459967, + -2.0325887 + ], + [ + 34.4603227, + -2.0330417 + ], + [ + 34.4607545, + -2.0335966 + ], + [ + 34.4608896, + -2.0337842 + ], + [ + 34.4611622, + -2.0341006 + ], + [ + 34.4615119, + -2.0344222 + ], + [ + 34.4617426, + -2.034634 + ], + [ + 34.4619569, + -2.0348046 + ], + [ + 34.462279, + -2.0350602 + ], + [ + 34.4625925, + -2.0353541 + ], + [ + 34.462743, + -2.0355185 + ], + [ + 34.4628798, + -2.0356901 + ], + [ + 34.4631558, + -2.0360966 + ], + [ + 34.4634485, + -2.0365773 + ], + [ + 34.4635933, + -2.0368373 + ], + [ + 34.4637325, + -2.0371205 + ], + [ + 34.4640597, + -2.0380293 + ], + [ + 34.4641432, + -2.0383572 + ], + [ + 34.4642022, + -2.0386762 + ], + [ + 34.4643306, + -2.0392945 + ], + [ + 34.464513, + -2.0401522 + ], + [ + 34.4646847, + -2.0409751 + ], + [ + 34.4647769, + -2.0413329 + ], + [ + 34.4649368, + -2.0419535 + ], + [ + 34.465197, + -2.0427898 + ], + [ + 34.4653743, + -2.0432786 + ], + [ + 34.4654601, + -2.043544 + ], + [ + 34.4655296, + -2.0437789 + ], + [ + 34.4657337, + -2.0444178 + ], + [ + 34.4658701, + -2.0447466 + ], + [ + 34.4660851, + -2.0452836 + ], + [ + 34.4663154, + -2.045784 + ], + [ + 34.4667178, + -2.0465023 + ], + [ + 34.4672086, + -2.0474191 + ], + [ + 34.467402, + -2.0478247 + ], + [ + 34.4675071, + -2.0481445 + ], + [ + 34.4675627, + -2.0482795 + ], + [ + 34.4676058, + -2.0483968 + ], + [ + 34.4676753, + -2.0488397 + ], + [ + 34.4677022, + -2.0498181 + ], + [ + 34.4677055, + -2.0498635 + ], + [ + 34.4677091, + -2.0499139 + ], + [ + 34.4677529, + -2.0509163 + ], + [ + 34.4677548, + -2.0509761 + ], + [ + 34.4677738, + -2.0517757 + ], + [ + 34.4677819, + -2.0519393 + ], + [ + 34.4677953, + -2.0526121 + ], + [ + 34.4678026, + -2.0532024 + ], + [ + 34.4678194, + -2.053746 + ], + [ + 34.4678362, + -2.054718 + ], + [ + 34.4678456, + -2.0550816 + ], + [ + 34.467851, + -2.0553265 + ], + [ + 34.4678567, + -2.0555667 + ], + [ + 34.4678352, + -2.0558347 + ], + [ + 34.4677719, + -2.0563451 + ], + [ + 34.4676384, + -2.057054 + ], + [ + 34.4675439, + -2.0577899 + ], + [ + 34.4674802, + -2.0583326 + ], + [ + 34.4674661, + -2.0589184 + ], + [ + 34.4674286, + -2.060012 + ], + [ + 34.4673776, + -2.0610413 + ], + [ + 34.4673293, + -2.0619071 + ], + [ + 34.4672837, + -2.0626174 + ], + [ + 34.4672113, + -2.0633787 + ], + [ + 34.4671523, + -2.0641908 + ], + [ + 34.4671013, + -2.0651102 + ], + [ + 34.4670745, + -2.0657536 + ], + [ + 34.4670235, + -2.066547 + ], + [ + 34.4670048, + -2.0673029 + ], + [ + 34.4669779, + -2.0683214 + ], + [ + 34.4669721, + -2.0684505 + ], + [ + 34.4669753, + -2.0690612 + ], + [ + 34.4669806, + -2.069994 + ], + [ + 34.4669323, + -2.0708732 + ], + [ + 34.4667982, + -2.0719427 + ], + [ + 34.4667895, + -2.0720428 + ], + [ + 34.4668056, + -2.0723524 + ], + [ + 34.4668404, + -2.0725709 + ], + [ + 34.4669116, + -2.0727451 + ], + [ + 34.4671677, + -2.0730574 + ], + [ + 34.4672602, + -2.07317 + ], + [ + 34.4673112, + -2.0732919 + ], + [ + 34.4673487, + -2.0735626 + ] + ] + }, + "id": "way/490759298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/491709328", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1340293, + -1.2941228 + ], + [ + 34.1343511, + -1.2941169 + ], + [ + 34.1351127, + -1.2940853 + ], + [ + 34.1362031, + -1.2940876 + ], + [ + 34.1389289, + -1.2940331 + ], + [ + 34.1399208, + -1.2940176 + ], + [ + 34.1421577, + -1.2939003 + ], + [ + 34.1431421, + -1.2939432 + ], + [ + 34.1437724, + -1.2940022 + ], + [ + 34.1447192, + -1.2940719 + ], + [ + 34.1461623, + -1.2941041 + ], + [ + 34.1474658, + -1.2940397 + ], + [ + 34.1477394, + -1.294037 + ], + [ + 34.1490456, + -1.2939244 + ], + [ + 34.149963, + -1.2938896 + ], + [ + 34.1507247, + -1.2937984 + ], + [ + 34.1511737, + -1.2937392 + ], + [ + 34.1513979, + -1.2936858 + ], + [ + 34.1517144, + -1.293549 + ], + [ + 34.1524708, + -1.2931816 + ], + [ + 34.1529376, + -1.292975 + ], + [ + 34.1537289, + -1.2927497 + ], + [ + 34.1543081, + -1.2926453 + ], + [ + 34.1550484, + -1.2925408 + ], + [ + 34.1554803, + -1.2925113 + ], + [ + 34.1561535, + -1.2924952 + ], + [ + 34.1575509, + -1.2924174 + ], + [ + 34.1583154, + -1.2924228 + ], + [ + 34.1598694, + -1.2923325 + ], + [ + 34.1601597, + -1.2923218 + ], + [ + 34.1613972, + -1.2922485 + ], + [ + 34.1619315, + -1.292202 + ], + [ + 34.1624775, + -1.2921476 + ] + ] + }, + "id": "way/491709328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/491709329", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1338442, + -1.2941242 + ], + [ + 34.1340293, + -1.2941228 + ] + ] + }, + "id": "way/491709329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/491969587", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R341", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9116347, + -3.3804553 + ], + [ + 33.9113604, + -3.3799436 + ] + ] + }, + "id": "way/491969587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/495512246", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R183", + "source": "Tanroads" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5384058, + -1.4470793 + ], + [ + 34.5383741, + -1.4471319 + ] + ] + }, + "id": "way/495512246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/495512247", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5383741, + -1.4471319 + ], + [ + 34.5381154, + -1.4475879 + ], + [ + 34.5379917, + -1.4478279 + ], + [ + 34.5379289, + -1.4479723 + ], + [ + 34.5375923, + -1.4485733 + ], + [ + 34.5374456, + -1.4488575 + ], + [ + 34.5374016, + -1.4489551 + ], + [ + 34.5373497, + -1.4490536 + ], + [ + 34.5373155, + -1.4491302 + ], + [ + 34.5372545, + -1.4492625 + ], + [ + 34.5371686, + -1.4494297 + ], + [ + 34.5371018, + -1.4495579 + ], + [ + 34.5369695, + -1.4497615 + ], + [ + 34.5369402, + -1.4497891 + ], + [ + 34.5366168, + -1.4502201 + ], + [ + 34.5365688, + -1.4502992 + ], + [ + 34.5364434, + -1.450506 + ], + [ + 34.5364355, + -1.450519 + ], + [ + 34.5363594, + -1.4506747 + ], + [ + 34.536166, + -1.451084 + ], + [ + 34.5360715, + -1.4512996 + ], + [ + 34.5359533, + -1.4515691 + ], + [ + 34.5358832, + -1.4517673 + ], + [ + 34.5355749, + -1.4523136 + ], + [ + 34.5353871, + -1.4526769 + ], + [ + 34.5353279, + -1.4527364 + ], + [ + 34.5351412, + -1.4530075 + ], + [ + 34.5350429, + -1.453169 + ], + [ + 34.5349216, + -1.4533131 + ], + [ + 34.5346205, + -1.4536198 + ], + [ + 34.5343086, + -1.4539555 + ], + [ + 34.5341378, + -1.4541595 + ], + [ + 34.5340901, + -1.454219 + ], + [ + 34.5339948, + -1.4543292 + ], + [ + 34.5338344, + -1.4546633 + ], + [ + 34.5338004, + -1.4547342 + ], + [ + 34.5336825, + -1.455119 + ], + [ + 34.533661, + -1.4554983 + ], + [ + 34.5336842, + -1.4557465 + ], + [ + 34.5336894, + -1.4559147 + ], + [ + 34.533696, + -1.4560506 + ], + [ + 34.5337324, + -1.4566027 + ], + [ + 34.533746, + -1.4568798 + ], + [ + 34.5337512, + -1.4573284 + ], + [ + 34.53372, + -1.4576555 + ], + [ + 34.5337185, + -1.4578834 + ], + [ + 34.5336854, + -1.4581845 + ], + [ + 34.5336847, + -1.4581977 + ], + [ + 34.5336463, + -1.458905 + ], + [ + 34.533628, + -1.4591597 + ], + [ + 34.5335896, + -1.4596531 + ], + [ + 34.5335858, + -1.4597535 + ], + [ + 34.5335837, + -1.4598025 + ], + [ + 34.5335763, + -1.4600011 + ], + [ + 34.5335757, + -1.4601472 + ], + [ + 34.5335756, + -1.4601679 + ], + [ + 34.5335773, + -1.4603566 + ], + [ + 34.5335899, + -1.4605607 + ], + [ + 34.5335926, + -1.460774 + ] + ] + }, + "id": "way/495512247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/497573212", + "highway": "secondary", + "ref": "R369", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7801435, + -3.0530518 + ], + [ + 33.7802888, + -3.0531382 + ], + [ + 33.7804377, + -3.0532627 + ], + [ + 33.7805195, + -3.0534154 + ], + [ + 33.7805665, + -3.0535654 + ], + [ + 33.7808971, + -3.0547486 + ], + [ + 33.7810356, + -3.0552588 + ], + [ + 33.781664, + -3.057455 + ], + [ + 33.7818178, + -3.0580472 + ], + [ + 33.7820267, + -3.058911 + ], + [ + 33.7821537, + -3.0593114 + ], + [ + 33.7822831, + -3.0596293 + ], + [ + 33.7825347, + -3.060106 + ], + [ + 33.7837335, + -3.0622691 + ], + [ + 33.7840675, + -3.0629425 + ], + [ + 33.7845894, + -3.0640101 + ], + [ + 33.7849025, + -3.0646484 + ], + [ + 33.7853617, + -3.0656046 + ], + [ + 33.7856178, + -3.0661591 + ], + [ + 33.785872, + -3.0666842 + ], + [ + 33.7867977, + -3.0686229 + ], + [ + 33.786991, + -3.0689952 + ], + [ + 33.7871788, + -3.0694043 + ], + [ + 33.7877789, + -3.0705758 + ], + [ + 33.7879747, + -3.0710391 + ], + [ + 33.7882295, + -3.071706 + ], + [ + 33.7884012, + -3.0721721 + ], + [ + 33.7888102, + -3.0731939 + ], + [ + 33.7889591, + -3.0735916 + ], + [ + 33.7890798, + -3.0739585 + ], + [ + 33.7893561, + -3.0746629 + ], + [ + 33.7895519, + -3.0751691 + ], + [ + 33.7897443, + -3.0756003 + ], + [ + 33.7900695, + -3.0761494 + ], + [ + 33.7904853, + -3.0767119 + ], + [ + 33.791019, + -3.0774672 + ], + [ + 33.7920222, + -3.0788894 + ], + [ + 33.7926176, + -3.0797598 + ], + [ + 33.7945569, + -3.0825587 + ], + [ + 33.7950301, + -3.0832559 + ], + [ + 33.7950987, + -3.0834452 + ], + [ + 33.7951148, + -3.0836059 + ], + [ + 33.7950879, + -3.0840023 + ], + [ + 33.7942804, + -3.0887928 + ], + [ + 33.7938596, + -3.0913356 + ], + [ + 33.7938166, + -3.0915953 + ], + [ + 33.7935803, + -3.0930235 + ], + [ + 33.7930737, + -3.0960844 + ], + [ + 33.7924431, + -3.0997725 + ], + [ + 33.7923593, + -3.1002628 + ], + [ + 33.7920077, + -3.1023192 + ], + [ + 33.7918949, + -3.1029789 + ], + [ + 33.7917969, + -3.1035539 + ], + [ + 33.7916907, + -3.1042781 + ], + [ + 33.7916279, + -3.1048341 + ], + [ + 33.791526, + -3.1056054 + ], + [ + 33.7914096, + -3.106657 + ], + [ + 33.7913534, + -3.1069838 + ], + [ + 33.7913087, + -3.1071562 + ], + [ + 33.7912242, + -3.1074066 + ], + [ + 33.7910198, + -3.1077499 + ], + [ + 33.7901553, + -3.1089017 + ], + [ + 33.7890139, + -3.1104224 + ], + [ + 33.7882309, + -3.1114657 + ], + [ + 33.7877876, + -3.1120563 + ], + [ + 33.7874988, + -3.1124411 + ], + [ + 33.7872673, + -3.112807 + ], + [ + 33.7869908, + -3.113244 + ], + [ + 33.7867356, + -3.1136475 + ], + [ + 33.7866245, + -3.1138231 + ], + [ + 33.7862634, + -3.114394 + ], + [ + 33.7858826, + -3.1150249 + ], + [ + 33.7856305, + -3.1154373 + ], + [ + 33.7852845, + -3.1159167 + ], + [ + 33.7849304, + -3.1163104 + ], + [ + 33.7837339, + -3.1175174 + ], + [ + 33.7832864, + -3.1179863 + ], + [ + 33.7828241, + -3.1184709 + ], + [ + 33.7819692, + -3.1193342 + ], + [ + 33.7818606, + -3.1194587 + ], + [ + 33.7814945, + -3.1198832 + ], + [ + 33.7813497, + -3.1201082 + ], + [ + 33.7804015, + -3.1218033 + ], + [ + 33.780199, + -3.122157 + ], + [ + 33.7799442, + -3.122698 + ], + [ + 33.7797551, + -3.1231743 + ], + [ + 33.7795656, + -3.1236366 + ], + [ + 33.7790619, + -3.1248655 + ], + [ + 33.778656, + -3.1258558 + ], + [ + 33.778394, + -3.126495 + ], + [ + 33.7782989, + -3.1267271 + ], + [ + 33.7780344, + -3.1273431 + ], + [ + 33.7777909, + -3.1279103 + ] + ] + }, + "id": "way/497573212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/498435149", + "highway": "secondary", + "ref": "R369", + "source": "bing", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7777909, + -3.1279103 + ], + [ + 33.7770854, + -3.129627 + ], + [ + 33.7762093, + -3.1318393 + ], + [ + 33.7761033, + -3.1320932 + ], + [ + 33.7760201, + -3.1324173 + ], + [ + 33.7759624, + -3.1327471 + ], + [ + 33.7758416, + -3.133531 + ], + [ + 33.7757492, + -3.1342438 + ], + [ + 33.7756899, + -3.1347113 + ], + [ + 33.7754889, + -3.136284 + ], + [ + 33.7754516, + -3.1366107 + ], + [ + 33.7754281, + -3.1368165 + ], + [ + 33.7753567, + -3.1374409 + ], + [ + 33.7753183, + -3.1377776 + ], + [ + 33.7752919, + -3.1380084 + ], + [ + 33.7752806, + -3.1383459 + ], + [ + 33.7752668, + -3.1387552 + ], + [ + 33.7752569, + -3.13905 + ], + [ + 33.7752458, + -3.1393802 + ], + [ + 33.7752389, + -3.1395858 + ], + [ + 33.7752267, + -3.1399502 + ], + [ + 33.7752113, + -3.1404088 + ], + [ + 33.7752181, + -3.1407839 + ], + [ + 33.7752265, + -3.141091 + ], + [ + 33.7754149, + -3.1465625 + ], + [ + 33.7754649, + -3.1474258 + ], + [ + 33.7755588, + -3.1481087 + ], + [ + 33.7757304, + -3.148963 + ], + [ + 33.7758806, + -3.1494746 + ], + [ + 33.7760577, + -3.1499968 + ], + [ + 33.7763554, + -3.1509395 + ], + [ + 33.7764788, + -3.1512609 + ], + [ + 33.7769186, + -3.1522652 + ], + [ + 33.7770957, + -3.1526402 + ], + [ + 33.7776482, + -3.1535855 + ], + [ + 33.7782678, + -3.1546327 + ], + [ + 33.7785655, + -3.1551469 + ], + [ + 33.778697, + -3.1553799 + ], + [ + 33.7788096, + -3.1556183 + ], + [ + 33.7790381, + -3.1561142 + ], + [ + 33.7791391, + -3.1563903 + ], + [ + 33.779621, + -3.1576255 + ], + [ + 33.7796693, + -3.1577715 + ], + [ + 33.7796853, + -3.1579362 + ], + [ + 33.7796603, + -3.1585878 + ], + [ + 33.779678, + -3.1597878 + ], + [ + 33.7796577, + -3.1610578 + ], + [ + 33.7796342, + -3.1625265 + ], + [ + 33.7794572, + -3.1636802 + ], + [ + 33.7788871, + -3.166595 + ], + [ + 33.7786976, + -3.1675881 + ], + [ + 33.7786446, + -3.1678659 + ], + [ + 33.7785244, + -3.168496 + ], + [ + 33.7784566, + -3.1688511 + ], + [ + 33.7783814, + -3.169245 + ], + [ + 33.7782985, + -3.1696794 + ], + [ + 33.778255, + -3.1700068 + ], + [ + 33.7781381, + -3.1708869 + ], + [ + 33.7781303, + -3.1709458 + ], + [ + 33.7781005, + -3.17117 + ], + [ + 33.7780323, + -3.1716835 + ], + [ + 33.778019, + -3.1717832 + ], + [ + 33.7779634, + -3.1721986 + ], + [ + 33.7778857, + -3.1727062 + ], + [ + 33.7778624, + -3.1728672 + ], + [ + 33.7777097, + -3.1740161 + ], + [ + 33.7774512, + -3.1758645 + ], + [ + 33.7773694, + -3.1764494 + ], + [ + 33.7773263, + -3.1767727 + ], + [ + 33.7772791, + -3.1770481 + ], + [ + 33.776947, + -3.1792829 + ], + [ + 33.7767931, + -3.1803681 + ], + [ + 33.7767796, + -3.1805035 + ], + [ + 33.7767688, + -3.1806341 + ], + [ + 33.7767792, + -3.1808095 + ], + [ + 33.7768022, + -3.181014 + ], + [ + 33.7768183, + -3.1812171 + ], + [ + 33.7768194, + -3.1812296 + ], + [ + 33.776902, + -3.1818137 + ], + [ + 33.7769582, + -3.1823795 + ], + [ + 33.776978, + -3.1825404 + ], + [ + 33.7770334, + -3.1829926 + ], + [ + 33.7770546, + -3.1835586 + ] + ] + }, + "id": "way/498435149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/498650408", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9826195, + -2.5744456 + ], + [ + 33.982672, + -2.5752713 + ], + [ + 33.9826756, + -2.5753569 + ], + [ + 33.9827075, + -2.5767226 + ], + [ + 33.982726, + -2.5785554 + ], + [ + 33.9828135, + -2.5810461 + ], + [ + 33.9828372, + -2.5822643 + ], + [ + 33.9828804, + -2.5836179 + ], + [ + 33.9829069, + -2.5847294 + ], + [ + 33.982934, + -2.5859195 + ], + [ + 33.9829874, + -2.5867444 + ], + [ + 33.9830735, + -2.5876639 + ], + [ + 33.9831859, + -2.5885611 + ], + [ + 33.9833334, + -2.5895686 + ], + [ + 33.9836065, + -2.5914279 + ], + [ + 33.9836434, + -2.5916778 + ], + [ + 33.9845206, + -2.5977849 + ], + [ + 33.9846828, + -2.5988373 + ], + [ + 33.984813, + -2.599573 + ], + [ + 33.9848784, + -2.600064 + ], + [ + 33.9850153, + -2.6010169 + ], + [ + 33.9851347, + -2.6017989 + ], + [ + 33.9852272, + -2.6024758 + ], + [ + 33.9852905, + -2.6028738 + ], + [ + 33.9853628, + -2.603319 + ], + [ + 33.9854218, + -2.6037049 + ], + [ + 33.9854701, + -2.6041711 + ], + [ + 33.9855291, + -2.6045248 + ], + [ + 33.9856632, + -2.6053661 + ], + [ + 33.9857437, + -2.6058833 + ], + [ + 33.9858148, + -2.606305 + ], + [ + 33.9858671, + -2.6067916 + ], + [ + 33.9859529, + -2.6073543 + ], + [ + 33.9860227, + -2.6078901 + ], + [ + 33.9860763, + -2.6082545 + ], + [ + 33.9864934, + -2.6109711 + ], + [ + 33.9868083, + -2.6130531 + ], + [ + 33.987792, + -2.6197998 + ], + [ + 33.9882084, + -2.6228341 + ], + [ + 33.9882478, + -2.6230876 + ], + [ + 33.9885278, + -2.6248294 + ], + [ + 33.9885962, + -2.6252809 + ], + [ + 33.9886593, + -2.6256788 + ], + [ + 33.9887304, + -2.626086 + ], + [ + 33.9887867, + -2.6264309 + ], + [ + 33.9888189, + -2.6266126 + ], + [ + 33.9889302, + -2.6272971 + ], + [ + 33.9890528, + -2.6280378 + ], + [ + 33.9892457, + -2.6290306 + ], + [ + 33.9893271, + -2.6294701 + ], + [ + 33.9894112, + -2.6299715 + ], + [ + 33.9897831, + -2.6319941 + ], + [ + 33.9901249, + -2.6339339 + ], + [ + 33.9902096, + -2.6344162 + ], + [ + 33.990297, + -2.6348624 + ], + [ + 33.9903891, + -2.6353716 + ], + [ + 33.9904969, + -2.6359759 + ], + [ + 33.9907817, + -2.6376304 + ], + [ + 33.9908332, + -2.6379037 + ], + [ + 33.9908739, + -2.6381669 + ], + [ + 33.9910157, + -2.6388616 + ], + [ + 33.9910887, + -2.639288 + ], + [ + 33.9911213, + -2.6394435 + ], + [ + 33.9911509, + -2.6397418 + ], + [ + 33.991151, + -2.6398821 + ], + [ + 33.9911322, + -2.6400296 + ], + [ + 33.9909594, + -2.6409955 + ], + [ + 33.9909524, + -2.6413001 + ], + [ + 33.9909526, + -2.6414402 + ], + [ + 33.9909494, + -2.6416143 + ], + [ + 33.9909433, + -2.6417707 + ], + [ + 33.990955, + -2.6419413 + ], + [ + 33.9909565, + -2.6420312 + ], + [ + 33.9909682, + -2.6423791 + ], + [ + 33.9909981, + -2.6428857 + ], + [ + 33.9910021, + -2.6432029 + ], + [ + 33.9910083, + -2.6434863 + ], + [ + 33.9910224, + -2.6439311 + ], + [ + 33.991025, + -2.6444638 + ], + [ + 33.9910431, + -2.6450787 + ], + [ + 33.9911091, + -2.6456119 + ], + [ + 33.9911094, + -2.6456522 + ], + [ + 33.9911115, + -2.6459452 + ], + [ + 33.9911176, + -2.6464814 + ], + [ + 33.9911147, + -2.6470577 + ], + [ + 33.9910786, + -2.6475826 + ], + [ + 33.9910217, + -2.6479955 + ], + [ + 33.9909219, + -2.6483435 + ], + [ + 33.9908895, + -2.6484213 + ], + [ + 33.9907548, + -2.6486875 + ], + [ + 33.9903913, + -2.6493733 + ], + [ + 33.9900512, + -2.6499614 + ], + [ + 33.9898431, + -2.6503711 + ], + [ + 33.9897376, + -2.6505788 + ], + [ + 33.9896085, + -2.6508625 + ], + [ + 33.9893591, + -2.6513826 + ], + [ + 33.9892735, + -2.6515855 + ], + [ + 33.9892133, + -2.6517853 + ], + [ + 33.9891402, + -2.6521284 + ], + [ + 33.9890616, + -2.6525287 + ], + [ + 33.9890151, + -2.6528845 + ], + [ + 33.9890026, + -2.653244 + ], + [ + 33.9890025, + -2.6537133 + ], + [ + 33.9890321, + -2.6541443 + ], + [ + 33.9891179, + -2.6546694 + ], + [ + 33.9891949, + -2.6551487 + ], + [ + 33.9893053, + -2.6557448 + ], + [ + 33.9894606, + -2.6566809 + ], + [ + 33.9896141, + -2.6576087 + ], + [ + 33.9896799, + -2.6580041 + ], + [ + 33.9897598, + -2.6583459 + ], + [ + 33.9900053, + -2.6597868 + ], + [ + 33.9904734, + -2.6625336 + ], + [ + 33.990591, + -2.6630547 + ], + [ + 33.9912127, + -2.6655472 + ], + [ + 33.9913149, + -2.6659502 + ], + [ + 33.9917131, + -2.6674392 + ], + [ + 33.9917665, + -2.6676183 + ], + [ + 33.9918484, + -2.667924 + ], + [ + 33.9919316, + -2.6681732 + ], + [ + 33.9920134, + -2.6684505 + ], + [ + 33.9920891, + -2.6686871 + ], + [ + 33.9923178, + -2.6692556 + ], + [ + 33.9925646, + -2.6698585 + ], + [ + 33.9930232, + -2.670815 + ], + [ + 33.9931399, + -2.6710548 + ], + [ + 33.9933826, + -2.671592 + ], + [ + 33.9937099, + -2.6722886 + ], + [ + 33.9937812, + -2.6724376 + ], + [ + 33.9938595, + -2.672601 + ], + [ + 33.9939687, + -2.6728245 + ], + [ + 33.9940639, + -2.6730281 + ], + [ + 33.9943952, + -2.6737188 + ], + [ + 33.9945494, + -2.6740623 + ], + [ + 33.9947264, + -2.6744534 + ], + [ + 33.9948713, + -2.6747991 + ], + [ + 33.9949692, + -2.6751059 + ], + [ + 33.9950456, + -2.675351 + ], + [ + 33.9951395, + -2.6759244 + ], + [ + 33.9952722, + -2.6766904 + ], + [ + 33.995291, + -2.6767985 + ], + [ + 33.9954433, + -2.6776775 + ], + [ + 33.9954551, + -2.6777772 + ], + [ + 33.995592, + -2.6789388 + ], + [ + 33.9956196, + -2.6791717 + ], + [ + 33.9956449, + -2.6793061 + ], + [ + 33.9959157, + -2.6811882 + ], + [ + 33.9959351, + -2.6813346 + ], + [ + 33.995968, + -2.6815793 + ], + [ + 33.9961869, + -2.6829912 + ], + [ + 33.996216, + -2.6832441 + ], + [ + 33.9963795, + -2.6843164 + ], + [ + 33.9965228, + -2.6851311 + ], + [ + 33.9966134, + -2.6855926 + ], + [ + 33.996663, + -2.6858458 + ], + [ + 33.9967333, + -2.6861357 + ], + [ + 33.9968943, + -2.6867601 + ], + [ + 33.9969917, + -2.6870787 + ], + [ + 33.9971538, + -2.6875712 + ], + [ + 33.9973523, + -2.688158 + ], + [ + 33.9974124, + -2.6883441 + ], + [ + 33.9977523, + -2.6893338 + ], + [ + 33.9979209, + -2.6899519 + ], + [ + 33.9980074, + -2.6902766 + ], + [ + 33.9980556, + -2.6905431 + ], + [ + 33.9981845, + -2.6912089 + ], + [ + 33.9982577, + -2.6918454 + ], + [ + 33.9983199, + -2.6923864 + ], + [ + 33.9983364, + -2.6929182 + ], + [ + 33.998348, + -2.6932907 + ], + [ + 33.9983373, + -2.6939539 + ], + [ + 33.9982872, + -2.6946093 + ], + [ + 33.9982602, + -2.6949626 + ], + [ + 33.998096, + -2.6959781 + ], + [ + 33.9980248, + -2.6965353 + ], + [ + 33.9978916, + -2.6973513 + ], + [ + 33.9978865, + -2.6973905 + ], + [ + 33.997817, + -2.6981026 + ], + [ + 33.9977788, + -2.6989366 + ], + [ + 33.9977641, + -2.6995541 + ], + [ + 33.997762, + -2.6996119 + ], + [ + 33.9977344, + -2.7003699 + ], + [ + 33.9977043, + -2.7020652 + ], + [ + 33.9976346, + -2.7036728 + ], + [ + 33.9976094, + -2.7045642 + ], + [ + 33.9975144, + -2.7079603 + ], + [ + 33.9975192, + -2.7081431 + ], + [ + 33.9974629, + -2.709066 + ], + [ + 33.9974826, + -2.7098149 + ], + [ + 33.9974797, + -2.7099964 + ], + [ + 33.9974576, + -2.710561 + ], + [ + 33.9974227, + -2.7114966 + ], + [ + 33.9974181, + -2.7116656 + ], + [ + 33.9973261, + -2.7141994 + ], + [ + 33.9972933, + -2.7148592 + ], + [ + 33.9972871, + -2.7164745 + ], + [ + 33.9972859, + -2.7167821 + ], + [ + 33.9973208, + -2.7178002 + ], + [ + 33.9973905, + -2.7186897 + ], + [ + 33.9974634, + -2.7193512 + ], + [ + 33.9975926, + -2.720523 + ], + [ + 33.9977306, + -2.7217746 + ], + [ + 33.9977644, + -2.722021 + ], + [ + 33.9980008, + -2.7233836 + ] + ] + }, + "id": "way/498650408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/499314374", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9681085, + -3.124949 + ], + [ + 33.9682325, + -3.1247855 + ] + ] + }, + "id": "way/499314374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/499314389", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9682325, + -3.1247855 + ], + [ + 33.9683841, + -3.1245661 + ], + [ + 33.9685474, + -3.124388 + ], + [ + 33.9687476, + -3.1242246 + ], + [ + 33.968997, + -3.1240746 + ], + [ + 33.9695575, + -3.1238421 + ], + [ + 33.9711755, + -3.1231919 + ], + [ + 33.9714471, + -3.1230827 + ], + [ + 33.9729207, + -3.1224301 + ], + [ + 33.9750004, + -3.121635 + ], + [ + 33.976116, + -3.1211656 + ], + [ + 33.9768872, + -3.1208266 + ], + [ + 33.9780352, + -3.1202868 + ], + [ + 33.9786487, + -3.1200212 + ], + [ + 33.9793616, + -3.1197588 + ], + [ + 33.979923, + -3.1195864 + ], + [ + 33.9813164, + -3.1192918 + ], + [ + 33.982239, + -3.1191817 + ], + [ + 33.983001, + -3.1191382 + ], + [ + 33.9835882, + -3.1191047 + ], + [ + 33.9840722, + -3.1190771 + ], + [ + 33.9853312, + -3.1189909 + ], + [ + 33.9860523, + -3.1189865 + ], + [ + 33.9874102, + -3.1189883 + ], + [ + 33.9886066, + -3.1189619 + ], + [ + 33.9887917, + -3.1189646 + ], + [ + 33.9889395, + -3.1189988 + ], + [ + 33.9896768, + -3.1192136 + ], + [ + 33.9916801, + -3.1199181 + ], + [ + 33.9923483, + -3.120151 + ], + [ + 33.9949298, + -3.1210417 + ], + [ + 33.9973721, + -3.1218972 + ], + [ + 33.9989439, + -3.1224382 + ], + [ + 34.0015107, + -3.1233328 + ], + [ + 34.004201, + -3.1242621 + ], + [ + 34.0044129, + -3.124321 + ], + [ + 34.0046731, + -3.1243558 + ], + [ + 34.0050352, + -3.1243478 + ], + [ + 34.0053838, + -3.1243317 + ], + [ + 34.0057218, + -3.1242916 + ], + [ + 34.0063842, + -3.1241725 + ], + [ + 34.0068264, + -3.124065 + ], + [ + 34.0071514, + -3.1242554 + ], + [ + 34.0078358, + -3.1246372 + ], + [ + 34.0106264, + -3.126278 + ], + [ + 34.0112465, + -3.1266426 + ], + [ + 34.0121615, + -3.1270816 + ], + [ + 34.0128483, + -3.1273508 + ], + [ + 34.0133258, + -3.1275276 + ], + [ + 34.0157267, + -3.128292 + ], + [ + 34.0176477, + -3.1289306 + ], + [ + 34.0186383, + -3.1292413 + ], + [ + 34.0190336, + -3.1294043 + ], + [ + 34.0194583, + -3.129621 + ] + ] + }, + "id": "way/499314389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/499769937", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8917841, + -3.1553678 + ], + [ + 33.8929215, + -3.1554535 + ], + [ + 33.8944212, + -3.1555366 + ], + [ + 33.8950632, + -3.1555482 + ], + [ + 33.8963998, + -3.1555722 + ], + [ + 33.8970735, + -3.1555935 + ], + [ + 33.8975272, + -3.1556078 + ], + [ + 33.8987602, + -3.1556468 + ], + [ + 33.8988894, + -3.1556508 + ], + [ + 33.8993944, + -3.1556668 + ], + [ + 33.8997808, + -3.155679 + ], + [ + 33.9008149, + -3.1556839 + ], + [ + 33.9010227, + -3.1556849 + ], + [ + 33.9014981, + -3.1556256 + ], + [ + 33.9018151, + -3.155536 + ], + [ + 33.902038, + -3.155473 + ], + [ + 33.9026181, + -3.155309 + ], + [ + 33.9027993, + -3.1552577 + ], + [ + 33.9037605, + -3.1550088 + ], + [ + 33.9064656, + -3.1543084 + ], + [ + 33.9078542, + -3.1539595 + ], + [ + 33.9099669, + -3.1534286 + ], + [ + 33.9104323, + -3.1533117 + ], + [ + 33.9109517, + -3.1531812 + ], + [ + 33.9114585, + -3.152981 + ], + [ + 33.9120332, + -3.152754 + ], + [ + 33.9122745, + -3.1526442 + ], + [ + 33.9125026, + -3.1525404 + ], + [ + 33.9134652, + -3.1520064 + ], + [ + 33.9137302, + -3.1518867 + ], + [ + 33.9140261, + -3.1518065 + ], + [ + 33.915943, + -3.1513894 + ], + [ + 33.9163741, + -3.1513023 + ], + [ + 33.9166912, + -3.1512582 + ], + [ + 33.9169175, + -3.151247 + ], + [ + 33.9170538, + -3.151247 + ], + [ + 33.9175476, + -3.151247 + ], + [ + 33.9178682, + -3.151247 + ], + [ + 33.9195974, + -3.1512905 + ], + [ + 33.9204336, + -3.1513115 + ], + [ + 33.9204649, + -3.1513123 + ], + [ + 33.9212434, + -3.1513668 + ], + [ + 33.921594, + -3.151342 + ], + [ + 33.9218808, + -3.1512765 + ], + [ + 33.9220882, + -3.1512146 + ], + [ + 33.9228714, + -3.1508851 + ], + [ + 33.9234206, + -3.1506213 + ], + [ + 33.9241311, + -3.1502799 + ], + [ + 33.9244935, + -3.1500485 + ], + [ + 33.924755, + -3.1498112 + ], + [ + 33.9258008, + -3.1487789 + ], + [ + 33.9277755, + -3.1467995 + ], + [ + 33.9288965, + -3.1456759 + ], + [ + 33.9309834, + -3.1436409 + ], + [ + 33.9311767, + -3.1434748 + ], + [ + 33.9314244, + -3.1433534 + ], + [ + 33.931654, + -3.1432893 + ], + [ + 33.9327053, + -3.1429942 + ], + [ + 33.9350346, + -3.1423297 + ], + [ + 33.9371024, + -3.1417601 + ], + [ + 33.9375005, + -3.1415703 + ], + [ + 33.9377263, + -3.1414219 + ], + [ + 33.9395743, + -3.139998 + ], + [ + 33.9409172, + -3.1389834 + ], + [ + 33.9421532, + -3.1380197 + ], + [ + 33.9434663, + -3.1369959 + ], + [ + 33.9443338, + -3.1363966 + ], + [ + 33.9450587, + -3.1360703 + ], + [ + 33.9459025, + -3.1357914 + ], + [ + 33.9483016, + -3.1350515 + ], + [ + 33.9484253, + -3.1350299 + ], + [ + 33.948927, + -3.1349193 + ], + [ + 33.9518861, + -3.1344268 + ], + [ + 33.9528249, + -3.1342488 + ], + [ + 33.9530754, + -3.134217 + ], + [ + 33.9533007, + -3.1342143 + ], + [ + 33.9540133, + -3.1343319 + ], + [ + 33.9545189, + -3.1344409 + ], + [ + 33.9550817, + -3.1345518 + ], + [ + 33.955594, + -3.1346562 + ], + [ + 33.9558703, + -3.1347392 + ], + [ + 33.956463, + -3.1350821 + ], + [ + 33.956632, + -3.1351597 + ], + [ + 33.9568179, + -3.1351744 + ], + [ + 33.9569367, + -3.1351388 + ], + [ + 33.9570556, + -3.1350557 + ], + [ + 33.9579829, + -3.133956 + ], + [ + 33.9583272, + -3.1335131 + ], + [ + 33.958928, + -3.1327681 + ], + [ + 33.9591613, + -3.1325297 + ], + [ + 33.9595878, + -3.1322432 + ], + [ + 33.960111, + -3.1319044 + ], + [ + 33.9623915, + -3.130511 + ], + [ + 33.963877, + -3.1297041 + ], + [ + 33.9646851, + -3.1291701 + ], + [ + 33.9650773, + -3.1288616 + ], + [ + 33.9656872, + -3.1282473 + ], + [ + 33.9660975, + -3.1277732 + ], + [ + 33.966943, + -3.1265951 + ], + [ + 33.9681085, + -3.124949 + ] + ] + }, + "id": "way/499769937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/508046192", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9753304, + -1.4276407 + ], + [ + 33.9749864, + -1.4277892 + ], + [ + 33.9732314, + -1.4284396 + ], + [ + 33.9731088, + -1.428485 + ], + [ + 33.9716424, + -1.428972 + ], + [ + 33.9715806, + -1.4289959 + ], + [ + 33.9705285, + -1.429402 + ], + [ + 33.9692552, + -1.4300056 + ], + [ + 33.968071, + -1.4305981 + ], + [ + 33.9673786, + -1.4309445 + ], + [ + 33.9664496, + -1.4314093 + ], + [ + 33.9648531, + -1.4321596 + ], + [ + 33.9640631, + -1.4325298 + ], + [ + 33.9636815, + -1.4326745 + ], + [ + 33.9625812, + -1.4330916 + ], + [ + 33.9612362, + -1.4335917 + ], + [ + 33.9609865, + -1.4336928 + ], + [ + 33.9601843, + -1.4339488 + ], + [ + 33.9595047, + -1.4341905 + ], + [ + 33.9567144, + -1.4351831 + ], + [ + 33.9554211, + -1.4356432 + ], + [ + 33.9532108, + -1.436395 + ], + [ + 33.95247, + -1.4366684 + ], + [ + 33.9506142, + -1.4373531 + ], + [ + 33.9473954, + -1.4385445 + ], + [ + 33.9461214, + -1.4390161 + ], + [ + 33.9445267, + -1.4395521 + ], + [ + 33.9444226, + -1.4397763 + ], + [ + 33.9443502, + -1.4401704 + ], + [ + 33.9442027, + -1.4411786 + ], + [ + 33.9441276, + -1.4419803 + ], + [ + 33.9441329, + -1.4423101 + ], + [ + 33.9441946, + -1.4426882 + ], + [ + 33.9443824, + -1.4431548 + ], + [ + 33.9446962, + -1.443742 + ], + [ + 33.9450207, + -1.4442059 + ], + [ + 33.9460936, + -1.4456109 + ], + [ + 33.9462197, + -1.4457798 + ], + [ + 33.9472067, + -1.4471205 + ], + [ + 33.9483359, + -1.4486006 + ], + [ + 33.9487758, + -1.4492361 + ], + [ + 33.9495108, + -1.4501933 + ], + [ + 33.9499104, + -1.4507698 + ], + [ + 33.9501545, + -1.4511345 + ], + [ + 33.9504442, + -1.4517485 + ], + [ + 33.9507875, + -1.4526629 + ], + [ + 33.9515412, + -1.4548991 + ], + [ + 33.9528447, + -1.4584117 + ], + [ + 33.9538747, + -1.461337 + ], + [ + 33.9544782, + -1.4630075 + ], + [ + 33.9547089, + -1.4634982 + ], + [ + 33.955138, + -1.4641041 + ], + [ + 33.9555457, + -1.4645063 + ], + [ + 33.9558005, + -1.4647155 + ], + [ + 33.9562833, + -1.465048 + ], + [ + 33.9566562, + -1.4652115 + ], + [ + 33.9571175, + -1.4653804 + ], + [ + 33.9577988, + -1.4655333 + ], + [ + 33.9590512, + -1.4657374 + ], + [ + 33.9597622, + -1.4658819 + ], + [ + 33.9605212, + -1.4660642 + ], + [ + 33.9609584, + -1.4662358 + ], + [ + 33.9621949, + -1.4668337 + ], + [ + 33.962777, + -1.4672654 + ], + [ + 33.9634877, + -1.4678714 + ], + [ + 33.964633, + -1.468893 + ], + [ + 33.9663872, + -1.470483 + ], + [ + 33.9670444, + -1.4710595 + ], + [ + 33.9676237, + -1.4716145 + ], + [ + 33.9693269, + -1.473108 + ], + [ + 33.9701879, + -1.4739097 + ], + [ + 33.970786, + -1.4744782 + ], + [ + 33.9711508, + -1.4747839 + ], + [ + 33.9726233, + -1.4761165 + ], + [ + 33.9731786, + -1.4766152 + ], + [ + 33.9734387, + -1.4768672 + ], + [ + 33.9745358, + -1.4778298 + ], + [ + 33.9754799, + -1.4787039 + ], + [ + 33.9758313, + -1.4790043 + ], + [ + 33.9762926, + -1.4794252 + ], + [ + 33.9776739, + -1.4806667 + ], + [ + 33.9784893, + -1.4813316 + ], + [ + 33.9787871, + -1.4815703 + ], + [ + 33.9790285, + -1.4817472 + ], + [ + 33.979572, + -1.4820159 + ], + [ + 33.9803669, + -1.4823666 + ], + [ + 33.98067, + -1.4825034 + ], + [ + 33.9813995, + -1.4827903 + ], + [ + 33.9823222, + -1.4831603 + ], + [ + 33.9829391, + -1.4833936 + ], + [ + 33.9834326, + -1.4836134 + ], + [ + 33.9842883, + -1.4840183 + ], + [ + 33.9850983, + -1.4844634 + ], + [ + 33.9856964, + -1.4848495 + ], + [ + 33.9862141, + -1.4852195 + ], + [ + 33.9866486, + -1.485611 + ], + [ + 33.9868578, + -1.4858309 + ], + [ + 33.9871207, + -1.4861258 + ], + [ + 33.9874721, + -1.4866728 + ], + [ + 33.987633, + -1.4869409 + ], + [ + 33.9879924, + -1.48763 + ], + [ + 33.9882418, + -1.4880644 + ], + [ + 33.9883465, + -1.488244 + ], + [ + 33.9884832, + -1.4884961 + ], + [ + 33.9886093, + -1.4887186 + ], + [ + 33.9887434, + -1.4889787 + ], + [ + 33.9890626, + -1.4895284 + ], + [ + 33.9894113, + -1.4902202 + ], + [ + 33.9896822, + -1.4906948 + ], + [ + 33.9899621, + -1.4912709 + ], + [ + 33.9903712, + -1.4920244 + ], + [ + 33.9909317, + -1.4929199 + ], + [ + 33.9909966, + -1.4930067 + ] + ] + }, + "id": "way/508046192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/511486614", + "highway": "trunk", + "ref": "T36", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7219551, + -3.189829 + ], + [ + 33.7214869, + -3.1899259 + ], + [ + 33.7203782, + -3.1901971 + ], + [ + 33.7194925, + -3.1903773 + ], + [ + 33.7180723, + -3.1907329 + ], + [ + 33.7169552, + -3.1909879 + ], + [ + 33.7154317, + -3.1913923 + ], + [ + 33.7143265, + -3.1916935 + ], + [ + 33.7131803, + -3.1919562 + ], + [ + 33.712439, + -3.1921131 + ], + [ + 33.7107861, + -3.1925197 + ], + [ + 33.7090885, + -3.1929475 + ], + [ + 33.7080824, + -3.193216 + ], + [ + 33.7071383, + -3.1934302 + ], + [ + 33.7061298, + -3.1937463 + ], + [ + 33.7054646, + -3.1941158 + ], + [ + 33.7049389, + -3.1945068 + ], + [ + 33.7045768, + -3.1948871 + ] + ] + }, + "id": "way/511486614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/511610279", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9407051, + -1.5746366 + ], + [ + 33.9404381, + -1.5750489 + ], + [ + 33.939981, + -1.575678 + ], + [ + 33.9392975, + -1.5764741 + ], + [ + 33.9385778, + -1.5771498 + ], + [ + 33.9375425, + -1.5779256 + ], + [ + 33.9367621, + -1.5783853 + ], + [ + 33.9360023, + -1.5787586 + ], + [ + 33.9342246, + -1.5794603 + ], + [ + 33.933793, + -1.5796505 + ], + [ + 33.9330981, + -1.5800381 + ], + [ + 33.9324441, + -1.5804772 + ], + [ + 33.9318547, + -1.5809893 + ], + [ + 33.9313888, + -1.5814914 + ], + [ + 33.9310624, + -1.5819062 + ], + [ + 33.9307742, + -1.582333 + ], + [ + 33.9305891, + -1.5826523 + ], + [ + 33.9303249, + -1.5831574 + ], + [ + 33.9301568, + -1.5835545 + ], + [ + 33.9297554, + -1.584724 + ], + [ + 33.9295751, + -1.5851757 + ], + [ + 33.92942, + -1.5854926 + ], + [ + 33.9294018, + -1.5855225 + ], + [ + 33.9292631, + -1.5857495 + ], + [ + 33.9290562, + -1.5860504 + ], + [ + 33.9287612, + -1.5864084 + ], + [ + 33.9283387, + -1.586835 + ], + [ + 33.9280362, + -1.5870765 + ], + [ + 33.9277044, + -1.5872999 + ], + [ + 33.9273756, + -1.5874917 + ], + [ + 33.9268193, + -1.5877235 + ], + [ + 33.9260406, + -1.5880171 + ], + [ + 33.9229539, + -1.5891595 + ], + [ + 33.922205, + -1.5894281 + ], + [ + 33.9218411, + -1.5896003 + ], + [ + 33.9214897, + -1.5897883 + ], + [ + 33.9211786, + -1.590032 + ], + [ + 33.9208802, + -1.5903258 + ], + [ + 33.9205778, + -1.5906862 + ], + [ + 33.92033, + -1.5910892 + ], + [ + 33.9187332, + -1.5938641 + ], + [ + 33.9180634, + -1.5947835 + ], + [ + 33.9178074, + -1.5950464 + ], + [ + 33.9175817, + -1.5952308 + ], + [ + 33.9173327, + -1.5953913 + ], + [ + 33.9150007, + -1.5964065 + ], + [ + 33.9145742, + -1.596629 + ], + [ + 33.914196, + -1.5968998 + ], + [ + 33.9138715, + -1.5972323 + ], + [ + 33.9136864, + -1.5974924 + ], + [ + 33.9134959, + -1.5978463 + ], + [ + 33.9133913, + -1.5981305 + ], + [ + 33.9133055, + -1.5985273 + ], + [ + 33.9132331, + -1.5989026 + ], + [ + 33.9131155, + -1.5993046 + ], + [ + 33.9129139, + -1.5996721 + ], + [ + 33.9127476, + -1.5998893 + ], + [ + 33.9123024, + -1.600254 + ], + [ + 33.9118088, + -1.6004979 + ], + [ + 33.9113134, + -1.6005636 + ], + [ + 33.9103639, + -1.6005556 + ], + [ + 33.9097188, + -1.6005449 + ], + [ + 33.9094332, + -1.600573 + ], + [ + 33.9092253, + -1.6006106 + ], + [ + 33.9090295, + -1.6006709 + ], + [ + 33.9083381, + -1.6009323 + ], + [ + 33.907539, + -1.6011843 + ] + ] + }, + "id": "way/511610279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/511610280", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9408888, + -1.5743202 + ], + [ + 33.9407051, + -1.5746366 + ] + ] + }, + "id": "way/511610280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/512382338", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9680494, + -1.5996906 + ], + [ + 33.9681414, + -1.599707 + ] + ] + }, + "id": "way/512382338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/512382340", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.92942, + -1.5854926 + ], + [ + 33.9296225, + -1.5854858 + ], + [ + 33.9299392, + -1.5854891 + ], + [ + 33.9303884, + -1.5855316 + ], + [ + 33.9306271, + -1.585616 + ], + [ + 33.9307332, + -1.5856913 + ], + [ + 33.9309163, + -1.5858423 + ], + [ + 33.9310696, + -1.5860254 + ], + [ + 33.9312037, + -1.586236 + ], + [ + 33.9313983, + -1.5865642 + ], + [ + 33.9315488, + -1.5867905 + ], + [ + 33.9317037, + -1.5870272 + ], + [ + 33.9320166, + -1.5874305 + ], + [ + 33.9324123, + -1.5879013 + ], + [ + 33.9328201, + -1.5884041 + ], + [ + 33.9330833, + -1.5886361 + ], + [ + 33.9334333, + -1.5888245 + ], + [ + 33.9358044, + -1.5892841 + ], + [ + 33.9365445, + -1.5894493 + ], + [ + 33.938008, + -1.5896618 + ], + [ + 33.938585, + -1.5897837 + ], + [ + 33.9392693, + -1.5899317 + ], + [ + 33.9401373, + -1.5901028 + ], + [ + 33.9404281, + -1.5901706 + ], + [ + 33.940695, + -1.5902203 + ], + [ + 33.9414265, + -1.5903399 + ], + [ + 33.9423589, + -1.5904771 + ], + [ + 33.9428831, + -1.5905583 + ], + [ + 33.9436544, + -1.5906581 + ], + [ + 33.9446766, + -1.5907161 + ], + [ + 33.9454605, + -1.5908448 + ], + [ + 33.9457821, + -1.5908863 + ], + [ + 33.9463097, + -1.5909645 + ], + [ + 33.9466385, + -1.5910109 + ], + [ + 33.9466984, + -1.5910193 + ], + [ + 33.9472367, + -1.5911229 + ], + [ + 33.9474674, + -1.5912039 + ], + [ + 33.9480087, + -1.5914369 + ], + [ + 33.9485192, + -1.5917477 + ], + [ + 33.950243, + -1.5928359 + ], + [ + 33.9508024, + -1.5932039 + ], + [ + 33.9516152, + -1.5936521 + ], + [ + 33.9524771, + -1.5941056 + ], + [ + 33.9540316, + -1.594713 + ], + [ + 33.9541369, + -1.5947542 + ], + [ + 33.9552329, + -1.5951825 + ], + [ + 33.9568659, + -1.595908 + ], + [ + 33.9579773, + -1.5963842 + ], + [ + 33.9583352, + -1.5965043 + ], + [ + 33.9586545, + -1.5965587 + ], + [ + 33.9588614, + -1.5965305 + ], + [ + 33.9593541, + -1.596293 + ], + [ + 33.9599848, + -1.5960003 + ], + [ + 33.960406, + -1.5958967 + ], + [ + 33.960827, + -1.5958394 + ], + [ + 33.9615367, + -1.5958775 + ], + [ + 33.9617142, + -1.5959165 + ], + [ + 33.9617968, + -1.5959437 + ], + [ + 33.9621735, + -1.5960404 + ], + [ + 33.9622536, + -1.5960677 + ], + [ + 33.9627403, + -1.5962368 + ], + [ + 33.9632211, + -1.596444 + ], + [ + 33.963599, + -1.5966209 + ], + [ + 33.9638638, + -1.596767 + ], + [ + 33.9642062, + -1.5970029 + ], + [ + 33.9652632, + -1.5978717 + ], + [ + 33.9654203, + -1.5980208 + ], + [ + 33.9664294, + -1.5988907 + ], + [ + 33.9667842, + -1.5991399 + ], + [ + 33.9670698, + -1.5992995 + ], + [ + 33.9676733, + -1.5995729 + ], + [ + 33.9680494, + -1.5996906 + ] + ] + }, + "id": "way/512382340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/515000917", + "highway": "primary", + "ref": "T17", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.939357, + -1.6782883 + ], + [ + 33.9392566, + -1.6775423 + ], + [ + 33.939149, + -1.6769149 + ], + [ + 33.9390238, + -1.6759977 + ], + [ + 33.9387041, + -1.6744645 + ], + [ + 33.9385394, + -1.673607 + ], + [ + 33.9385163, + -1.6734162 + ], + [ + 33.9384882, + -1.6729186 + ], + [ + 33.9384372, + -1.6719617 + ], + [ + 33.9384078, + -1.6716445 + ], + [ + 33.9382344, + -1.670986 + ], + [ + 33.9380404, + -1.670479 + ], + [ + 33.9379894, + -1.6703905 + ], + [ + 33.9378833, + -1.6701989 + ], + [ + 33.937476, + -1.6695987 + ], + [ + 33.9370686, + -1.6689321 + ], + [ + 33.9363214, + -1.6677057 + ], + [ + 33.9351825, + -1.6658832 + ], + [ + 33.934224, + -1.6643839 + ], + [ + 33.9340896, + -1.6641978 + ], + [ + 33.9332002, + -1.6629251 + ], + [ + 33.9327826, + -1.6623767 + ], + [ + 33.9321298, + -1.6615195 + ], + [ + 33.9311966, + -1.6603811 + ], + [ + 33.9300103, + -1.6577408 + ], + [ + 33.9296785, + -1.6570925 + ], + [ + 33.9292858, + -1.6561002 + ], + [ + 33.9291689, + -1.6558243 + ], + [ + 33.9290374, + -1.655524 + ], + [ + 33.928965, + -1.6552961 + ], + [ + 33.9289677, + -1.6551862 + ], + [ + 33.9290482, + -1.6548886 + ], + [ + 33.9290616, + -1.6547197 + ], + [ + 33.9290374, + -1.6545615 + ], + [ + 33.928768, + -1.654035 + ], + [ + 33.9280343, + -1.6526539 + ], + [ + 33.9278975, + -1.6523 + ], + [ + 33.9278063, + -1.6519153 + ], + [ + 33.9278117, + -1.6516699 + ], + [ + 33.9278814, + -1.6513978 + ], + [ + 33.9278921, + -1.6512249 + ], + [ + 33.927864, + -1.6509742 + ], + [ + 33.9277741, + -1.6506887 + ], + [ + 33.9276042, + -1.6503854 + ], + [ + 33.9274093, + -1.6501364 + ], + [ + 33.9268461, + -1.6495801 + ], + [ + 33.9266208, + -1.6493146 + ], + [ + 33.9264464, + -1.6491404 + ], + [ + 33.9262184, + -1.6489044 + ], + [ + 33.9260575, + -1.6486604 + ], + [ + 33.9258859, + -1.648261 + ], + [ + 33.9258134, + -1.6480089 + ], + [ + 33.9257947, + -1.6478105 + ], + [ + 33.9258027, + -1.6475692 + ], + [ + 33.9257652, + -1.6473118 + ], + [ + 33.9254755, + -1.6465531 + ], + [ + 33.9245957, + -1.6441026 + ], + [ + 33.9240807, + -1.6427647 + ], + [ + 33.923834, + -1.6423518 + ], + [ + 33.9236489, + -1.6421239 + ], + [ + 33.9216905, + -1.6398748 + ], + [ + 33.9210456, + -1.6391483 + ], + [ + 33.9204329, + -1.6383395 + ], + [ + 33.920044, + -1.6375888 + ], + [ + 33.9190587, + -1.6350868 + ], + [ + 33.9169997, + -1.6295441 + ], + [ + 33.9167744, + -1.6289261 + ], + [ + 33.9165196, + -1.6282411 + ], + [ + 33.9161816, + -1.6272759 + ], + [ + 33.91601, + -1.6268094 + ], + [ + 33.9158839, + -1.6264501 + ], + [ + 33.915672, + -1.6258683 + ], + [ + 33.9152616, + -1.6247744 + ], + [ + 33.914621, + -1.6231873 + ], + [ + 33.9142317, + -1.6219565 + ], + [ + 33.913285, + -1.6192419 + ], + [ + 33.9131346, + -1.618471 + ], + [ + 33.9130756, + -1.6179763 + ], + [ + 33.9130622, + -1.6177377 + ], + [ + 33.9130502, + -1.6174662 + ], + [ + 33.9130152, + -1.6167022 + ], + [ + 33.9130083, + -1.6160371 + ], + [ + 33.9129871, + -1.6159038 + ], + [ + 33.9129214, + -1.6157886 + ], + [ + 33.9128557, + -1.6156987 + ], + [ + 33.9127699, + -1.6156304 + ], + [ + 33.9125741, + -1.6155271 + ] + ] + }, + "id": "way/515000917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/515206306", + "highway": "secondary", + "lanes": "2", + "ref": "C12", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4071832, + -1.4488321 + ], + [ + 35.4070178, + -1.4490792 + ], + [ + 35.4068018, + -1.4494573 + ], + [ + 35.4064478, + -1.4500512 + ], + [ + 35.4060495, + -1.4507698 + ], + [ + 35.4056602, + -1.4516837 + ], + [ + 35.4052019, + -1.4529846 + ], + [ + 35.404703, + -1.4545452 + ], + [ + 35.4043018, + -1.4556392 + ], + [ + 35.4041076, + -1.4562719 + ], + [ + 35.4039735, + -1.4566715 + ], + [ + 35.4037504, + -1.4570828 + ], + [ + 35.403403, + -1.457415 + ], + [ + 35.4033599, + -1.4574386 + ], + [ + 35.4030374, + -1.4576582 + ], + [ + 35.402478, + -1.4579207 + ], + [ + 35.4019003, + -1.4580944 + ], + [ + 35.4012055, + -1.4582454 + ], + [ + 35.3996726, + -1.4584794 + ], + [ + 35.3938713, + -1.4593815 + ], + [ + 35.3917276, + -1.4597148 + ], + [ + 35.3889692, + -1.4601974 + ], + [ + 35.3882309, + -1.4603397 + ], + [ + 35.3880799, + -1.4603688 + ], + [ + 35.3861824, + -1.4607659 + ], + [ + 35.3854609, + -1.4609482 + ], + [ + 35.3838354, + -1.4613397 + ], + [ + 35.3828001, + -1.4615971 + ], + [ + 35.3813624, + -1.4619108 + ], + [ + 35.3810137, + -1.4619403 + ], + [ + 35.38059, + -1.4619591 + ], + [ + 35.3792596, + -1.4620502 + ], + [ + 35.3784683, + -1.4621146 + ], + [ + 35.3773284, + -1.4622486 + ], + [ + 35.3767356, + -1.4623639 + ], + [ + 35.3759846, + -1.462549 + ], + [ + 35.3756601, + -1.4626361 + ], + [ + 35.3753301, + -1.462742 + ], + [ + 35.3746851, + -1.4629713 + ], + [ + 35.3741218, + -1.4631764 + ], + [ + 35.3737141, + -1.4633118 + ], + [ + 35.3733963, + -1.4634579 + ], + [ + 35.3732488, + -1.4635451 + ], + [ + 35.3731053, + -1.4636671 + ], + [ + 35.3729242, + -1.463895 + ], + [ + 35.3728035, + -1.4641189 + ], + [ + 35.3727552, + -1.4643522 + ], + [ + 35.3727244, + -1.4645653 + ], + [ + 35.3727056, + -1.4648831 + ] + ] + }, + "id": "way/515206306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/515206308", + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxspeed:type": "KE:rural", + "maxweight:signed": "no", + "ref": "C12", + "smoothness": "good", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4133629, + -1.4343493 + ], + [ + 35.4133219, + -1.4347403 + ] + ] + }, + "id": "way/515206308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/516547583", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6320429, + -1.162789 + ], + [ + 34.6324203, + -1.16293 + ] + ] + }, + "id": "way/516547583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/597899983", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2027295, + -1.5037778 + ], + [ + 35.2025527, + -1.5042036 + ], + [ + 35.2025127, + -1.5043962 + ], + [ + 35.2024913, + -1.5046375 + ], + [ + 35.2024953, + -1.5048547 + ], + [ + 35.2025235, + -1.5050826 + ], + [ + 35.2026442, + -1.5057169 + ], + [ + 35.202785, + -1.5064433 + ], + [ + 35.2029057, + -1.5071029 + ], + [ + 35.2029902, + -1.5075172 + ], + [ + 35.2031484, + -1.5082974 + ], + [ + 35.203245, + -1.5087935 + ], + [ + 35.2033979, + -1.5095978 + ], + [ + 35.2039638, + -1.5126304 + ], + [ + 35.2040798, + -1.5134254 + ], + [ + 35.2041677, + -1.5141198 + ], + [ + 35.2042226, + -1.5144443 + ], + [ + 35.204291, + -1.5147392 + ], + [ + 35.2046025, + -1.5158451 + ], + [ + 35.204861, + -1.5165893 + ], + [ + 35.2051735, + -1.5174526 + ], + [ + 35.2056281, + -1.5187222 + ], + [ + 35.2062169, + -1.5203189 + ], + [ + 35.2065897, + -1.5213432 + ], + [ + 35.2068861, + -1.5221395 + ], + [ + 35.2071865, + -1.5229023 + ], + [ + 35.2074587, + -1.5235284 + ], + [ + 35.2077296, + -1.5240673 + ], + [ + 35.208081, + -1.5247055 + ], + [ + 35.2082004, + -1.5249066 + ], + [ + 35.2084552, + -1.5252618 + ], + [ + 35.2087811, + -1.5256627 + ], + [ + 35.2089742, + -1.5258758 + ], + [ + 35.2100363, + -1.5270046 + ], + [ + 35.2106237, + -1.5276213 + ], + [ + 35.2108034, + -1.5278171 + ], + [ + 35.210904, + -1.5279538 + ], + [ + 35.2110489, + -1.5282152 + ], + [ + 35.2112675, + -1.5286268 + ], + [ + 35.2115317, + -1.5291483 + ], + [ + 35.211702, + -1.529517 + ], + [ + 35.212681, + -1.5315869 + ], + [ + 35.2130538, + -1.5323296 + ], + [ + 35.2134092, + -1.5331246 + ], + [ + 35.2136815, + -1.5337399 + ], + [ + 35.21401, + -1.5344625 + ], + [ + 35.2145666, + -1.5356115 + ], + [ + 35.214875, + -1.5362563 + ], + [ + 35.2154182, + -1.5374146 + ], + [ + 35.215795, + -1.5381854 + ], + [ + 35.2165326, + -1.5397996 + ], + [ + 35.2170771, + -1.5408667 + ], + [ + 35.2178778, + -1.5423521 + ], + [ + 35.2181607, + -1.5428387 + ], + [ + 35.2193087, + -1.5448215 + ], + [ + 35.2202502, + -1.5463471 + ], + [ + 35.2214518, + -1.5483071 + ], + [ + 35.222987, + -1.5508013 + ], + [ + 35.2239262, + -1.5523839 + ], + [ + 35.2248076, + -1.5538122 + ], + [ + 35.2248985, + -1.5539229 + ], + [ + 35.2250996, + -1.5541897 + ], + [ + 35.2252699, + -1.5544002 + ], + [ + 35.2255248, + -1.554679 + ], + [ + 35.2263308, + -1.5554043 + ], + [ + 35.2275404, + -1.5563883 + ], + [ + 35.2280232, + -1.5568361 + ], + [ + 35.2281949, + -1.557013 + ], + [ + 35.228337, + -1.5571927 + ], + [ + 35.2286294, + -1.5576297 + ], + [ + 35.228852, + -1.5579944 + ], + [ + 35.2290727, + -1.5584454 + ], + [ + 35.2295199, + -1.5592706 + ], + [ + 35.22989, + -1.5598846 + ], + [ + 35.2310984, + -1.5616475 + ], + [ + 35.2318346, + -1.5625605 + ], + [ + 35.2327037, + -1.5636946 + ], + [ + 35.2339509, + -1.5653194 + ], + [ + 35.2346671, + -1.5662632 + ], + [ + 35.2350451, + -1.5668185 + ], + [ + 35.235166, + -1.5670488 + ], + [ + 35.2352598, + -1.5673679 + ], + [ + 35.2353913, + -1.5680543 + ], + [ + 35.2356032, + -1.5697327 + ], + [ + 35.235858, + -1.5712664 + ], + [ + 35.2360082, + -1.5723281 + ], + [ + 35.2360752, + -1.5726874 + ], + [ + 35.2361745, + -1.5731486 + ], + [ + 35.23633, + -1.5735052 + ], + [ + 35.2365687, + -1.5739234 + ], + [ + 35.2368759, + -1.5744597 + ], + [ + 35.237132, + -1.5748993 + ], + [ + 35.2371508, + -1.5749316 + ], + [ + 35.2374083, + -1.5753176 + ], + [ + 35.237985, + -1.5759826 + ], + [ + 35.2387279, + -1.5767843 + ], + [ + 35.239141, + -1.5771784 + ], + [ + 35.2398062, + -1.5778943 + ], + [ + 35.2401844, + -1.5782455 + ], + [ + 35.241091, + -1.5789373 + ], + [ + 35.2416462, + -1.5793743 + ], + [ + 35.2426439, + -1.5801545 + ], + [ + 35.2434057, + -1.5807417 + ], + [ + 35.2444077, + -1.5815017 + ], + [ + 35.2449278, + -1.5819523 + ] + ] + }, + "id": "way/597899983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/597899984", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2027608, + -1.5036883 + ], + [ + 35.2027295, + -1.5037778 + ] + ] + }, + "id": "way/597899984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/639040588", + "highway": "primary", + "ref": "C727", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6101978, + -1.2208009 + ], + [ + 34.6099953, + -1.221234 + ], + [ + 34.6099283, + -1.2213788 + ], + [ + 34.6098156, + -1.221608 + ], + [ + 34.6096466, + -1.2219513 + ], + [ + 34.6095259, + -1.2221765 + ], + [ + 34.6094643, + -1.2222972 + ], + [ + 34.6093261, + -1.2225479 + ], + [ + 34.6091545, + -1.2228362 + ], + [ + 34.6090364, + -1.2230253 + ], + [ + 34.6089533, + -1.2231446 + ], + [ + 34.6087763, + -1.223398 + ], + [ + 34.6086368, + -1.2235723 + ], + [ + 34.6082921, + -1.2240161 + ], + [ + 34.6080282, + -1.2243465 + ], + [ + 34.6077959, + -1.2246382 + ], + [ + 34.6076658, + -1.2247817 + ], + [ + 34.6074204, + -1.2250686 + ], + [ + 34.6073037, + -1.225192 + ], + [ + 34.6070932, + -1.2254119 + ], + [ + 34.6069414, + -1.2255688 + ], + [ + 34.6067794, + -1.2257243 + ], + [ + 34.6065648, + -1.2259348 + ], + [ + 34.6063958, + -1.2260877 + ], + [ + 34.6062107, + -1.2262552 + ], + [ + 34.6061008, + -1.2263484 + ], + [ + 34.6057092, + -1.226681 + ], + [ + 34.6053712, + -1.2269645 + ], + [ + 34.6050353, + -1.2272367 + ], + [ + 34.6048073, + -1.2274177 + ], + [ + 34.6046812, + -1.2275277 + ], + [ + 34.6044572, + -1.227712 + ], + [ + 34.6042769, + -1.2278622 + ], + [ + 34.6040301, + -1.2280647 + ], + [ + 34.6038356, + -1.2282209 + ], + [ + 34.6036519, + -1.2283758 + ], + [ + 34.6033797, + -1.2286016 + ], + [ + 34.6033106, + -1.22866 + ], + [ + 34.6031886, + -1.2287625 + ], + [ + 34.6030451, + -1.2288785 + ], + [ + 34.602919, + -1.2289824 + ], + [ + 34.6028674, + -1.229026 + ], + [ + 34.6026925, + -1.2291857 + ], + [ + 34.6026085, + -1.229272 + ], + [ + 34.6024536, + -1.2294323 + ], + [ + 34.6023457, + -1.2295643 + ], + [ + 34.6021874, + -1.2297534 + ], + [ + 34.6021003, + -1.2298674 + ], + [ + 34.6020151, + -1.2299813 + ], + [ + 34.601889, + -1.230157 + ], + [ + 34.6018072, + -1.2302689 + ], + [ + 34.6017583, + -1.2303386 + ], + [ + 34.6017076, + -1.2304218 + ], + [ + 34.6016718, + -1.2304908 + ], + [ + 34.6015866, + -1.2306571 + ], + [ + 34.6014903, + -1.2308456 + ], + [ + 34.6011702, + -1.2315541 + ], + [ + 34.6011166, + -1.2316727 + ], + [ + 34.6009301, + -1.2320944 + ], + [ + 34.600825, + -1.2323178 + ], + [ + 34.6005908, + -1.2327977 + ], + [ + 34.6004547, + -1.2330893 + ], + [ + 34.600387, + -1.2332307 + ], + [ + 34.6003494, + -1.2333192 + ], + [ + 34.6003152, + -1.2334218 + ], + [ + 34.6002951, + -1.2335063 + ], + [ + 34.6002767, + -1.2336085 + ], + [ + 34.6002735, + -1.23371 + ], + [ + 34.6002764, + -1.2337959 + ], + [ + 34.6002779, + -1.2338465 + ], + [ + 34.6002782, + -1.2338732 + ], + [ + 34.6003194, + -1.2340857 + ], + [ + 34.6004723, + -1.2347365 + ] + ] + }, + "id": "way/639040588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/639040589", + "highway": "primary", + "ref": "C727", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6124209, + -1.2155112 + ], + [ + 34.6122202, + -1.2158627 + ], + [ + 34.6120526, + -1.2161852 + ], + [ + 34.6119466, + -1.2164057 + ], + [ + 34.6118273, + -1.2166685 + ], + [ + 34.6117857, + -1.2167624 + ], + [ + 34.6116596, + -1.2170292 + ], + [ + 34.6115953, + -1.2171767 + ], + [ + 34.6115269, + -1.2173322 + ], + [ + 34.6114759, + -1.2174703 + ], + [ + 34.6113592, + -1.2177747 + ], + [ + 34.6111138, + -1.2184223 + ], + [ + 34.6110468, + -1.2185939 + ], + [ + 34.6109167, + -1.2189854 + ], + [ + 34.6107061, + -1.2195378 + ], + [ + 34.6106793, + -1.2195995 + ], + [ + 34.6105224, + -1.2200179 + ], + [ + 34.6104459, + -1.2202123 + ], + [ + 34.6103548, + -1.2204188 + ], + [ + 34.6101978, + -1.2208009 + ] + ] + }, + "id": "way/639040589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/639750760", + "highway": "primary", + "ref": "T17", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9069998, + -1.6009805 + ], + [ + 33.9064831, + -1.5998878 + ], + [ + 33.9062945, + -1.5994049 + ], + [ + 33.9059219, + -1.5984509 + ], + [ + 33.9049884, + -1.5961772 + ], + [ + 33.9043714, + -1.5949244 + ], + [ + 33.9042595, + -1.5946973 + ], + [ + 33.9038896, + -1.5940082 + ], + [ + 33.9037385, + -1.5937266 + ], + [ + 33.9032021, + -1.5927936 + ], + [ + 33.9030452, + -1.5925618 + ], + [ + 33.9027852, + -1.5922022 + ], + [ + 33.9025565, + -1.5918397 + ], + [ + 33.9023384, + -1.5915174 + ], + [ + 33.9022483, + -1.5913955 + ], + [ + 33.9022033, + -1.5913401 + ], + [ + 33.9014477, + -1.5902645 + ], + [ + 33.9008055, + -1.5895182 + ], + [ + 33.9004424, + -1.58905 + ], + [ + 33.8999267, + -1.5884403 + ], + [ + 33.8993908, + -1.5878069 + ], + [ + 33.8991251, + -1.5874928 + ], + [ + 33.8987888, + -1.5870953 + ], + [ + 33.8987452, + -1.5870437 + ], + [ + 33.8977924, + -1.5859176 + ], + [ + 33.8973915, + -1.5854137 + ], + [ + 33.8969866, + -1.5849118 + ], + [ + 33.896896, + -1.5847858 + ], + [ + 33.8961238, + -1.5839457 + ], + [ + 33.8958982, + -1.5837424 + ], + [ + 33.8945245, + -1.5825304 + ], + [ + 33.8940298, + -1.5821772 + ], + [ + 33.8931652, + -1.5814763 + ], + [ + 33.8923381, + -1.5808718 + ], + [ + 33.8889058, + -1.578335 + ], + [ + 33.8867291, + -1.5767235 + ], + [ + 33.8862135, + -1.5762753 + ], + [ + 33.8861848, + -1.5762504 + ], + [ + 33.8857904, + -1.5759075 + ], + [ + 33.8856345, + -1.5757385 + ], + [ + 33.8855058, + -1.575618 + ], + [ + 33.8849472, + -1.5749936 + ], + [ + 33.8847428, + -1.574772 + ], + [ + 33.8844404, + -1.5743546 + ], + [ + 33.8837429, + -1.5733917 + ], + [ + 33.8829227, + -1.571995 + ], + [ + 33.8827566, + -1.5717121 + ], + [ + 33.8810562, + -1.5686686 + ], + [ + 33.8794601, + -1.5657669 + ], + [ + 33.8788999, + -1.5644668 + ], + [ + 33.8783876, + -1.5630887 + ], + [ + 33.8771707, + -1.5592029 + ], + [ + 33.8757443, + -1.5563995 + ], + [ + 33.8744055, + -1.5543935 + ], + [ + 33.8742305, + -1.5541634 + ], + [ + 33.8740484, + -1.5539228 + ] + ] + }, + "id": "way/639750760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/639783008", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0061456, + -1.4237289 + ], + [ + 34.0055985, + -1.4237224 + ], + [ + 34.0041468, + -1.4237539 + ], + [ + 34.0024235, + -1.4237081 + ], + [ + 34.0006739, + -1.4236639 + ], + [ + 33.9993516, + -1.4236585 + ], + [ + 33.9988071, + -1.4236719 + ], + [ + 33.9984208, + -1.4236505 + ], + [ + 33.9982894, + -1.4236532 + ], + [ + 33.9972541, + -1.4236746 + ], + [ + 33.9964092, + -1.4237229 + ], + [ + 33.9946631, + -1.4237095 + ], + [ + 33.9936626, + -1.4236907 + ], + [ + 33.9929008, + -1.4237148 + ], + [ + 33.9922088, + -1.4237926 + ], + [ + 33.9911762, + -1.4239535 + ], + [ + 33.9906988, + -1.4240473 + ], + [ + 33.9890358, + -1.424294 + ], + [ + 33.9879844, + -1.4244576 + ], + [ + 33.9860854, + -1.4247204 + ], + [ + 33.9858171, + -1.4247633 + ], + [ + 33.985447, + -1.4248303 + ], + [ + 33.9828962, + -1.4250984 + ], + [ + 33.9824912, + -1.425195 + ], + [ + 33.9820272, + -1.4253076 + ], + [ + 33.9810193, + -1.4256283 + ], + [ + 33.9794255, + -1.4260289 + ], + [ + 33.9784089, + -1.4263372 + ], + [ + 33.9779295, + -1.4265185 + ], + [ + 33.9755664, + -1.4275388 + ], + [ + 33.9754281, + -1.4275882 + ], + [ + 33.9753304, + -1.4276407 + ] + ] + }, + "id": "way/639783008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/640677712", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0194583, + -3.129621 + ], + [ + 34.0197793, + -3.1298703 + ], + [ + 34.0199697, + -3.1301006 + ], + [ + 34.0201414, + -3.1303524 + ], + [ + 34.0205187, + -3.131051 + ], + [ + 34.0208689, + -3.1316964 + ], + [ + 34.0212171, + -3.1323384 + ], + [ + 34.0215063, + -3.1328225 + ], + [ + 34.0216212, + -3.1330148 + ], + [ + 34.0225815, + -3.1347814 + ], + [ + 34.0233826, + -3.1362552 + ], + [ + 34.0236246, + -3.1367002 + ], + [ + 34.0240336, + -3.1374527 + ], + [ + 34.0243587, + -3.1380633 + ], + [ + 34.0248626, + -3.1390097 + ], + [ + 34.0249444, + -3.1391634 + ], + [ + 34.0254164, + -3.1400498 + ], + [ + 34.0258062, + -3.14065 + ], + [ + 34.0270284, + -3.1423297 + ], + [ + 34.0286327, + -3.14443 + ], + [ + 34.0297973, + -3.1459963 + ], + [ + 34.0301701, + -3.1464991 + ], + [ + 34.0305322, + -3.1469062 + ], + [ + 34.0309501, + -3.1472897 + ], + [ + 34.0326732, + -3.1487136 + ], + [ + 34.0332869, + -3.149271 + ], + [ + 34.0346103, + -3.1504817 + ], + [ + 34.0373674, + -3.1531159 + ], + [ + 34.0377057, + -3.1534331 + ], + [ + 34.0377805, + -3.1535032 + ], + [ + 34.0395065, + -3.1551213 + ], + [ + 34.040985, + -3.1565961 + ], + [ + 34.0412182, + -3.1568288 + ], + [ + 34.0426961, + -3.1582321 + ], + [ + 34.0436536, + -3.1591614 + ], + [ + 34.0451798, + -3.1606103 + ], + [ + 34.04695, + -3.1623056 + ], + [ + 34.0471566, + -3.1624582 + ], + [ + 34.0477421, + -3.1627985 + ], + [ + 34.0485264, + -3.1632613 + ], + [ + 34.0501518, + -3.1640907 + ], + [ + 34.0512003, + -3.1646258 + ], + [ + 34.0534464, + -3.1658124 + ], + [ + 34.0542698, + -3.166237 + ], + [ + 34.0547928, + -3.1664915 + ], + [ + 34.0552247, + -3.1666387 + ], + [ + 34.0553936, + -3.1666977 + ], + [ + 34.0555707, + -3.1667191 + ], + [ + 34.0599453, + -3.1668744 + ], + [ + 34.0606956, + -3.1669159 + ], + [ + 34.0611591, + -3.1669397 + ], + [ + 34.0614903, + -3.1668905 + ], + [ + 34.0618336, + -3.1667512 + ], + [ + 34.0630724, + -3.1658243 + ], + [ + 34.0643609, + -3.1646144 + ], + [ + 34.0647599, + -3.1642343 + ], + [ + 34.0648904, + -3.1641237 + ], + [ + 34.0661707, + -3.1630394 + ], + [ + 34.0663424, + -3.1629135 + ], + [ + 34.0665597, + -3.1628037 + ], + [ + 34.0668145, + -3.1626992 + ], + [ + 34.068507, + -3.1621636 + ], + [ + 34.0698065, + -3.1617315 + ], + [ + 34.0713199, + -3.1612915 + ], + [ + 34.0735638, + -3.160603 + ], + [ + 34.0737775, + -3.160546 + ], + [ + 34.0740825, + -3.1604847 + ], + [ + 34.0744572, + -3.1604016 + ], + [ + 34.0748048, + -3.1603639 + ], + [ + 34.0751213, + -3.1603693 + ], + [ + 34.0754709, + -3.1604166 + ], + [ + 34.0760171, + -3.1604737 + ], + [ + 34.0770329, + -3.1605863 + ], + [ + 34.0776694, + -3.160696 + ], + [ + 34.0793416, + -3.1608822 + ], + [ + 34.0796597, + -3.1609131 + ], + [ + 34.0799169, + -3.1609382 + ], + [ + 34.0809332, + -3.161037 + ], + [ + 34.0816589, + -3.1611076 + ], + [ + 34.0830938, + -3.1612607 + ], + [ + 34.0834025, + -3.1612936 + ], + [ + 34.084238, + -3.1613592 + ], + [ + 34.0844554, + -3.1613669 + ], + [ + 34.0847169, + -3.1613803 + ], + [ + 34.0848443, + -3.1613883 + ], + [ + 34.0854803, + -3.1614522 + ], + [ + 34.0861836, + -3.1615312 + ], + [ + 34.0872744, + -3.161628 + ], + [ + 34.0878629, + -3.1616914 + ], + [ + 34.088256, + -3.161717 + ], + [ + 34.0883788, + -3.1617251 + ], + [ + 34.0894512, + -3.161795 + ], + [ + 34.0896584, + -3.1618085 + ], + [ + 34.0900682, + -3.161857 + ], + [ + 34.0901875, + -3.1618711 + ], + [ + 34.0920574, + -3.1620925 + ], + [ + 34.0926991, + -3.1621993 + ], + [ + 34.0930304, + -3.1622707 + ], + [ + 34.0933737, + -3.1623939 + ], + [ + 34.094458, + -3.1628282 + ], + [ + 34.0959755, + -3.163433 + ], + [ + 34.0978449, + -3.1642877 + ], + [ + 34.1063657, + -3.1683932 + ], + [ + 34.1067258, + -3.1685871 + ], + [ + 34.1070691, + -3.1688227 + ], + [ + 34.1087306, + -3.170007 + ], + [ + 34.1125335, + -3.1724039 + ], + [ + 34.1129753, + -3.1726216 + ], + [ + 34.1132918, + -3.1727368 + ], + [ + 34.1136485, + -3.1728118 + ], + [ + 34.1144156, + -3.1728252 + ], + [ + 34.1151861, + -3.1727801 + ], + [ + 34.1163629, + -3.172718 + ], + [ + 34.116574, + -3.1727242 + ], + [ + 34.1168107, + -3.1727518 + ], + [ + 34.1185863, + -3.1733153 + ], + [ + 34.1192919, + -3.1735616 + ], + [ + 34.1199134, + -3.1738396 + ], + [ + 34.1208166, + -3.1742905 + ], + [ + 34.122164, + -3.1752872 + ], + [ + 34.1234667, + -3.1762484 + ], + [ + 34.1238744, + -3.1765358 + ], + [ + 34.1242147, + -3.1768477 + ], + [ + 34.1243639, + -3.1769913 + ], + [ + 34.1244767, + -3.1771435 + ], + [ + 34.1246013, + -3.1773174 + ], + [ + 34.1249879, + -3.1779214 + ], + [ + 34.1251264, + -3.1781382 + ], + [ + 34.1257107, + -3.1790383 + ], + [ + 34.1264467, + -3.1801551 + ], + [ + 34.1266492, + -3.1805006 + ], + [ + 34.1267525, + -3.1807349 + ], + [ + 34.1267994, + -3.1809599 + ], + [ + 34.126837, + -3.1812705 + ], + [ + 34.126837, + -3.1816977 + ], + [ + 34.1268212, + -3.182002 + ], + [ + 34.1264615, + -3.1841865 + ], + [ + 34.1262238, + -3.1854561 + ], + [ + 34.1259986, + -3.1861729 + ], + [ + 34.1255939, + -3.1874614 + ], + [ + 34.1251284, + -3.1888186 + ], + [ + 34.1250774, + -3.1890409 + ], + [ + 34.1250426, + -3.1892632 + ], + [ + 34.124946, + -3.1899515 + ], + [ + 34.1247739, + -3.1908193 + ], + [ + 34.1246432, + -3.1918042 + ], + [ + 34.1241655, + -3.1935427 + ], + [ + 34.1240931, + -3.1940569 + ], + [ + 34.1240743, + -3.1944693 + ], + [ + 34.1241172, + -3.1948496 + ], + [ + 34.1241762, + -3.1950451 + ], + [ + 34.1243219, + -3.1954418 + ], + [ + 34.1244578, + -3.1956798 + ], + [ + 34.1251873, + -3.196747 + ], + [ + 34.1265102, + -3.1986413 + ], + [ + 34.1290662, + -3.2023013 + ], + [ + 34.1296104, + -3.2030805 + ], + [ + 34.1298625, + -3.2033751 + ], + [ + 34.130069, + -3.2035371 + ], + [ + 34.1302112, + -3.2036228 + ], + [ + 34.1304499, + -3.2036523 + ], + [ + 34.1308495, + -3.2036576 + ], + [ + 34.1312388, + -3.2036459 + ], + [ + 34.1330129, + -3.2034086 + ], + [ + 34.1343218, + -3.2031823 + ], + [ + 34.13621, + -3.2028558 + ], + [ + 34.1400125, + -3.2021983 + ], + [ + 34.1419228, + -3.201883 + ], + [ + 34.1423377, + -3.2018298 + ], + [ + 34.1426975, + -3.2018182 + ], + [ + 34.1429598, + -3.2018305 + ], + [ + 34.1433517, + -3.2019051 + ], + [ + 34.1434085, + -3.2019234 + ], + [ + 34.1440768, + -3.202139 + ], + [ + 34.1451963, + -3.2024499 + ], + [ + 34.1458713, + -3.2026373 + ], + [ + 34.1481085, + -3.2032892 + ], + [ + 34.1486403, + -3.2034442 + ], + [ + 34.1499752, + -3.2038122 + ], + [ + 34.1524848, + -3.204504 + ], + [ + 34.1534176, + -3.2047612 + ], + [ + 34.1547368, + -3.2051053 + ], + [ + 34.1551408, + -3.2052833 + ], + [ + 34.155735, + -3.2056749 + ], + [ + 34.1568284, + -3.2064862 + ], + [ + 34.1572799, + -3.2068139 + ], + [ + 34.1574655, + -3.206954 + ], + [ + 34.1584949, + -3.2077309 + ], + [ + 34.1587892, + -3.207953 + ], + [ + 34.1599182, + -3.2087598 + ], + [ + 34.162806, + -3.2109787 + ], + [ + 34.1630089, + -3.2111268 + ], + [ + 34.1654561, + -3.2129127 + ], + [ + 34.1667633, + -3.2138501 + ], + [ + 34.1676071, + -3.2145501 + ], + [ + 34.1678448, + -3.2147044 + ], + [ + 34.168023, + -3.2147993 + ], + [ + 34.1684746, + -3.2149654 + ], + [ + 34.1687123, + -3.2149891 + ], + [ + 34.1689691, + -3.2149856 + ], + [ + 34.1692946, + -3.2149179 + ], + [ + 34.1696393, + -3.214823 + ], + [ + 34.1701949, + -3.2146294 + ] + ] + }, + "id": "way/640677712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641961528", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2017553, + -1.334104 + ], + [ + 34.2017124, + -1.3341577 + ] + ] + }, + "id": "way/641961528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641961532", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.2162759, + -1.3166212 + ], + [ + 34.2161683, + -1.3166466 + ], + [ + 34.2158531, + -1.3167361 + ], + [ + 34.2155069, + -1.3167857 + ], + [ + 34.2143442, + -1.3169133 + ], + [ + 34.2140474, + -1.3169413 + ], + [ + 34.2137915, + -1.3169854 + ], + [ + 34.2132054, + -1.3171664 + ], + [ + 34.2121822, + -1.3176236 + ], + [ + 34.2119837, + -1.3178274 + ], + [ + 34.2118442, + -1.3180902 + ], + [ + 34.2117894, + -1.3182822 + ], + [ + 34.2116941, + -1.3185086 + ], + [ + 34.211517, + -1.3188906 + ], + [ + 34.2114218, + -1.3190663 + ], + [ + 34.211348, + -1.3192057 + ], + [ + 34.2113239, + -1.31925 + ], + [ + 34.2111817, + -1.3195127 + ], + [ + 34.211061, + -1.3196991 + ], + [ + 34.2109457, + -1.319856 + ], + [ + 34.2108437, + -1.3200102 + ], + [ + 34.2107767, + -1.3201107 + ], + [ + 34.2106466, + -1.3203065 + ], + [ + 34.2105755, + -1.3204003 + ], + [ + 34.210469, + -1.3205503 + ], + [ + 34.2103541, + -1.3207008 + ], + [ + 34.2102272, + -1.3208668 + ], + [ + 34.210125, + -1.3210007 + ], + [ + 34.2094742, + -1.3218511 + ], + [ + 34.2091404, + -1.3222898 + ], + [ + 34.2087041, + -1.3227446 + ], + [ + 34.2085136, + -1.3229433 + ], + [ + 34.2080332, + -1.3234441 + ], + [ + 34.2077642, + -1.3238342 + ], + [ + 34.2074276, + -1.3243222 + ], + [ + 34.2073337, + -1.3244585 + ], + [ + 34.2071155, + -1.3248079 + ], + [ + 34.2067038, + -1.3254134 + ], + [ + 34.2066608, + -1.3254831 + ], + [ + 34.2066018, + -1.325585 + ], + [ + 34.2063027, + -1.3260898 + ], + [ + 34.2059286, + -1.3267219 + ], + [ + 34.2054833, + -1.3275304 + ], + [ + 34.2054538, + -1.3275854 + ], + [ + 34.2053318, + -1.3278294 + ], + [ + 34.2051762, + -1.328115 + ], + [ + 34.2047455, + -1.3288538 + ], + [ + 34.2046422, + -1.3290423 + ], + [ + 34.2046053, + -1.3291096 + ], + [ + 34.2041721, + -1.3298587 + ], + [ + 34.2039239, + -1.3302507 + ], + [ + 34.2035116, + -1.3309463 + ], + [ + 34.2033735, + -1.3311792 + ], + [ + 34.2033301, + -1.3312524 + ], + [ + 34.2032097, + -1.3314638 + ], + [ + 34.2031889, + -1.3315003 + ], + [ + 34.202895, + -1.3320769 + ], + [ + 34.2028011, + -1.3322726 + ], + [ + 34.2027555, + -1.332404 + ], + [ + 34.2025584, + -1.3328438 + ], + [ + 34.2024084, + -1.3331521 + ], + [ + 34.2023386, + -1.3332786 + ], + [ + 34.2018881, + -1.3339311 + ], + [ + 34.2017553, + -1.334104 + ] + ] + }, + "id": "way/641961532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643044222", + "highway": "primary", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6366305, + -1.1534833 + ], + [ + 34.6372384, + -1.1542022 + ], + [ + 34.6373183, + -1.1543158 + ], + [ + 34.6373713, + -1.1544553 + ], + [ + 34.6373713, + -1.1545753 + ], + [ + 34.6373337, + -1.1547147 + ], + [ + 34.6372224, + -1.1549775 + ], + [ + 34.6371205, + -1.1551894 + ], + [ + 34.6369623, + -1.1555863 + ], + [ + 34.636851, + -1.1559335 + ], + [ + 34.6368027, + -1.1561092 + ], + [ + 34.6367423, + -1.1562808 + ], + [ + 34.6367048, + -1.1563733 + ], + [ + 34.6366619, + -1.1564846 + ], + [ + 34.6365036, + -1.1567515 + ], + [ + 34.6363346, + -1.1570464 + ], + [ + 34.6362555, + -1.15721 + ], + [ + 34.6361643, + -1.1575214 + ], + [ + 34.6361011, + -1.1576625 + ], + [ + 34.6360111, + -1.1577884 + ], + [ + 34.6358726, + -1.157916 + ], + [ + 34.6357452, + -1.1580299 + ], + [ + 34.6356393, + -1.1581533 + ], + [ + 34.6355648, + -1.1582713 + ], + [ + 34.6355145, + -1.1584087 + ], + [ + 34.6354844, + -1.1585716 + ], + [ + 34.6354622, + -1.1587654 + ], + [ + 34.6354589, + -1.1590007 + ], + [ + 34.6354649, + -1.1592105 + ], + [ + 34.6354984, + -1.1593942 + ], + [ + 34.6355526, + -1.1596328 + ], + [ + 34.6356601, + -1.160062 + ], + [ + 34.6357754, + -1.160487 + ], + [ + 34.6359457, + -1.1612245 + ], + [ + 34.6359967, + -1.1614517 + ], + [ + 34.6361013, + -1.1617011 + ], + [ + 34.6361784, + -1.1618219 + ], + [ + 34.636263, + -1.1619357 + ], + [ + 34.6363861, + -1.1620913 + ] + ] + }, + "id": "way/643044222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643044224", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "C727" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6365355, + -1.153364 + ], + [ + 34.6366305, + -1.1534833 + ] + ] + }, + "id": "way/643044224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643412499", + "bridge": "yes", + "highway": "secondary", + "lanes": "2", + "layer": "1", + "maxweight:signed": "no", + "ref": "C12", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4083193, + -1.4477426 + ], + [ + 35.4075274, + -1.4484692 + ], + [ + 35.4071832, + -1.4488321 + ] + ] + }, + "id": "way/643412499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643412500", + "highway": "secondary", + "lanes": "2", + "maxspeed:type": "KE:rural", + "ref": "C12", + "smoothness": "intermediate", + "source": "survey", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.4133219, + -1.4347403 + ], + [ + 35.413277, + -1.4349731 + ], + [ + 35.4132266, + -1.43536 + ], + [ + 35.4131856, + -1.4356676 + ], + [ + 35.4131697, + -1.4359256 + ], + [ + 35.4131566, + -1.4363226 + ], + [ + 35.41315, + -1.4366927 + ], + [ + 35.4131116, + -1.4371518 + ], + [ + 35.4130098, + -1.4376687 + ], + [ + 35.4129186, + -1.4380361 + ], + [ + 35.4125565, + -1.4393446 + ], + [ + 35.4124412, + -1.4397655 + ], + [ + 35.4123098, + -1.4402187 + ], + [ + 35.4121622, + -1.4406021 + ], + [ + 35.4114595, + -1.4421225 + ], + [ + 35.4110626, + -1.4429168 + ], + [ + 35.4105502, + -1.4440906 + ], + [ + 35.4100822, + -1.4450706 + ], + [ + 35.4096758, + -1.4459622 + ], + [ + 35.4095806, + -1.4461874 + ], + [ + 35.4094559, + -1.4464193 + ], + [ + 35.4092896, + -1.4467558 + ], + [ + 35.4091293, + -1.4469857 + ], + [ + 35.4089297, + -1.4472078 + ], + [ + 35.4083193, + -1.4477426 + ] + ] + }, + "id": "way/643412500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/646579321", + "highway": "trunk", + "ref": "T36", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7045768, + -3.1948871 + ], + [ + 33.7037185, + -3.1962342 + ], + [ + 33.7034637, + -3.1966573 + ], + [ + 33.7025887, + -3.1980004 + ], + [ + 33.7011915, + -3.2004104 + ], + [ + 33.7006742, + -3.2011832 + ], + [ + 33.7004757, + -3.2014563 + ], + [ + 33.7002182, + -3.2018098 + ], + [ + 33.6998266, + -3.202241 + ], + [ + 33.699612, + -3.2024472 + ], + [ + 33.6989173, + -3.2029694 + ], + [ + 33.6986223, + -3.2031756 + ], + [ + 33.6984222, + -3.2032887 + ], + [ + 33.6974643, + -3.2037173 + ], + [ + 33.6971846, + -3.2037998 + ], + [ + 33.6966952, + -3.2039183 + ], + [ + 33.6961061, + -3.2039844 + ], + [ + 33.6953911, + -3.2040274 + ] + ] + }, + "id": "way/646579321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/650545917", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1684266, + -1.7100613 + ], + [ + 34.1685192, + -1.7101277 + ] + ] + }, + "id": "way/650545917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/650545918", + "highway": "secondary", + "ref": "R185", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1454542, + -1.6938391 + ], + [ + 34.1454864, + -1.6940107 + ], + [ + 34.1455829, + -1.6946381 + ], + [ + 34.1456151, + -1.6948338 + ], + [ + 34.1458358, + -1.6957203 + ], + [ + 34.1460027, + -1.6961729 + ], + [ + 34.1460952, + -1.6963754 + ], + [ + 34.1462722, + -1.6966998 + ], + [ + 34.146857, + -1.6975229 + ], + [ + 34.1470796, + -1.69774 + ], + [ + 34.1472512, + -1.6979062 + ], + [ + 34.1476455, + -1.6982119 + ], + [ + 34.1482758, + -1.6984987 + ], + [ + 34.1486344, + -1.6986713 + ], + [ + 34.1488337, + -1.6987508 + ], + [ + 34.1494186, + -1.6989276 + ], + [ + 34.1496278, + -1.698973 + ], + [ + 34.1498664, + -1.6990376 + ], + [ + 34.1500354, + -1.6990591 + ], + [ + 34.1506094, + -1.6990457 + ], + [ + 34.151036, + -1.6990925 + ], + [ + 34.1516989, + -1.6993292 + ], + [ + 34.1519356, + -1.6994686 + ], + [ + 34.1524868, + -1.6997932 + ], + [ + 34.1535504, + -1.700491 + ], + [ + 34.1546071, + -1.7012706 + ], + [ + 34.1556896, + -1.7021244 + ], + [ + 34.1564763, + -1.7026667 + ], + [ + 34.1567156, + -1.7028046 + ], + [ + 34.157842, + -1.7034156 + ], + [ + 34.1590181, + -1.7040404 + ], + [ + 34.1591603, + -1.7041611 + ], + [ + 34.1607642, + -1.705826 + ], + [ + 34.1609547, + -1.7060003 + ], + [ + 34.1612041, + -1.7062174 + ], + [ + 34.1614938, + -1.706397 + ], + [ + 34.1617727, + -1.7065338 + ], + [ + 34.1646239, + -1.7076357 + ], + [ + 34.1650986, + -1.7078582 + ], + [ + 34.165619, + -1.7081746 + ], + [ + 34.1666275, + -1.7088395 + ], + [ + 34.1681081, + -1.7098462 + ], + [ + 34.168328, + -1.7099896 + ], + [ + 34.1684266, + -1.7100613 + ] + ] + }, + "id": "way/650545918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/650888413", + "highway": "secondary", + "ref": "R186", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7154261, + -1.667747 + ], + [ + 33.7151812, + -1.6682076 + ], + [ + 33.7148735, + -1.6688181 + ], + [ + 33.7143508, + -1.6699402 + ], + [ + 33.7136758, + -1.6712264 + ], + [ + 33.7130513, + -1.6722542 + ], + [ + 33.7122895, + -1.6735316 + ], + [ + 33.7107539, + -1.6762327 + ], + [ + 33.7102416, + -1.6770611 + ], + [ + 33.7098688, + -1.6776617 + ], + [ + 33.7094235, + -1.6784365 + ], + [ + 33.7090668, + -1.6789706 + ], + [ + 33.7083976, + -1.6800811 + ], + [ + 33.7075985, + -1.6813133 + ], + [ + 33.7072255, + -1.6819014 + ], + [ + 33.7047079, + -1.6857129 + ], + [ + 33.7042366, + -1.6864122 + ], + [ + 33.7031713, + -1.6879851 + ], + [ + 33.7031002, + -1.6880936 + ], + [ + 33.7021896, + -1.6895039 + ], + [ + 33.7018195, + -1.6900106 + ], + [ + 33.7012669, + -1.6908471 + ], + [ + 33.7008861, + -1.6914289 + ], + [ + 33.700701, + -1.6917318 + ], + [ + 33.6999312, + -1.6928498 + ], + [ + 33.699384, + -1.6936246 + ], + [ + 33.6992285, + -1.6938364 + ], + [ + 33.6990032, + -1.6940616 + ], + [ + 33.6987859, + -1.6942868 + ], + [ + 33.6986142, + -1.69437 + ], + [ + 33.698464, + -1.6944316 + ], + [ + 33.6983594, + -1.694496 + ], + [ + 33.6981744, + -1.6946461 + ], + [ + 33.6978981, + -1.6948847 + ], + [ + 33.6976272, + -1.6951019 + ], + [ + 33.6973831, + -1.6953311 + ], + [ + 33.697308, + -1.6954022 + ], + [ + 33.6941653, + -1.6979814 + ], + [ + 33.6928824, + -1.6989143 + ], + [ + 33.6919409, + -1.6994934 + ], + [ + 33.6908063, + -1.7001932 + ], + [ + 33.6904979, + -1.7003433 + ], + [ + 33.6896932, + -1.7007535 + ], + [ + 33.6895215, + -1.7008875 + ], + [ + 33.6894035, + -1.7010511 + ], + [ + 33.6877084, + -1.7039171 + ], + [ + 33.6866891, + -1.7056289 + ] + ] + }, + "id": "way/650888413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651719363", + "highway": "primary", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6176329, + -1.0806549 + ], + [ + 34.6175739, + -1.0807555 + ], + [ + 34.6174579, + -1.0809499 + ], + [ + 34.6172313, + -1.0813428 + ], + [ + 34.6169966, + -1.0817122 + ], + [ + 34.6164266, + -1.0827232 + ], + [ + 34.6163803, + -1.0828318 + ], + [ + 34.6163294, + -1.0829465 + ], + [ + 34.6162375, + -1.0831972 + ], + [ + 34.6162147, + -1.0833273 + ], + [ + 34.6161818, + -1.0836752 + ], + [ + 34.6161356, + -1.0840259 + ], + [ + 34.6160544, + -1.0846179 + ], + [ + 34.6159673, + -1.0851797 + ], + [ + 34.6159016, + -1.085649 + ], + [ + 34.6158171, + -1.0860445 + ], + [ + 34.6156816, + -1.0869563 + ], + [ + 34.6156266, + -1.0873559 + ], + [ + 34.6155368, + -1.087915 + ], + [ + 34.6154523, + -1.0883924 + ], + [ + 34.6153276, + -1.0892452 + ], + [ + 34.6152659, + -1.0896984 + ], + [ + 34.6152458, + -1.08986 + ], + [ + 34.6152391, + -1.0899397 + ], + [ + 34.6152458, + -1.0900477 + ], + [ + 34.6152498, + -1.0901181 + ], + [ + 34.6152706, + -1.0901932 + ], + [ + 34.6152964, + -1.0902716 + ], + [ + 34.6153235, + -1.090343 + ], + [ + 34.6154489, + -1.0905331 + ], + [ + 34.6155599, + -1.0907067 + ], + [ + 34.6158157, + -1.0910205 + ], + [ + 34.6160075, + -1.0912766 + ], + [ + 34.6160498, + -1.0913396 + ], + [ + 34.6160799, + -1.0914013 + ], + [ + 34.6161007, + -1.0914713 + ], + [ + 34.6161215, + -1.0915608 + ], + [ + 34.6161349, + -1.0917325 + ], + [ + 34.616153, + -1.0919591 + ], + [ + 34.6161648, + -1.0923251 + ], + [ + 34.6161705, + -1.0925672 + ], + [ + 34.6161711, + -1.0928072 + ], + [ + 34.6161718, + -1.0929574 + ], + [ + 34.6161959, + -1.0931002 + ], + [ + 34.6162181, + -1.0931876 + ], + [ + 34.6162744, + -1.0933033 + ], + [ + 34.6163294, + -1.0933811 + ], + [ + 34.616387, + -1.0934541 + ], + [ + 34.6165399, + -1.093603 + ], + [ + 34.6168212, + -1.0938809 + ], + [ + 34.6171689, + -1.0942305 + ], + [ + 34.6176101, + -1.094669 + ], + [ + 34.6178663, + -1.0949264 + ], + [ + 34.6182753, + -1.09533 + ], + [ + 34.6185784, + -1.0956377 + ], + [ + 34.6188017, + -1.0958757 + ], + [ + 34.6189499, + -1.0960118 + ], + [ + 34.6191195, + -1.0961741 + ], + [ + 34.6192402, + -1.096276 + ], + [ + 34.6194401, + -1.096457 + ], + [ + 34.6196312, + -1.0966501 + ], + [ + 34.6197599, + -1.0967902 + ], + [ + 34.6198927, + -1.0969531 + ], + [ + 34.6200063, + -1.0971058 + ], + [ + 34.6201006, + -1.0972468 + ], + [ + 34.6201676, + -1.0973715 + ], + [ + 34.6202534, + -1.0975485 + ], + [ + 34.6203252, + -1.0976852 + ], + [ + 34.6203824, + -1.0978218 + ], + [ + 34.6204378, + -1.098007 + ], + [ + 34.6204861, + -1.0981854 + ], + [ + 34.6205217, + -1.0983664 + ], + [ + 34.6205451, + -1.0985333 + ], + [ + 34.6205639, + -1.0986728 + ], + [ + 34.6206236, + -1.0991085 + ], + [ + 34.6206383, + -1.0992869 + ], + [ + 34.6206692, + -1.0994893 + ], + [ + 34.62069, + -1.0995718 + ], + [ + 34.6207155, + -1.0996415 + ], + [ + 34.6207832, + -1.0997542 + ], + [ + 34.620812, + -1.0998071 + ], + [ + 34.6208516, + -1.0998802 + ], + [ + 34.6208891, + -1.0999586 + ], + [ + 34.6209173, + -1.100017 + ], + [ + 34.6209515, + -1.1001195 + ], + [ + 34.620979, + -1.1002215 + ], + [ + 34.6210447, + -1.1005526 + ], + [ + 34.6211077, + -1.1009267 + ], + [ + 34.6211453, + -1.1011587 + ], + [ + 34.621211, + -1.1016991 + ], + [ + 34.6212646, + -1.1020464 + ], + [ + 34.6213102, + -1.1023883 + ], + [ + 34.6213404, + -1.1026605 + ], + [ + 34.6213572, + -1.1027416 + ], + [ + 34.6213739, + -1.1028381 + ], + [ + 34.6214169, + -1.1029984 + ], + [ + 34.6214464, + -1.1031063 + ], + [ + 34.621494, + -1.1032243 + ], + [ + 34.6216066, + -1.1035521 + ], + [ + 34.6217233, + -1.1039175 + ], + [ + 34.6218245, + -1.1042112 + ], + [ + 34.6220452, + -1.1048662 + ], + [ + 34.6222034, + -1.1053462 + ], + [ + 34.6223201, + -1.1056559 + ], + [ + 34.6225239, + -1.1062459 + ], + [ + 34.6227117, + -1.106742 + ], + [ + 34.6227948, + -1.1069633 + ], + [ + 34.622874, + -1.1072087 + ], + [ + 34.6229826, + -1.1075184 + ], + [ + 34.6231529, + -1.1080011 + ], + [ + 34.6232689, + -1.1083812 + ], + [ + 34.6233393, + -1.108579 + ], + [ + 34.6233876, + -1.1087506 + ], + [ + 34.6234225, + -1.1088941 + ], + [ + 34.6234332, + -1.1089906 + ], + [ + 34.6234547, + -1.1091958 + ], + [ + 34.6234627, + -1.1094378 + ], + [ + 34.6234634, + -1.1095826 + ], + [ + 34.6234553, + -1.1097415 + ], + [ + 34.6234298, + -1.1100969 + ], + [ + 34.6234109, + -1.1105608 + ], + [ + 34.6233963, + -1.1107592 + ], + [ + 34.6233829, + -1.1109979 + ], + [ + 34.6233722, + -1.111075 + ], + [ + 34.6233521, + -1.1111903 + ], + [ + 34.6233226, + -1.1113432 + ], + [ + 34.6232542, + -1.1117401 + ], + [ + 34.6232025, + -1.1123361 + ], + [ + 34.6231717, + -1.1125882 + ], + [ + 34.6231449, + -1.1128188 + ], + [ + 34.6231154, + -1.1130065 + ], + [ + 34.6230765, + -1.1132358 + ], + [ + 34.6230161, + -1.113577 + ] + ] + }, + "id": "way/651719363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651886526", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9980393, + -2.7236253 + ], + [ + 33.9980994, + -2.7238918 + ], + [ + 33.9981544, + -2.7242207 + ], + [ + 33.9982713, + -2.7249207 + ], + [ + 33.998392, + -2.7257941 + ], + [ + 33.998422, + -2.7262423 + ], + [ + 33.9984308, + -2.7263738 + ], + [ + 33.9984725, + -2.7268751 + ], + [ + 33.9985, + -2.7273795 + ], + [ + 33.9984953, + -2.7278235 + ], + [ + 33.9984938, + -2.7285592 + ] + ] + }, + "id": "way/651886526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651886527", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9980008, + -2.7233836 + ], + [ + 33.9980393, + -2.7236253 + ] + ] + }, + "id": "way/651886527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651886528", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8550635, + -2.2591018 + ], + [ + 33.8549879, + -2.2587891 + ], + [ + 33.8547383, + -2.2581278 + ], + [ + 33.8544264, + -2.2574536 + ], + [ + 33.8541052, + -2.2570709 + ], + [ + 33.8538681, + -2.2567908 + ], + [ + 33.8536171, + -2.2565626 + ], + [ + 33.8532304, + -2.2562256 + ], + [ + 33.8525516, + -2.2558146 + ], + [ + 33.8518368, + -2.2555099 + ], + [ + 33.8512263, + -2.2552568 + ], + [ + 33.850918, + -2.2551174 + ], + [ + 33.8506367, + -2.2549969 + ], + [ + 33.8501826, + -2.2548256 + ], + [ + 33.8480989, + -2.2538819 + ], + [ + 33.8474925, + -2.2536412 + ], + [ + 33.846817, + -2.2533194 + ], + [ + 33.8462266, + -2.2529841 + ], + [ + 33.8452949, + -2.2523619 + ], + [ + 33.844537, + -2.2519099 + ] + ] + }, + "id": "way/651886528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651886529", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8756836, + -2.3296148 + ], + [ + 33.874737, + -2.3256646 + ], + [ + 33.8746756, + -2.325387 + ], + [ + 33.8745759, + -2.3249364 + ], + [ + 33.8744671, + -2.3243909 + ], + [ + 33.8742174, + -2.3232448 + ], + [ + 33.874028, + -2.3223553 + ], + [ + 33.8738751, + -2.3216076 + ], + [ + 33.8737383, + -2.3210421 + ], + [ + 33.8733307, + -2.3193323 + ], + [ + 33.8731268, + -2.3183541 + ], + [ + 33.8728827, + -2.3173491 + ], + [ + 33.8727835, + -2.3170543 + ], + [ + 33.8727218, + -2.3168425 + ], + [ + 33.8726467, + -2.3166442 + ], + [ + 33.8725448, + -2.3164164 + ], + [ + 33.8724509, + -2.3161967 + ], + [ + 33.8723195, + -2.3159313 + ], + [ + 33.8721853, + -2.3156741 + ], + [ + 33.87207, + -2.3154757 + ], + [ + 33.8719144, + -2.3151997 + ], + [ + 33.8717455, + -2.3149424 + ], + [ + 33.8715979, + -2.3147441 + ], + [ + 33.8714263, + -2.3145109 + ], + [ + 33.8708174, + -2.3138061 + ], + [ + 33.8703185, + -2.3132754 + ], + [ + 33.8696721, + -2.3125304 + ], + [ + 33.8693104, + -2.312046 + ], + [ + 33.8691803, + -2.3118672 + ], + [ + 33.8689952, + -2.3115535 + ], + [ + 33.8689216, + -2.3114287 + ], + [ + 33.868696, + -2.3110465 + ], + [ + 33.8686606, + -2.3109864 + ], + [ + 33.8685291, + -2.3107326 + ], + [ + 33.8684716, + -2.3106214 + ], + [ + 33.868323, + -2.310255 + ], + [ + 33.8681975, + -2.3099157 + ], + [ + 33.8679578, + -2.3092425 + ], + [ + 33.8678937, + -2.3090663 + ], + [ + 33.867628, + -2.3083957 + ], + [ + 33.867564, + -2.3081869 + ], + [ + 33.867314, + -2.3073951 + ], + [ + 33.8670844, + -2.3067344 + ], + [ + 33.866601, + -2.3053318 + ], + [ + 33.8663301, + -2.3045546 + ], + [ + 33.8660485, + -2.303772 + ], + [ + 33.8657051, + -2.3027389 + ], + [ + 33.8655224, + -2.3022448 + ], + [ + 33.8652822, + -2.3015905 + ], + [ + 33.864861, + -2.3004523 + ], + [ + 33.8640085, + -2.2980367 + ], + [ + 33.8636942, + -2.2970079 + ], + [ + 33.8633812, + -2.2958863 + ], + [ + 33.8630279, + -2.2944023 + ], + [ + 33.862987, + -2.2941995 + ], + [ + 33.8626439, + -2.2926116 + ], + [ + 33.8620573, + -2.2901788 + ], + [ + 33.8616832, + -2.2884623 + ], + [ + 33.8615618, + -2.2879465 + ], + [ + 33.8591522, + -2.2771989 + ], + [ + 33.8588539, + -2.2758901 + ], + [ + 33.8580206, + -2.2721981 + ], + [ + 33.8572022, + -2.2685744 + ], + [ + 33.856646, + -2.2661586 + ], + [ + 33.8558672, + -2.2626256 + ], + [ + 33.8555288, + -2.2611534 + ], + [ + 33.8552506, + -2.2599443 + ], + [ + 33.8550889, + -2.2592237 + ] + ] + }, + "id": "way/651886529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651886530", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9684257, + -2.4558815 + ], + [ + 33.9684056, + -2.4557261 + ] + ] + }, + "id": "way/651886530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/651886532", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9680296, + -2.5011795 + ], + [ + 33.9677333, + -2.5000113 + ], + [ + 33.9675428, + -2.4991841 + ], + [ + 33.9672145, + -2.4976095 + ], + [ + 33.9671378, + -2.4971902 + ], + [ + 33.9670832, + -2.4968544 + ], + [ + 33.9668601, + -2.4944347 + ], + [ + 33.9668225, + -2.49407 + ], + [ + 33.9667972, + -2.4937522 + ], + [ + 33.9667741, + -2.4933721 + ], + [ + 33.9666958, + -2.4920832 + ], + [ + 33.9666856, + -2.4919161 + ], + [ + 33.9666652, + -2.4915811 + ], + [ + 33.9665926, + -2.4903865 + ], + [ + 33.9665579, + -2.4900209 + ], + [ + 33.9664626, + -2.4890161 + ], + [ + 33.9663039, + -2.4871497 + ], + [ + 33.966296, + -2.4869247 + ], + [ + 33.9662907, + -2.4865415 + ], + [ + 33.9663041, + -2.4861771 + ], + [ + 33.9663845, + -2.4857805 + ], + [ + 33.9665401, + -2.4852231 + ], + [ + 33.9667279, + -2.4845934 + ], + [ + 33.9668941, + -2.4840681 + ], + [ + 33.9670283, + -2.4835697 + ], + [ + 33.9675053, + -2.482101 + ], + [ + 33.9679563, + -2.480472 + ], + [ + 33.9680555, + -2.4799816 + ], + [ + 33.9681988, + -2.4791566 + ], + [ + 33.9682379, + -2.4783899 + ], + [ + 33.9682513, + -2.4773769 + ], + [ + 33.9682701, + -2.4760183 + ], + [ + 33.9682847, + -2.4746187 + ], + [ + 33.9682939, + -2.4740856 + ], + [ + 33.9683368, + -2.4727239 + ], + [ + 33.9683788, + -2.4716721 + ], + [ + 33.9683812, + -2.4704659 + ], + [ + 33.9685139, + -2.4654138 + ], + [ + 33.9685227, + -2.4650774 + ], + [ + 33.9686325, + -2.4597837 + ], + [ + 33.9686513, + -2.4583721 + ], + [ + 33.968576, + -2.4573934 + ], + [ + 33.9684257, + -2.4558815 + ] + ] + }, + "id": "way/651886532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652147523", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8444476, + -2.2516505 + ], + [ + 33.8444954, + -2.2517897 + ], + [ + 33.844537, + -2.2519099 + ] + ] + }, + "id": "way/652147523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652147524", + "highway": "trunk", + "ref": "T36", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.844537, + -2.2519099 + ], + [ + 33.8444057, + -2.2518779 + ], + [ + 33.8442627, + -2.2518392 + ] + ] + }, + "id": "way/652147524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652147525", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "T4", + "ref:alt": "B6", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7498337, + -2.298286 + ], + [ + 33.7496594, + -2.2983449 + ] + ] + }, + "id": "way/652147525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652147526", + "highway": "trunk", + "ref": "T4", + "ref:alt": "B6", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7957645, + -2.2745375 + ], + [ + 33.7956317, + -2.2745992 + ], + [ + 33.7953454, + -2.2747475 + ], + [ + 33.7945832, + -2.2751193 + ], + [ + 33.7936181, + -2.2756447 + ], + [ + 33.7929261, + -2.2760682 + ], + [ + 33.7917154, + -2.2768798 + ], + [ + 33.7910887, + -2.2773397 + ], + [ + 33.7910022, + -2.2774032 + ], + [ + 33.7885195, + -2.279167 + ], + [ + 33.7878886, + -2.2796281 + ], + [ + 33.7872257, + -2.2801013 + ], + [ + 33.7842547, + -2.2822084 + ], + [ + 33.7826123, + -2.2833355 + ], + [ + 33.781621, + -2.2840035 + ], + [ + 33.781383, + -2.2841507 + ], + [ + 33.7805202, + -2.2846237 + ], + [ + 33.7799261, + -2.2849171 + ], + [ + 33.7791962, + -2.2852463 + ], + [ + 33.7765324, + -2.2864133 + ], + [ + 33.7717491, + -2.2884336 + ], + [ + 33.7697881, + -2.2892619 + ], + [ + 33.7693984, + -2.2894353 + ], + [ + 33.7676111, + -2.2902309 + ], + [ + 33.7674569, + -2.2902956 + ], + [ + 33.7664823, + -2.2907042 + ], + [ + 33.7657008, + -2.2910489 + ], + [ + 33.7652609, + -2.2912284 + ], + [ + 33.7630799, + -2.2921641 + ], + [ + 33.7626688, + -2.2923405 + ], + [ + 33.7604684, + -2.2932945 + ], + [ + 33.7586947, + -2.2940511 + ], + [ + 33.7568823, + -2.2948607 + ], + [ + 33.7553913, + -2.2955268 + ], + [ + 33.7551474, + -2.2956358 + ], + [ + 33.7547798, + -2.2958 + ], + [ + 33.7540177, + -2.2962128 + ], + [ + 33.7520922, + -2.2972557 + ], + [ + 33.7508172, + -2.2978929 + ], + [ + 33.7498337, + -2.298286 + ] + ] + }, + "id": "way/652147526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652228194", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8916318, + -3.1553557 + ], + [ + 33.8917841, + -3.1553678 + ] + ] + }, + "id": "way/652228194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652228199", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8750015, + -3.1561999 + ], + [ + 33.8752112, + -3.1560387 + ], + [ + 33.8759416, + -3.1554772 + ], + [ + 33.8762294, + -3.1552845 + ], + [ + 33.8768202, + -3.1548992 + ], + [ + 33.8770053, + -3.154792 + ], + [ + 33.8772856, + -3.1546702 + ], + [ + 33.877615, + -3.1545575 + ], + [ + 33.877742, + -3.154522 + ], + [ + 33.8787916, + -3.1543502 + ], + [ + 33.8789364, + -3.1543144 + ], + [ + 33.8791645, + -3.154243 + ], + [ + 33.8793334, + -3.1541962 + ], + [ + 33.8795105, + -3.1541935 + ], + [ + 33.8797465, + -3.1542243 + ], + [ + 33.8800152, + -3.1542813 + ], + [ + 33.8806774, + -3.1544093 + ], + [ + 33.8813938, + -3.1545231 + ], + [ + 33.8817231, + -3.1545754 + ], + [ + 33.8826636, + -3.1546757 + ], + [ + 33.8832521, + -3.154713 + ], + [ + 33.8837483, + -3.1547505 + ], + [ + 33.8863823, + -3.1549568 + ], + [ + 33.8870555, + -3.1549755 + ], + [ + 33.8874847, + -3.1549621 + ], + [ + 33.8877287, + -3.1549407 + ], + [ + 33.8880157, + -3.154938 + ], + [ + 33.890348, + -3.1552455 + ], + [ + 33.8916318, + -3.1553557 + ] + ] + }, + "id": "way/652228199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652228205", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1702965, + -3.2145947 + ], + [ + 34.1709164, + -3.2143929 + ], + [ + 34.1712436, + -3.2142891 + ], + [ + 34.1730381, + -3.2136483 + ], + [ + 34.1745236, + -3.2130907 + ], + [ + 34.1750012, + -3.2129614 + ], + [ + 34.1764963, + -3.2125567 + ], + [ + 34.1770667, + -3.2124381 + ], + [ + 34.1775777, + -3.21245 + ], + [ + 34.1793366, + -3.2124381 + ], + [ + 34.1821887, + -3.2124618 + ], + [ + 34.1827353, + -3.2124533 + ], + [ + 34.1828729, + -3.2124511 + ], + [ + 34.1830431, + -3.2124522 + ], + [ + 34.1845608, + -3.2124618 + ], + [ + 34.1855281, + -3.2124618 + ], + [ + 34.1860035, + -3.2124381 + ], + [ + 34.1864194, + -3.21245 + ], + [ + 34.1867284, + -3.2125093 + ], + [ + 34.1868374, + -3.2125423 + ], + [ + 34.187086, + -3.2126596 + ], + [ + 34.1872591, + -3.2127441 + ], + [ + 34.1874295, + -3.2128415 + ], + [ + 34.1885101, + -3.2135632 + ], + [ + 34.1888502, + -3.2137903 + ], + [ + 34.1890747, + -3.2139402 + ], + [ + 34.189224, + -3.2140399 + ], + [ + 34.1936805, + -3.2169588 + ], + [ + 34.1939182, + -3.2170655 + ], + [ + 34.1943589, + -3.2172244 + ], + [ + 34.1948214, + -3.2173503 + ], + [ + 34.1962712, + -3.2176707 + ], + [ + 34.1973587, + -3.2179002 + ] + ] + }, + "id": "way/652228205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652228211", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1701949, + -3.2146294 + ], + [ + 34.1702965, + -3.2145947 + ] + ] + }, + "id": "way/652228211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652546709", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9422686, + -2.7836197 + ], + [ + 33.9424364, + -2.7836595 + ] + ] + }, + "id": "way/652546709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652546711", + "highway": "secondary", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9277795, + -2.7662951 + ], + [ + 33.9290626, + -2.7681729 + ], + [ + 33.9295248, + -2.7688428 + ], + [ + 33.9297855, + -2.7692246 + ], + [ + 33.9308254, + -2.7707558 + ], + [ + 33.9315147, + -2.7717407 + ], + [ + 33.9322783, + -2.7728514 + ], + [ + 33.9331824, + -2.7741516 + ], + [ + 33.9338171, + -2.7750516 + ], + [ + 33.934172, + -2.7755696 + ], + [ + 33.934412, + -2.7758913 + ], + [ + 33.9347339, + -2.7763883 + ], + [ + 33.9350281, + -2.7767665 + ], + [ + 33.9352757, + -2.7771148 + ], + [ + 33.9354742, + -2.7773831 + ], + [ + 33.9357201, + -2.7777449 + ], + [ + 33.936384, + -2.7785626 + ], + [ + 33.9367917, + -2.7790569 + ], + [ + 33.936848, + -2.7791265 + ], + [ + 33.9373174, + -2.7796731 + ], + [ + 33.9375991, + -2.7799945 + ], + [ + 33.9380041, + -2.7804433 + ], + [ + 33.9393277, + -2.781935 + ], + [ + 33.9396027, + -2.782186 + ], + [ + 33.9398199, + -2.7823441 + ], + [ + 33.9402223, + -2.7826173 + ], + [ + 33.9403805, + -2.7827299 + ], + [ + 33.9405495, + -2.7828638 + ], + [ + 33.9407963, + -2.7830272 + ], + [ + 33.9410296, + -2.7831424 + ], + [ + 33.9413729, + -2.7832978 + ], + [ + 33.9422686, + -2.7836197 + ] + ] + }, + "id": "way/652546711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652546713", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9277272, + -2.7662134 + ], + [ + 33.9277795, + -2.7662951 + ] + ] + }, + "id": "way/652546713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652546715", + "highway": "secondary", + "ref": "R365", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9088272, + -2.7467081 + ], + [ + 33.9093286, + -2.7469359 + ], + [ + 33.9104605, + -2.7474463 + ], + [ + 33.9116138, + -2.7480089 + ], + [ + 33.9120993, + -2.7482768 + ], + [ + 33.9123648, + -2.7484563 + ], + [ + 33.913148, + -2.7492493 + ], + [ + 33.9136362, + -2.7498146 + ], + [ + 33.9138052, + -2.7500209 + ], + [ + 33.9143658, + -2.7507872 + ], + [ + 33.914752, + -2.7512694 + ], + [ + 33.9153396, + -2.7519716 + ], + [ + 33.9154701, + -2.7521075 + ], + [ + 33.915959, + -2.7526465 + ], + [ + 33.9163157, + -2.7530242 + ], + [ + 33.9165893, + -2.7532656 + ], + [ + 33.9167958, + -2.7534904 + ], + [ + 33.9168757, + -2.7535908 + ], + [ + 33.9173698, + -2.753978 + ], + [ + 33.918609, + -2.754996 + ], + [ + 33.9192232, + -2.7555292 + ], + [ + 33.9197355, + -2.7559391 + ], + [ + 33.9201567, + -2.7562927 + ], + [ + 33.9205456, + -2.7566089 + ], + [ + 33.9207065, + -2.7567482 + ], + [ + 33.9210914, + -2.7570964 + ], + [ + 33.9214991, + -2.7575171 + ], + [ + 33.922049, + -2.758182 + ], + [ + 33.9225195, + -2.7588173 + ], + [ + 33.923319, + -2.7598586 + ], + [ + 33.9237515, + -2.7604807 + ], + [ + 33.9238538, + -2.7606189 + ], + [ + 33.9244199, + -2.7613833 + ], + [ + 33.925394, + -2.7627854 + ], + [ + 33.9256144, + -2.7631025 + ], + [ + 33.9259235, + -2.7635474 + ], + [ + 33.9269648, + -2.7650461 + ], + [ + 33.9276601, + -2.7661138 + ], + [ + 33.9277272, + -2.7662134 + ] + ] + }, + "id": "way/652546715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652562769", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "highway": "primary", + "horse": "no", + "maxspeed": "50", + "motor_vehicle": "permissive", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.9981626, + -2.8322014 + ], + [ + 34.9992558, + -2.8325941 + ], + [ + 35.0000319, + -2.8328238 + ], + [ + 35.0001038, + -2.8328463 + ], + [ + 35.0004767, + -2.8329776 + ], + [ + 35.0008468, + -2.8331598 + ], + [ + 35.0017756, + -2.8338474 + ], + [ + 35.0047421, + -2.8357049 + ], + [ + 35.0057073, + -2.8363414 + ], + [ + 35.0121497, + -2.8405896 + ], + [ + 35.0180505, + -2.8444809 + ], + [ + 35.0192999, + -2.8452266 + ], + [ + 35.0289805, + -2.8503745 + ], + [ + 35.0326251, + -2.852328 + ], + [ + 35.0408224, + -2.857144 + ], + [ + 35.041485, + -2.857503 + ], + [ + 35.0425578, + -2.8578994 + ], + [ + 35.0433759, + -2.8581298 + ], + [ + 35.0449933, + -2.8584432 + ], + [ + 35.0454895, + -2.8585879 + ], + [ + 35.0461171, + -2.8588665 + ], + [ + 35.0472973, + -2.8594076 + ], + [ + 35.0505669, + -2.8608033 + ], + [ + 35.0555263, + -2.8630482 + ], + [ + 35.0735391, + -2.8712875 + ], + [ + 35.0741274, + -2.8715991 + ], + [ + 35.0743608, + -2.8717277 + ], + [ + 35.0746156, + -2.8719099 + ], + [ + 35.0758038, + -2.8731153 + ], + [ + 35.0761586, + -2.8734383 + ], + [ + 35.0768522, + -2.8738821 + ], + [ + 35.0898103, + -2.8815188 + ], + [ + 35.1139137, + -2.8958453 + ], + [ + 35.1158814, + -2.8969755 + ], + [ + 35.1178689, + -2.898189 + ], + [ + 35.1190786, + -2.898864 + ], + [ + 35.1209025, + -2.8996489 + ], + [ + 35.1234291, + -2.9010606 + ], + [ + 35.123861, + -2.9013633 + ], + [ + 35.1248292, + -2.9022527 + ], + [ + 35.1252021, + -2.9025447 + ], + [ + 35.1257975, + -2.9029411 + ], + [ + 35.1266038, + -2.9033568 + ], + [ + 35.1385412, + -2.9093372 + ], + [ + 35.138738, + -2.909464 + ] + ] + }, + "id": "way/652562769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652562770", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.9871354, + -2.8088784 + ], + [ + 34.9871676, + -2.8089507 + ] + ] + }, + "id": "way/652562770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654087313", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7495602, + -2.069073 + ], + [ + 33.7496791, + -2.0690394 + ] + ] + }, + "id": "way/654087313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654087314", + "highway": "secondary", + "ref": "R189", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.7277497, + -2.0756029 + ], + [ + 33.7292787, + -2.0751758 + ], + [ + 33.7295315, + -2.0750915 + ], + [ + 33.7308076, + -2.0746658 + ], + [ + 33.7357373, + -2.0731192 + ], + [ + 33.7368194, + -2.0727811 + ], + [ + 33.7389697, + -2.0721048 + ], + [ + 33.741503, + -2.0713448 + ], + [ + 33.7440979, + -2.0705847 + ], + [ + 33.7458679, + -2.0700873 + ], + [ + 33.7495602, + -2.069073 + ] + ] + }, + "id": "way/654087314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654107280", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.7522805, + -2.3408915 + ], + [ + 34.7522, + -2.34086 + ] + ] + }, + "id": "way/654107280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654107281", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8108298, + -2.3983877 + ], + [ + 34.810009, + -2.396962 + ], + [ + 34.8098454, + -2.3965949 + ], + [ + 34.8097381, + -2.3962411 + ], + [ + 34.8095986, + -2.3958258 + ], + [ + 34.809384, + -2.3952871 + ], + [ + 34.8088664, + -2.3941589 + ], + [ + 34.8086947, + -2.3936229 + ], + [ + 34.8081663, + -2.3918864 + ], + [ + 34.8076567, + -2.3898979 + ], + [ + 34.8074716, + -2.3893217 + ], + [ + 34.8072436, + -2.3887509 + ], + [ + 34.8069352, + -2.388172 + ], + [ + 34.8065329, + -2.3872984 + ], + [ + 34.8057711, + -2.3857682 + ], + [ + 34.8055002, + -2.3852081 + ], + [ + 34.8053098, + -2.3847043 + ], + [ + 34.8051301, + -2.3839459 + ], + [ + 34.8050174, + -2.3833724 + ], + [ + 34.8048833, + -2.3827989 + ], + [ + 34.8046687, + -2.3822254 + ], + [ + 34.8044112, + -2.3817886 + ], + [ + 34.8038131, + -2.380789 + ], + [ + 34.803628, + -2.3805826 + ], + [ + 34.8031425, + -2.3801699 + ], + [ + 34.8018014, + -2.3788943 + ], + [ + 34.8011228, + -2.3781841 + ], + [ + 34.8005971, + -2.3774605 + ], + [ + 34.800058, + -2.3767691 + ], + [ + 34.7995296, + -2.3761822 + ], + [ + 34.7991246, + -2.3756409 + ], + [ + 34.7985399, + -2.3748289 + ], + [ + 34.7977543, + -2.3739197 + ], + [ + 34.796292, + -2.3728861 + ], + [ + 34.794938, + -2.3720437 + ], + [ + 34.793672, + -2.3711433 + ], + [ + 34.7927064, + -2.3703822 + ], + [ + 34.7902656, + -2.3684151 + ], + [ + 34.7882807, + -2.3667965 + ], + [ + 34.7871381, + -2.3658371 + ], + [ + 34.7850675, + -2.3639611 + ], + [ + 34.7817362, + -2.3609274 + ], + [ + 34.7794134, + -2.3588585 + ], + [ + 34.7782761, + -2.3577865 + ], + [ + 34.7776216, + -2.3571434 + ], + [ + 34.7766721, + -2.3560124 + ], + [ + 34.7757119, + -2.3548172 + ], + [ + 34.7748107, + -2.353697 + ], + [ + 34.7743333, + -2.3532467 + ], + [ + 34.7735715, + -2.3527107 + ], + [ + 34.7712541, + -2.3515637 + ], + [ + 34.7693112, + -2.3503638 + ], + [ + 34.7684914, + -2.3497682 + ], + [ + 34.7675923, + -2.3490359 + ], + [ + 34.7674304, + -2.348904 + ], + [ + 34.7658736, + -2.3476349 + ], + [ + 34.7640443, + -2.3467076 + ], + [ + 34.7614801, + -2.3456517 + ], + [ + 34.7600854, + -2.3450193 + ], + [ + 34.7581488, + -2.3440062 + ], + [ + 34.7554237, + -2.3422696 + ], + [ + 34.7537017, + -2.3414067 + ], + [ + 34.7522805, + -2.3408915 + ] + ] + }, + "id": "way/654107281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654132951", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.176034, + -1.9429925 + ], + [ + 35.1759575, + -1.9430475 + ] + ] + }, + "id": "way/654132951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654132952", + "highway": "secondary", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2180428, + -1.8700596 + ], + [ + 35.2177718, + -1.8702681 + ], + [ + 35.2176015, + -1.8704548 + ], + [ + 35.2171549, + -1.8707363 + ], + [ + 35.2166051, + -1.87105 + ], + [ + 35.215736, + -1.8715325 + ], + [ + 35.2154678, + -1.8717041 + ], + [ + 35.2142045, + -1.8724547 + ], + [ + 35.2132925, + -1.8730203 + ], + [ + 35.2125362, + -1.8735994 + ], + [ + 35.2120748, + -1.873905 + ], + [ + 35.2110985, + -1.8744411 + ], + [ + 35.2107149, + -1.8746851 + ], + [ + 35.2102187, + -1.8750389 + ], + [ + 35.208663, + -1.8761863 + ], + [ + 35.2069559, + -1.8775686 + ], + [ + 35.2064475, + -1.8779663 + ], + [ + 35.2058655, + -1.8784274 + ], + [ + 35.2051198, + -1.8790601 + ], + [ + 35.2044842, + -1.8796686 + ], + [ + 35.204232, + -1.8799716 + ], + [ + 35.2040255, + -1.880304 + ], + [ + 35.2038699, + -1.8806659 + ], + [ + 35.2035132, + -1.8816926 + ], + [ + 35.2033737, + -1.8820679 + ], + [ + 35.2032423, + -1.8825049 + ], + [ + 35.2030304, + -1.8834458 + ], + [ + 35.2029097, + -1.8838667 + ], + [ + 35.2027273, + -1.884234 + ], + [ + 35.202384, + -1.8846629 + ], + [ + 35.2020273, + -1.8850999 + ], + [ + 35.2014609, + -1.8857037 + ], + [ + 35.2007103, + -1.8864858 + ], + [ + 35.2002034, + -1.8869683 + ], + [ + 35.1997608, + -1.88729 + ], + [ + 35.1989198, + -1.8878022 + ], + [ + 35.197151, + -1.8888288 + ], + [ + 35.1969807, + -1.8889789 + ], + [ + 35.1967661, + -1.889192 + ], + [ + 35.1960415, + -1.8900211 + ], + [ + 35.1945224, + -1.891472 + ], + [ + 35.193876, + -1.8920082 + ], + [ + 35.1921245, + -1.893252 + ], + [ + 35.1915693, + -1.89363 + ], + [ + 35.1913467, + -1.8938364 + ], + [ + 35.1911664, + -1.8941554 + ], + [ + 35.1909235, + -1.8949928 + ], + [ + 35.1900235, + -1.8990126 + ], + [ + 35.1895818, + -1.9006455 + ], + [ + 35.1890711, + -1.9030606 + ], + [ + 35.1887112, + -1.9042539 + ], + [ + 35.1882434, + -1.9053797 + ], + [ + 35.1879671, + -1.9061946 + ], + [ + 35.187664, + -1.9073768 + ], + [ + 35.1875862, + -1.9078379 + ], + [ + 35.1875243, + -1.9087496 + ], + [ + 35.1875026, + -1.909508 + ], + [ + 35.1875177, + -1.9097589 + ], + [ + 35.1875431, + -1.9098691 + ], + [ + 35.1875932, + -1.9100964 + ], + [ + 35.187636, + -1.9105701 + ], + [ + 35.1875642, + -1.910935 + ], + [ + 35.187403, + -1.9113176 + ], + [ + 35.1871971, + -1.9117364 + ], + [ + 35.1868944, + -1.9124138 + ], + [ + 35.1863449, + -1.913674 + ], + [ + 35.1862835, + -1.9139068 + ] + ] + }, + "id": "way/654132952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654146690", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.657771, + -1.8138786 + ], + [ + 34.6583857, + -1.8143847 + ], + [ + 34.6588819, + -1.8148244 + ], + [ + 34.659218, + -1.8151114 + ], + [ + 34.6592682, + -1.8151542 + ], + [ + 34.6596002, + -1.8154291 + ], + [ + 34.6601919, + -1.8159029 + ], + [ + 34.6607625, + -1.8163536 + ], + [ + 34.6610116, + -1.8165536 + ], + [ + 34.6613013, + -1.8168452 + ], + [ + 34.6613657, + -1.8169101 + ], + [ + 34.6614434, + -1.8170737 + ], + [ + 34.6615524, + -1.8172846 + ], + [ + 34.6615722, + -1.817323 + ], + [ + 34.6618439, + -1.8183376 + ], + [ + 34.6622036, + -1.8197472 + ], + [ + 34.6625126, + -1.8207326 + ], + [ + 34.6626873, + -1.8213565 + ], + [ + 34.6629401, + -1.8217169 + ], + [ + 34.6631694, + -1.822052 + ], + [ + 34.6633799, + -1.8223952 + ], + [ + 34.6636643, + -1.8227302 + ], + [ + 34.6640398, + -1.8230801 + ], + [ + 34.6643304, + -1.8233603 + ], + [ + 34.6643805, + -1.8234085 + ], + [ + 34.6646621, + -1.8237302 + ], + [ + 34.6649625, + -1.8240546 + ], + [ + 34.6652694, + -1.8243771 + ], + [ + 34.6656893, + -1.8249037 + ], + [ + 34.6660293, + -1.8253512 + ], + [ + 34.6664912, + -1.8263692 + ], + [ + 34.6667619, + -1.8269914 + ], + [ + 34.6669123, + -1.827337 + ], + [ + 34.6669431, + -1.8274472 + ], + [ + 34.6673351, + -1.8283749 + ], + [ + 34.6677861, + -1.8292248 + ], + [ + 34.6678278, + -1.8293463 + ], + [ + 34.6678636, + -1.8294508 + ], + [ + 34.6679489, + -1.8297375 + ], + [ + 34.6679678, + -1.8298012 + ], + [ + 34.6681634, + -1.8303697 + ], + [ + 34.6682924, + -1.8307004 + ], + [ + 34.6683809, + -1.8309511 + ], + [ + 34.6684501, + -1.8311129 + ], + [ + 34.6684669, + -1.8311522 + ], + [ + 34.6686237, + -1.8314215 + ], + [ + 34.6688571, + -1.8317271 + ], + [ + 34.6689816, + -1.8318773 + ], + [ + 34.669195, + -1.8320408 + ], + [ + 34.669423, + -1.832199 + ], + [ + 34.6694898, + -1.8322503 + ], + [ + 34.6700604, + -1.8326888 + ], + [ + 34.6701449, + -1.8327485 + ], + [ + 34.6705272, + -1.8330469 + ], + [ + 34.6707921, + -1.8332193 + ], + [ + 34.6710623, + -1.8334024 + ], + [ + 34.6710975, + -1.8334292 + ], + [ + 34.6714668, + -1.8337275 + ], + [ + 34.6717596, + -1.8340673 + ], + [ + 34.6720229, + -1.8344673 + ], + [ + 34.6722288, + -1.8348706 + ], + [ + 34.6725146, + -1.8354276 + ], + [ + 34.6725489, + -1.8355096 + ], + [ + 34.6728094, + -1.8360666 + ], + [ + 34.6730158, + -1.8365049 + ] + ] + }, + "id": "way/654146690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654146692", + "highway": "secondary", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6653333, + -1.8845945 + ], + [ + 34.6652341, + -1.8853116 + ], + [ + 34.6651617, + -1.8856789 + ], + [ + 34.6651027, + -1.8860274 + ], + [ + 34.6649685, + -1.8866761 + ], + [ + 34.6648452, + -1.8871962 + ], + [ + 34.6647835, + -1.8874938 + ] + ] + }, + "id": "way/654146692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654146693", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.66534, + -1.8845289 + ], + [ + 34.6653333, + -1.8845945 + ] + ] + }, + "id": "way/654146693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654155256", + "highway": "secondary", + "ref": "R364", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.209019, + -3.220552 + ], + [ + 34.208476, + -3.2204353 + ], + [ + 34.2055288, + -3.2198301 + ], + [ + 34.204694, + -3.2196416 + ], + [ + 34.2025341, + -3.2191538 + ], + [ + 34.2008584, + -3.2187148 + ], + [ + 34.1990639, + -3.2182758 + ], + [ + 34.197518, + -3.2179344 + ] + ] + }, + "id": "way/654155256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654380806", + "highway": "secondary", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1335908, + -1.4016497 + ], + [ + 34.1327908, + -1.4027449 + ], + [ + 34.1320308, + -1.4037747 + ], + [ + 34.1315012, + -1.4044313 + ], + [ + 34.1308051, + -1.4051991 + ] + ] + }, + "id": "way/654380806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654380807", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R190", + "source": "Africover", + "source:date": "2014..2015", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1336404, + -1.4015719 + ], + [ + 34.1335908, + -1.4016497 + ] + ] + }, + "id": "way/654380807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654380810", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1905468, + -1.2968238 + ], + [ + 34.1907191, + -1.2969532 + ] + ] + }, + "id": "way/654380810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654380811", + "highway": "secondary", + "ref": "R182", + "source": "Tanroads", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.1860253, + -1.2945059 + ], + [ + 34.1863392, + -1.2946961 + ], + [ + 34.186547, + -1.2948115 + ], + [ + 34.1867134, + -1.2948947 + ], + [ + 34.1868495, + -1.2949457 + ], + [ + 34.1868651, + -1.2949516 + ], + [ + 34.1870937, + -1.2950372 + ], + [ + 34.1874027, + -1.2951323 + ], + [ + 34.1881276, + -1.2954055 + ], + [ + 34.1887632, + -1.2956665 + ], + [ + 34.1889299, + -1.2957646 + ], + [ + 34.1891648, + -1.2958968 + ], + [ + 34.1895013, + -1.2961053 + ], + [ + 34.1900491, + -1.2964912 + ], + [ + 34.1904036, + -1.2967394 + ], + [ + 34.1905468, + -1.2968238 + ] + ] + }, + "id": "way/654380811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654664214", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9797889, + -1.8216546 + ], + [ + 33.9799458, + -1.8219488 + ] + ] + }, + "id": "way/654664214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654664215", + "highway": "primary", + "ref": "T17", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9649795, + -1.7661074 + ], + [ + 33.964539, + -1.767528 + ], + [ + 33.9644237, + -1.7677773 + ], + [ + 33.9643178, + -1.7679293 + ], + [ + 33.9632557, + -1.7694313 + ], + [ + 33.9620036, + -1.7710789 + ], + [ + 33.9616113, + -1.7715116 + ], + [ + 33.9601939, + -1.7727739 + ], + [ + 33.9598533, + -1.7730287 + ], + [ + 33.9590514, + -1.773601 + ], + [ + 33.9586598, + -1.7739495 + ], + [ + 33.9581179, + -1.7745942 + ], + [ + 33.9578282, + -1.7749503 + ], + [ + 33.9575806, + -1.7752071 + ], + [ + 33.957383, + -1.7754977 + ], + [ + 33.9573106, + -1.775672 + ], + [ + 33.9573159, + -1.7759132 + ], + [ + 33.9573642, + -1.7761679 + ], + [ + 33.9577378, + -1.7771147 + ], + [ + 33.9582519, + -1.7780621 + ], + [ + 33.9583065, + -1.7781628 + ], + [ + 33.9587501, + -1.7789803 + ], + [ + 33.9598889, + -1.7815888 + ], + [ + 33.9602527, + -1.7827904 + ], + [ + 33.9611397, + -1.7861862 + ], + [ + 33.961186, + -1.7863633 + ], + [ + 33.9626095, + -1.788213 + ], + [ + 33.9633402, + -1.789173 + ], + [ + 33.9640697, + -1.7902668 + ], + [ + 33.9653652, + -1.7927333 + ], + [ + 33.9667536, + -1.7955644 + ], + [ + 33.9668645, + -1.7958066 + ], + [ + 33.9669926, + -1.7960866 + ], + [ + 33.9678608, + -1.7979833 + ], + [ + 33.9689047, + -1.7999436 + ], + [ + 33.9695795, + -1.8013188 + ], + [ + 33.9700278, + -1.8022992 + ], + [ + 33.9719258, + -1.805967 + ], + [ + 33.9742031, + -1.8101885 + ], + [ + 33.9760163, + -1.8137541 + ], + [ + 33.9760988, + -1.8139224 + ], + [ + 33.9767492, + -1.8152486 + ], + [ + 33.9782369, + -1.8182824 + ], + [ + 33.9797889, + -1.8216546 + ] + ] + }, + "id": "way/654664215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/691252367", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.658062, + -1.1796678 + ], + [ + 34.658067, + -1.1797721 + ] + ] + }, + "id": "way/691252367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/693295402", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2449278, + -1.5819523 + ], + [ + 35.2449976, + -1.5821158 + ] + ] + }, + "id": "way/693295402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/693295403", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2449278, + -1.5819523 + ], + [ + 35.245137, + -1.5819938 + ] + ] + }, + "id": "way/693295403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/693361307", + "highway": "trunk", + "name": "Kilgoris-Lolgorien Rd.", + "ref": "B3", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8156568, + -1.2223594 + ], + [ + 34.8155451, + -1.2225473 + ], + [ + 34.8154673, + -1.2226653 + ], + [ + 34.8153841, + -1.2227685 + ], + [ + 34.8153077, + -1.2228409 + ], + [ + 34.8152058, + -1.2229167 + ], + [ + 34.8151132, + -1.2229683 + ], + [ + 34.815018, + -1.2230045 + ], + [ + 34.814892, + -1.2230387 + ], + [ + 34.8146385, + -1.2231004 + ], + [ + 34.8143676, + -1.2231607 + ], + [ + 34.8140189, + -1.223221 + ], + [ + 34.8137185, + -1.2232713 + ], + [ + 34.8134503, + -1.2233055 + ], + [ + 34.8132035, + -1.223345 + ], + [ + 34.8129735, + -1.2233906 + ], + [ + 34.8127717, + -1.2234268 + ], + [ + 34.8126154, + -1.223455 + ], + [ + 34.8124753, + -1.2234878 + ], + [ + 34.8123579, + -1.2235368 + ], + [ + 34.8122453, + -1.2235978 + ], + [ + 34.8120441, + -1.2237292 + ], + [ + 34.8114111, + -1.2241281 + ], + [ + 34.8112301, + -1.2242568 + ], + [ + 34.8110973, + -1.2243701 + ], + [ + 34.8109719, + -1.2245001 + ], + [ + 34.8108955, + -1.2245886 + ], + [ + 34.8108143, + -1.2247086 + ], + [ + 34.8107372, + -1.2248353 + ], + [ + 34.8105367, + -1.2251726 + ], + [ + 34.8102947, + -1.2255433 + ], + [ + 34.8101002, + -1.225853 + ], + [ + 34.8099717, + -1.2260658 + ], + [ + 34.8098414, + -1.2262814 + ], + [ + 34.809545, + -1.22675 + ], + [ + 34.8094605, + -1.2268908 + ], + [ + 34.8093787, + -1.2270343 + ], + [ + 34.8093043, + -1.2271583 + ], + [ + 34.8092084, + -1.2273198 + ], + [ + 34.809154, + -1.2274063 + ], + [ + 34.8090499, + -1.2275824 + ], + [ + 34.8089562, + -1.2277404 + ], + [ + 34.8088878, + -1.2278602 + ] + ] + }, + "id": "way/693361307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/693361308", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Kilgoris-Lolgorien Rd.", + "ref": "B3", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8156916, + -1.2222968 + ], + [ + 34.8156568, + -1.2223594 + ] + ] + }, + "id": "way/693361308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/693501597", + "AUTO_ID": "32168;867", + "highway": "trunk", + "ref": "B1", + "source": "survey", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.0041467, + -1.245635 + ], + [ + 35.0042552, + -1.2455967 + ], + [ + 35.004325, + -1.2455931 + ], + [ + 35.0044057, + -1.245603 + ], + [ + 35.0044936, + -1.245632 + ], + [ + 35.0057345, + -1.2462927 + ], + [ + 35.0059122, + -1.2463993 + ], + [ + 35.0059846, + -1.2464556 + ], + [ + 35.0060853, + -1.246551 + ], + [ + 35.0061751, + -1.2466271 + ], + [ + 35.0062567, + -1.2466697 + ], + [ + 35.00634, + -1.2466896 + ], + [ + 35.0066682, + -1.2466914 + ], + [ + 35.0070025, + -1.2466702 + ], + [ + 35.007315, + -1.2465991 + ], + [ + 35.0076798, + -1.2465011 + ], + [ + 35.0094339, + -1.2461446 + ], + [ + 35.0122221, + -1.2455519 + ], + [ + 35.0125922, + -1.2454755 + ], + [ + 35.0128434, + -1.2454002 + ], + [ + 35.0138448, + -1.2450491 + ], + [ + 35.0149405, + -1.2446228 + ], + [ + 35.0154863, + -1.2443908 + ], + [ + 35.0157586, + -1.2442782 + ], + [ + 35.0161006, + -1.2440811 + ], + [ + 35.0165324, + -1.2438116 + ], + [ + 35.0172579, + -1.2433075 + ], + [ + 35.0175583, + -1.2430755 + ], + [ + 35.0177836, + -1.242928 + ], + [ + 35.0180519, + -1.2427845 + ], + [ + 35.018654, + -1.2425325 + ], + [ + 35.0193259, + -1.2422415 + ], + [ + 35.0195311, + -1.2421504 + ], + [ + 35.0197604, + -1.2420136 + ], + [ + 35.0199522, + -1.2418809 + ], + [ + 35.0206093, + -1.2414545 + ], + [ + 35.0221181, + -1.2404623 + ], + [ + 35.0224279, + -1.2402384 + ], + [ + 35.0225352, + -1.2401579 + ], + [ + 35.0227162, + -1.2400547 + ], + [ + 35.0229456, + -1.2399608 + ], + [ + 35.0232832, + -1.2398647 + ], + [ + 35.0235423, + -1.239808 + ], + [ + 35.0238749, + -1.2397611 + ], + [ + 35.0240453, + -1.2397222 + ], + [ + 35.0244704, + -1.2395894 + ], + [ + 35.0248875, + -1.2393548 + ], + [ + 35.0251316, + -1.2392167 + ], + [ + 35.026018, + -1.2386174 + ], + [ + 35.0266215, + -1.2381401 + ], + [ + 35.0267835, + -1.2379615 + ], + [ + 35.0270078, + -1.2376292 + ], + [ + 35.027445, + -1.2369736 + ], + [ + 35.0277118, + -1.2366504 + ], + [ + 35.0279425, + -1.2364198 + ], + [ + 35.0281423, + -1.236275 + ], + [ + 35.0283332, + -1.2361418 + ], + [ + 35.0285795, + -1.2360457 + ], + [ + 35.0288692, + -1.2359948 + ], + [ + 35.0293748, + -1.2359184 + ], + [ + 35.0296055, + -1.235854 + ], + [ + 35.0298643, + -1.2357374 + ], + [ + 35.0301017, + -1.2355912 + ], + [ + 35.0307521, + -1.2349664 + ], + [ + 35.0309641, + -1.2347507 + ], + [ + 35.0310173, + -1.2346965 + ], + [ + 35.0310512, + -1.234662 + ], + [ + 35.0316279, + -1.2340077 + ], + [ + 35.0321455, + -1.2333025 + ], + [ + 35.0324446, + -1.2328305 + ], + [ + 35.0325693, + -1.2325932 + ], + [ + 35.0326592, + -1.2323679 + ], + [ + 35.0327115, + -1.2321615 + ], + [ + 35.0327222, + -1.231896 + ], + [ + 35.0327182, + -1.2316426 + ], + [ + 35.0326806, + -1.2313302 + ], + [ + 35.0326253, + -1.2311306 + ], + [ + 35.0324137, + -1.2303675 + ], + [ + 35.0322287, + -1.2298137 + ], + [ + 35.0321576, + -1.2295509 + ], + [ + 35.0321227, + -1.2293217 + ], + [ + 35.0321335, + -1.2290964 + ], + [ + 35.0322032, + -1.2288671 + ], + [ + 35.0322737, + -1.2287262 + ], + [ + 35.0323145, + -1.2286445 + ], + [ + 35.0327638, + -1.2279554 + ], + [ + 35.0329877, + -1.2275893 + ], + [ + 35.0330722, + -1.2274217 + ], + [ + 35.0331447, + -1.2272099 + ], + [ + 35.0332358, + -1.2268707 + ], + [ + 35.0333545, + -1.2260789 + ], + [ + 35.0334464, + -1.2256398 + ], + [ + 35.0334759, + -1.2255533 + ], + [ + 35.0334987, + -1.2254957 + ], + [ + 35.0335383, + -1.225432 + ], + [ + 35.0336301, + -1.2253267 + ], + [ + 35.0341156, + -1.2246892 + ], + [ + 35.0345273, + -1.2241314 + ], + [ + 35.0348438, + -1.2237024 + ], + [ + 35.0352287, + -1.2231164 + ], + [ + 35.0354259, + -1.222855 + ], + [ + 35.0355291, + -1.2227544 + ], + [ + 35.0356123, + -1.2227276 + ], + [ + 35.0357209, + -1.2227263 + ], + [ + 35.0358537, + -1.2227678 + ], + [ + 35.0359944, + -1.2227919 + ] + ] + }, + "id": "way/693501597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/693501609", + "AUTO_ID": "32168;867", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "survey", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.0040432, + -1.2457007 + ], + [ + 35.0041467, + -1.245635 + ] + ] + }, + "id": "way/693501609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/694276206", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.641803, + -1.1622057 + ], + [ + 34.6418516, + -1.1622244 + ] + ] + }, + "id": "way/694276206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/694276207", + "highway": "trunk", + "ref": "B1", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6324203, + -1.16293 + ], + [ + 34.6325659, + -1.1629839 + ], + [ + 34.6327165, + -1.1630325 + ], + [ + 34.6328562, + -1.1630767 + ], + [ + 34.6330578, + -1.1631131 + ], + [ + 34.6332748, + -1.1631339 + ], + [ + 34.6343694, + -1.1629473 + ], + [ + 34.6349375, + -1.1628575 + ], + [ + 34.6351696, + -1.1628037 + ], + [ + 34.6354084, + -1.1627136 + ], + [ + 34.6359374, + -1.1623995 + ], + [ + 34.6362688, + -1.1621801 + ], + [ + 34.6363861, + -1.1620913 + ], + [ + 34.6365639, + -1.1619907 + ], + [ + 34.6367365, + -1.1619237 + ], + [ + 34.6369076, + -1.1618795 + ], + [ + 34.6373231, + -1.1618118 + ], + [ + 34.6382439, + -1.1617288 + ], + [ + 34.6393398, + -1.1616375 + ], + [ + 34.6398322, + -1.1616629 + ], + [ + 34.6400897, + -1.161687 + ], + [ + 34.6403861, + -1.1617568 + ], + [ + 34.6407107, + -1.1618506 + ], + [ + 34.6410352, + -1.1619472 + ], + [ + 34.641803, + -1.1622057 + ] + ] + }, + "id": "way/694276207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/697985710", + "highway": "primary", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6228219, + -1.3155802 + ], + [ + 34.6229517, + -1.3157653 + ], + [ + 34.6231127, + -1.3159691 + ], + [ + 34.6232629, + -1.3161662 + ], + [ + 34.6234372, + -1.3163875 + ], + [ + 34.6237014, + -1.3166945 + ], + [ + 34.6240674, + -1.3171052 + ], + [ + 34.6242875, + -1.3173783 + ], + [ + 34.6244424, + -1.3175589 + ], + [ + 34.6249218, + -1.3181157 + ], + [ + 34.6253711, + -1.3186279 + ], + [ + 34.6255368, + -1.318831 + ], + [ + 34.6256863, + -1.3190247 + ], + [ + 34.6257935, + -1.3192218 + ], + [ + 34.6258311, + -1.3193116 + ], + [ + 34.6258579, + -1.3195221 + ] + ] + }, + "id": "way/697985710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/697985711", + "highway": "primary", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6164154, + -1.3026261 + ], + [ + 34.6165289, + -1.3028778 + ], + [ + 34.6167465, + -1.3033446 + ], + [ + 34.6168175, + -1.3034808 + ], + [ + 34.6170723, + -1.3040257 + ], + [ + 34.6172065, + -1.3042939 + ], + [ + 34.6172695, + -1.3044038 + ], + [ + 34.6173671, + -1.3045846 + ], + [ + 34.6174532, + -1.3047202 + ], + [ + 34.6175712, + -1.3048892 + ], + [ + 34.6177711, + -1.3051841 + ], + [ + 34.6177942, + -1.3052186 + ], + [ + 34.6180063, + -1.3054602 + ], + [ + 34.6181419, + -1.3056876 + ], + [ + 34.6182639, + -1.3058351 + ], + [ + 34.6187213, + -1.3063781 + ], + [ + 34.619135, + -1.3069244 + ], + [ + 34.6192758, + -1.3071014 + ], + [ + 34.6195084, + -1.3074424 + ], + [ + 34.619725, + -1.3077249 + ], + [ + 34.6198511, + -1.3079354 + ], + [ + 34.6199563, + -1.3081182 + ], + [ + 34.6201676, + -1.3085226 + ], + [ + 34.6203104, + -1.3087831 + ], + [ + 34.6204694, + -1.3090777 + ], + [ + 34.6205844, + -1.3092805 + ], + [ + 34.6206403, + -1.3094213 + ], + [ + 34.6207497, + -1.3097521 + ], + [ + 34.6207939, + -1.3099465 + ], + [ + 34.6208506, + -1.3101855 + ], + [ + 34.6209297, + -1.3104581 + ], + [ + 34.6210071, + -1.3107657 + ], + [ + 34.6211117, + -1.3110593 + ], + [ + 34.6212512, + -1.3114441 + ], + [ + 34.6213558, + -1.3117136 + ], + [ + 34.6215986, + -1.3124068 + ], + [ + 34.6217902, + -1.3129848 + ], + [ + 34.6221025, + -1.3138013 + ], + [ + 34.6221347, + -1.313888 + ], + [ + 34.6224233, + -1.3146619 + ], + [ + 34.6225731, + -1.3150647 + ], + [ + 34.6226862, + -1.3153202 + ], + [ + 34.6228219, + -1.3155802 + ] + ] + }, + "id": "way/697985711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699656650", + "covered": "yes", + "highway": "secondary", + "ref": "C12", + "source": "survey", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.337453, + -1.5209394 + ], + [ + 35.3374402, + -1.5209658 + ], + [ + 35.3374107, + -1.5210174 + ] + ] + }, + "id": "way/699656650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699933720", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5804019, + -1.141958 + ], + [ + 34.5805983, + -1.1419936 + ] + ] + }, + "id": "way/699933720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699933721", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5805983, + -1.1419936 + ], + [ + 34.5808732, + -1.1420813 + ], + [ + 34.5810744, + -1.1421511 + ], + [ + 34.5812997, + -1.1422409 + ], + [ + 34.5815586, + -1.1423898 + ], + [ + 34.5817201, + -1.1425092 + ], + [ + 34.5818493, + -1.1426127 + ], + [ + 34.5821245, + -1.142847 + ], + [ + 34.582327, + -1.1430454 + ], + [ + 34.5826435, + -1.1433632 + ], + [ + 34.5828527, + -1.1435737 + ], + [ + 34.5831625, + -1.1438768 + ], + [ + 34.583416, + -1.1441168 + ], + [ + 34.5838022, + -1.1444855 + ], + [ + 34.5839846, + -1.1446625 + ], + [ + 34.5841724, + -1.1448395 + ], + [ + 34.5843273, + -1.1449642 + ], + [ + 34.5844983, + -1.1450849 + ], + [ + 34.5847155, + -1.1451975 + ], + [ + 34.5849341, + -1.145294 + ], + [ + 34.5851313, + -1.1453758 + ], + [ + 34.5852882, + -1.1454321 + ], + [ + 34.5855107, + -1.145534 + ], + [ + 34.5855671, + -1.1455622 + ], + [ + 34.5856234, + -1.1456078 + ], + [ + 34.5858119, + -1.1457443 + ], + [ + 34.5863543, + -1.1462071 + ], + [ + 34.5873508, + -1.1470639 + ], + [ + 34.5874466, + -1.147142 + ], + [ + 34.5874956, + -1.1471819 + ], + [ + 34.5887589, + -1.1482559 + ], + [ + 34.5890473, + -1.148508 + ], + [ + 34.589412, + -1.148811 + ], + [ + 34.5896535, + -1.1489921 + ], + [ + 34.5900089, + -1.1492441 + ], + [ + 34.5900739, + -1.1492844 + ], + [ + 34.5902006, + -1.1493487 + ], + [ + 34.5904353, + -1.1494473 + ], + [ + 34.5907572, + -1.1495552 + ], + [ + 34.5910388, + -1.149633 + ], + [ + 34.593034, + -1.1500917 + ], + [ + 34.5936513, + -1.1502457 + ], + [ + 34.5949025, + -1.1505367 + ], + [ + 34.5958266, + -1.1507552 + ], + [ + 34.5961095, + -1.1508236 + ], + [ + 34.5963456, + -1.1508826 + ], + [ + 34.59654, + -1.1509242 + ], + [ + 34.5966835, + -1.1509403 + ], + [ + 34.5968042, + -1.150947 + ], + [ + 34.5969611, + -1.1509497 + ], + [ + 34.5971288, + -1.1509403 + ], + [ + 34.5973541, + -1.1509054 + ], + [ + 34.5975633, + -1.1508706 + ], + [ + 34.5977283, + -1.1508531 + ], + [ + 34.5979589, + -1.1508344 + ], + [ + 34.5982513, + -1.1508411 + ], + [ + 34.5983814, + -1.1508531 + ], + [ + 34.5984913, + -1.1508652 + ], + [ + 34.5986322, + -1.1508907 + ], + [ + 34.598772, + -1.1509256 + ], + [ + 34.5989086, + -1.1509706 + ], + [ + 34.5989835, + -1.1509953 + ], + [ + 34.5991069, + -1.1510435 + ], + [ + 34.5992504, + -1.1511092 + ], + [ + 34.5994905, + -1.1512447 + ], + [ + 34.6003, + -1.1518261 + ], + [ + 34.600562, + -1.1520143 + ], + [ + 34.6010891, + -1.152383 + ], + [ + 34.6014713, + -1.1526177 + ], + [ + 34.6021405, + -1.1530025 + ], + [ + 34.602854, + -1.1534155 + ], + [ + 34.6032751, + -1.1536595 + ], + [ + 34.6034688, + -1.1537697 + ], + [ + 34.603558, + -1.1538204 + ], + [ + 34.6037029, + -1.1539089 + ], + [ + 34.6039362, + -1.1540296 + ], + [ + 34.6042715, + -1.1541878 + ], + [ + 34.6047664, + -1.1543648 + ], + [ + 34.6051593, + -1.1544814 + ], + [ + 34.6059734, + -1.1546825 + ] + ] + }, + "id": "way/699933721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/700173145", + "highway": "trunk", + "ref": "B1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.7536191, + -1.2195839 + ], + [ + 34.7539934, + -1.2198007 + ], + [ + 34.7542834, + -1.2199884 + ], + [ + 34.7545624, + -1.2201627 + ], + [ + 34.7547635, + -1.2203155 + ], + [ + 34.7550157, + -1.2205864 + ], + [ + 34.7551793, + -1.2207902 + ], + [ + 34.7553483, + -1.2209698 + ], + [ + 34.7554877, + -1.2210878 + ], + [ + 34.7556379, + -1.221179 + ], + [ + 34.7558632, + -1.2212648 + ], + [ + 34.7561905, + -1.2213667 + ], + [ + 34.759756, + -1.2221125 + ], + [ + 34.7638227, + -1.2229668 + ], + [ + 34.7664478, + -1.2236201 + ], + [ + 34.7676569, + -1.2239973 + ], + [ + 34.7686158, + -1.2242799 + ], + [ + 34.7696921, + -1.224456 + ], + [ + 34.773737, + -1.2249064 + ], + [ + 34.7760355, + -1.2250536 + ], + [ + 34.7776995, + -1.2251209 + ], + [ + 34.7786476, + -1.2251592 + ], + [ + 34.7806043, + -1.2251511 + ], + [ + 34.782578, + -1.2251384 + ], + [ + 34.7828074, + -1.2251545 + ], + [ + 34.7829978, + -1.2251933 + ], + [ + 34.7832674, + -1.2252899 + ], + [ + 34.7836996, + -1.2255453 + ], + [ + 34.7848287, + -1.226329 + ], + [ + 34.7859594, + -1.227078 + ], + [ + 34.7871593, + -1.2278293 + ], + [ + 34.7883464, + -1.2285491 + ], + [ + 34.7899246, + -1.2294732 + ], + [ + 34.7916199, + -1.2304256 + ], + [ + 34.7937644, + -1.2315668 + ], + [ + 34.7949859, + -1.2322111 + ], + [ + 34.7961026, + -1.232793 + ], + [ + 34.7962734, + -1.2328788 + ], + [ + 34.7964794, + -1.232954 + ], + [ + 34.7966623, + -1.2330155 + ], + [ + 34.7968744, + -1.233075 + ], + [ + 34.7972229, + -1.2331443 + ], + [ + 34.7976467, + -1.2332113 + ], + [ + 34.7985005, + -1.2333316 + ], + [ + 34.7999025, + -1.2335538 + ], + [ + 34.8016813, + -1.2338413 + ], + [ + 34.8018819, + -1.2338683 + ], + [ + 34.8021126, + -1.2338871 + ], + [ + 34.8023352, + -1.2338924 + ], + [ + 34.802601, + -1.2338656 + ], + [ + 34.8030532, + -1.2337873 + ], + [ + 34.8033924, + -1.2337156 + ], + [ + 34.8038879, + -1.2336282 + ], + [ + 34.8042288, + -1.2335653 + ], + [ + 34.8045874, + -1.2334911 + ], + [ + 34.8048753, + -1.2333936 + ], + [ + 34.8051488, + -1.2332757 + ], + [ + 34.8053741, + -1.2331603 + ], + [ + 34.8057175, + -1.2329217 + ], + [ + 34.8061359, + -1.2326348 + ], + [ + 34.8064417, + -1.2324088 + ], + [ + 34.8065543, + -1.2323096 + ], + [ + 34.8066207, + -1.2322399 + ], + [ + 34.8066911, + -1.2321541 + ], + [ + 34.8067964, + -1.2320053 + ], + [ + 34.8069218, + -1.2317914 + ], + [ + 34.80714, + -1.2314086 + ], + [ + 34.8071773, + -1.2313516 + ], + [ + 34.8072896, + -1.2311473 + ], + [ + 34.8075513, + -1.2306551 + ], + [ + 34.8076594, + -1.2304224 + ], + [ + 34.8078082, + -1.2300913 + ], + [ + 34.8079068, + -1.2298734 + ], + [ + 34.808, + -1.2296548 + ], + [ + 34.8080966, + -1.2294329 + ], + [ + 34.8082133, + -1.2291621 + ], + [ + 34.8083004, + -1.2289663 + ], + [ + 34.8083715, + -1.2288081 + ], + [ + 34.8084681, + -1.2286097 + ], + [ + 34.808519, + -1.2285167 + ], + [ + 34.8086008, + -1.228367 + ], + [ + 34.8087725, + -1.2280653 + ], + [ + 34.8088878, + -1.2278602 + ] + ] + }, + "id": "way/700173145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/700173146", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.753488, + -1.2195071 + ], + [ + 34.7536191, + -1.2195839 + ] + ] + }, + "id": "way/700173146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/700883155", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "oneway": "no", + "ref": "A1", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4485458, + -1.1844347 + ], + [ + 34.4486012, + -1.1844918 + ] + ] + }, + "id": "way/700883155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/700883156", + "highway": "trunk", + "oneway": "no", + "ref": "A1", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4485458, + -1.1844347 + ], + [ + 34.4483238, + -1.1841887 + ], + [ + 34.4480972, + -1.1838884 + ], + [ + 34.4479188, + -1.1836363 + ], + [ + 34.4476144, + -1.183163 + ], + [ + 34.4473556, + -1.1826361 + ], + [ + 34.4471624, + -1.182152 + ], + [ + 34.4470109, + -1.1817263 + ], + [ + 34.4468392, + -1.1810553 + ], + [ + 34.4467802, + -1.1807817 + ], + [ + 34.4467548, + -1.1805766 + ], + [ + 34.4467105, + -1.180051 + ], + [ + 34.4467132, + -1.1795294 + ], + [ + 34.4467361, + -1.1791243 + ], + [ + 34.44674, + -1.1789428 + ], + [ + 34.4467543, + -1.1786878 + ], + [ + 34.44685, + -1.1768813 + ], + [ + 34.4468915, + -1.1755324 + ], + [ + 34.4468889, + -1.1748835 + ], + [ + 34.4468687, + -1.174323 + ], + [ + 34.4468674, + -1.1742412 + ], + [ + 34.4468379, + -1.1738296 + ], + [ + 34.4467621, + -1.1732108 + ], + [ + 34.446677, + -1.1727328 + ], + [ + 34.4465549, + -1.1720094 + ], + [ + 34.4464787, + -1.1716725 + ], + [ + 34.4464302, + -1.1714818 + ], + [ + 34.4463729, + -1.1712589 + ], + [ + 34.44613, + -1.1703673 + ], + [ + 34.4459943, + -1.1698835 + ], + [ + 34.4458696, + -1.1694142 + ], + [ + 34.4456993, + -1.1688363 + ], + [ + 34.4456497, + -1.1686433 + ], + [ + 34.4455652, + -1.1683711 + ], + [ + 34.4454753, + -1.1680292 + ], + [ + 34.4450784, + -1.1667205 + ], + [ + 34.4450187, + -1.1664671 + ], + [ + 34.4449855, + -1.1663528 + ], + [ + 34.4449081, + -1.1660863 + ], + [ + 34.4448272, + -1.165771 + ], + [ + 34.4446586, + -1.1651222 + ], + [ + 34.4445996, + -1.1648755 + ], + [ + 34.44455, + -1.1646101 + ], + [ + 34.444495, + -1.1642976 + ], + [ + 34.4444548, + -1.1638565 + ], + [ + 34.4444226, + -1.1632129 + ], + [ + 34.4444333, + -1.1628683 + ], + [ + 34.4444601, + -1.1626095 + ], + [ + 34.4444883, + -1.1623467 + ], + [ + 34.444554, + -1.1618466 + ], + [ + 34.4446103, + -1.1615503 + ], + [ + 34.4446921, + -1.1612298 + ], + [ + 34.4447974, + -1.160849 + ], + [ + 34.4450408, + -1.1601143 + ], + [ + 34.4453131, + -1.1593017 + ], + [ + 34.4454981, + -1.1587238 + ], + [ + 34.4455575, + -1.1585626 + ], + [ + 34.4456682, + -1.1582321 + ], + [ + 34.4458629, + -1.1576511 + ], + [ + 34.4464114, + -1.1560609 + ], + [ + 34.446445, + -1.1559389 + ], + [ + 34.446622, + -1.1554374 + ], + [ + 34.4468131, + -1.1548716 + ], + [ + 34.4469331, + -1.1544627 + ], + [ + 34.4471557, + -1.1538418 + ], + [ + 34.4473676, + -1.1532586 + ], + [ + 34.4474669, + -1.1529448 + ], + [ + 34.447546, + -1.1526405 + ], + [ + 34.4476077, + -1.1523897 + ], + [ + 34.4477244, + -1.1517689 + ], + [ + 34.4477978, + -1.1512312 + ], + [ + 34.447825, + -1.1509711 + ], + [ + 34.447892, + -1.1502511 + ], + [ + 34.4479188, + -1.1498529 + ], + [ + 34.4480583, + -1.1478765 + ], + [ + 34.4481415, + -1.1468145 + ], + [ + 34.4481879, + -1.1462776 + ], + [ + 34.4481942, + -1.1461967 + ], + [ + 34.4483158, + -1.1444265 + ], + [ + 34.4483654, + -1.1437695 + ], + [ + 34.4485357, + -1.1414184 + ], + [ + 34.4487289, + -1.1389492 + ], + [ + 34.4489126, + -1.136659 + ], + [ + 34.4489249, + -1.1364364 + ], + [ + 34.4490226, + -1.1351694 + ], + [ + 34.4491465, + -1.1334124 + ], + [ + 34.4492693, + -1.1316724 + ], + [ + 34.4493699, + -1.1308424 + ], + [ + 34.449374, + -1.1306855 + ], + [ + 34.4494879, + -1.1300084 + ], + [ + 34.4495496, + -1.1297161 + ], + [ + 34.4497414, + -1.1288996 + ], + [ + 34.4498554, + -1.1285067 + ], + [ + 34.4500123, + -1.1280132 + ], + [ + 34.4502175, + -1.1274715 + ], + [ + 34.4503851, + -1.1270626 + ], + [ + 34.4505769, + -1.126659 + ], + [ + 34.4507539, + -1.1262702 + ], + [ + 34.4511697, + -1.125404 + ], + [ + 34.4516189, + -1.1244695 + ], + [ + 34.4521245, + -1.1234022 + ], + [ + 34.4527388, + -1.122135 + ], + [ + 34.4532014, + -1.121175 + ], + [ + 34.4535032, + -1.1205394 + ], + [ + 34.4537848, + -1.1199481 + ], + [ + 34.4541576, + -1.1191623 + ], + [ + 34.4544406, + -1.1185791 + ], + [ + 34.4546217, + -1.1181996 + ], + [ + 34.4547799, + -1.1178832 + ], + [ + 34.4550173, + -1.1173938 + ], + [ + 34.4552158, + -1.1169566 + ], + [ + 34.4553553, + -1.1166268 + ], + [ + 34.4554465, + -1.1163519 + ], + [ + 34.4555497, + -1.11601 + ], + [ + 34.4556342, + -1.1156976 + ], + [ + 34.4556946, + -1.1154348 + ], + [ + 34.4557428, + -1.1152042 + ], + [ + 34.4557804, + -1.1149829 + ], + [ + 34.4558166, + -1.1147248 + ], + [ + 34.4558233, + -1.1146772 + ], + [ + 34.4558515, + -1.1142642 + ], + [ + 34.4558723, + -1.1137386 + ], + [ + 34.4558719, + -1.1136414 + ], + [ + 34.4558716, + -1.1135442 + ], + [ + 34.4558622, + -1.1133122 + ], + [ + 34.4558394, + -1.1129958 + ], + [ + 34.4558153, + -1.1127678 + ], + [ + 34.4557938, + -1.1125533 + ], + [ + 34.4557562, + -1.1123334 + ], + [ + 34.4556718, + -1.1118695 + ], + [ + 34.4555256, + -1.1112621 + ], + [ + 34.4553445, + -1.1104817 + ], + [ + 34.4552428, + -1.1100369 + ], + [ + 34.4552265, + -1.1099654 + ], + [ + 34.4550401, + -1.1091743 + ], + [ + 34.4549274, + -1.1086796 + ], + [ + 34.4548255, + -1.1082599 + ], + [ + 34.4545881, + -1.1073253 + ], + [ + 34.4544996, + -1.1069271 + ], + [ + 34.4544024, + -1.1064591 + ], + [ + 34.4543119, + -1.1060957 + ], + [ + 34.4541939, + -1.105601 + ], + [ + 34.4540316, + -1.1049185 + ], + [ + 34.4539444, + -1.1045243 + ], + [ + 34.4538827, + -1.1041555 + ], + [ + 34.4538251, + -1.1036849 + ], + [ + 34.4538189, + -1.1035548 + ], + [ + 34.453813, + -1.1034248 + ], + [ + 34.4537942, + -1.1029394 + ], + [ + 34.4537969, + -1.1025961 + ], + [ + 34.4538224, + -1.1022703 + ], + [ + 34.4538653, + -1.1017943 + ], + [ + 34.4538935, + -1.1015476 + ], + [ + 34.4539297, + -1.1013223 + ], + [ + 34.4539779, + -1.101093 + ], + [ + 34.4540276, + -1.1008852 + ], + [ + 34.4540812, + -1.100684 + ], + [ + 34.4541496, + -1.1004655 + ], + [ + 34.4542777, + -1.10008 + ], + [ + 34.4546083, + -1.0991796 + ], + [ + 34.4549865, + -1.0981244 + ], + [ + 34.455201, + -1.0975464 + ], + [ + 34.4554424, + -1.0969136 + ], + [ + 34.4557831, + -1.0959924 + ], + [ + 34.4559829, + -1.0954064 + ], + [ + 34.4560285, + -1.0952831 + ], + [ + 34.4561385, + -1.0949908 + ], + [ + 34.456239, + -1.0947052 + ], + [ + 34.4565529, + -1.0938926 + ], + [ + 34.4569176, + -1.0930559 + ], + [ + 34.4572207, + -1.092423 + ], + [ + 34.4576801, + -1.0916111 + ], + [ + 34.4577327, + -1.09152 + ], + [ + 34.4579328, + -1.0912028 + ], + [ + 34.4583137, + -1.0906202 + ], + [ + 34.4585484, + -1.0902924 + ], + [ + 34.4588173, + -1.089921 + ], + [ + 34.4590627, + -1.0895891 + ], + [ + 34.4595204, + -1.0889544 + ], + [ + 34.4599217, + -1.0884165 + ], + [ + 34.4604005, + -1.0877528 + ], + [ + 34.4605523, + -1.0875193 + ], + [ + 34.4606617, + -1.0873512 + ], + [ + 34.460945, + -1.0870073 + ], + [ + 34.4610067, + -1.0868497 + ], + [ + 34.4612548, + -1.0865889 + ], + [ + 34.4614184, + -1.086369 + ], + [ + 34.4618019, + -1.0858354 + ], + [ + 34.4618747, + -1.0857312 + ], + [ + 34.4622713, + -1.0851488 + ], + [ + 34.4625704, + -1.0846755 + ], + [ + 34.4627193, + -1.0844221 + ], + [ + 34.4629727, + -1.0840037 + ], + [ + 34.463198, + -1.083639 + ], + [ + 34.4633362, + -1.0833642 + ], + [ + 34.4633724, + -1.0832984 + ], + [ + 34.4638552, + -1.0824014 + ], + [ + 34.4641341, + -1.0818114 + ], + [ + 34.4642696, + -1.0815111 + ], + [ + 34.4644566, + -1.0811363 + ], + [ + 34.4647859, + -1.0804397 + ], + [ + 34.4648208, + -1.0803633 + ], + [ + 34.4652995, + -1.0793509 + ], + [ + 34.4655034, + -1.0788937 + ], + [ + 34.4658105, + -1.0783031 + ], + [ + 34.4662544, + -1.0773403 + ], + [ + 34.4663858, + -1.0770554 + ], + [ + 34.4664482, + -1.0769267 + ], + [ + 34.466532, + -1.0767557 + ], + [ + 34.4668391, + -1.0761074 + ], + [ + 34.4669518, + -1.0758727 + ], + [ + 34.4670517, + -1.0756609 + ], + [ + 34.4670953, + -1.0755274 + ], + [ + 34.4671731, + -1.07539 + ], + [ + 34.4672462, + -1.0752425 + ], + [ + 34.4673508, + -1.0750501 + ], + [ + 34.4674889, + -1.0747752 + ], + [ + 34.4676418, + -1.0744514 + ], + [ + 34.4677719, + -1.0741752 + ], + [ + 34.4679046, + -1.0738889 + ], + [ + 34.4680582, + -1.0735705 + ], + [ + 34.4681895, + -1.0732715 + ], + [ + 34.468419, + -1.0727793 + ], + [ + 34.4685926, + -1.0724079 + ], + [ + 34.4687884, + -1.0719923 + ], + [ + 34.4689842, + -1.0715732 + ], + [ + 34.4691639, + -1.0712273 + ], + [ + 34.4692323, + -1.0710919 + ], + [ + 34.4693892, + -1.0707573 + ], + [ + 34.4695066, + -1.070522 + ], + [ + 34.4696863, + -1.0701191 + ], + [ + 34.4699736, + -1.069513 + ], + [ + 34.4701309, + -1.0691878 + ], + [ + 34.4702905, + -1.0688734 + ], + [ + 34.4704561, + -1.0684973 + ], + [ + 34.4705875, + -1.068207 + ], + [ + 34.4707652, + -1.0678034 + ], + [ + 34.4708913, + -1.0675131 + ], + [ + 34.4710495, + -1.067147 + ], + [ + 34.4711427, + -1.0669177 + ], + [ + 34.4712152, + -1.0667206 + ] + ] + }, + "id": "way/700883156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701643690", + "highway": "secondary", + "maxspeed": "40", + "ref": "C12", + "source": "survey", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2160807, + -1.6530137 + ], + [ + 35.2159573, + -1.6530883 + ], + [ + 35.2159124, + -1.6531104 + ], + [ + 35.2158024, + -1.653147 + ], + [ + 35.2156207, + -1.6532062 + ], + [ + 35.2153821, + -1.6532923 + ] + ] + }, + "id": "way/701643690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701643691", + "covered": "yes", + "highway": "secondary", + "ref": "C12", + "source": "survey" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2162024, + -1.6529564 + ], + [ + 35.2161444, + -1.652984 + ], + [ + 35.2160807, + -1.6530137 + ] + ] + }, + "id": "way/701643691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701851606", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6061819, + -1.1547362 + ], + [ + 34.6064039, + -1.1547938 + ], + [ + 34.6066131, + -1.1548461 + ], + [ + 34.6068974, + -1.1549065 + ], + [ + 34.6071857, + -1.1549601 + ], + [ + 34.6079072, + -1.1550754 + ], + [ + 34.6083498, + -1.1551532 + ], + [ + 34.608783, + -1.155243 + ], + [ + 34.610657, + -1.1557202 + ], + [ + 34.6115027, + -1.1559443 + ], + [ + 34.6118581, + -1.1560314 + ], + [ + 34.6121572, + -1.1561052 + ], + [ + 34.6131429, + -1.1563546 + ], + [ + 34.6141984, + -1.1566147 + ], + [ + 34.6149199, + -1.1567783 + ], + [ + 34.6152015, + -1.1568453 + ], + [ + 34.6155408, + -1.1569271 + ], + [ + 34.6157983, + -1.1570035 + ], + [ + 34.6160316, + -1.1570773 + ], + [ + 34.616155, + -1.1571296 + ], + [ + 34.6164206, + -1.1572556 + ], + [ + 34.6165869, + -1.1573508 + ], + [ + 34.6167585, + -1.15745 + ], + [ + 34.6169181, + -1.1575506 + ], + [ + 34.6171743, + -1.1577463 + ], + [ + 34.6182686, + -1.158646 + ], + [ + 34.6192364, + -1.1594325 + ], + [ + 34.619489, + -1.1596316 + ], + [ + 34.6196043, + -1.1597174 + ], + [ + 34.6197639, + -1.1598233 + ], + [ + 34.6198672, + -1.1598836 + ], + [ + 34.6199772, + -1.1599413 + ], + [ + 34.6201019, + -1.1600056 + ], + [ + 34.6202508, + -1.160074 + ], + [ + 34.6203983, + -1.1601344 + ], + [ + 34.6205592, + -1.1601893 + ], + [ + 34.6208006, + -1.1602711 + ], + [ + 34.6215518, + -1.1605303 + ], + [ + 34.621895, + -1.1606452 + ], + [ + 34.6221015, + -1.1607096 + ], + [ + 34.622249, + -1.1607538 + ], + [ + 34.6223992, + -1.1607874 + ], + [ + 34.6225199, + -1.1608101 + ], + [ + 34.6226741, + -1.1608329 + ], + [ + 34.6228901, + -1.1608557 + ], + [ + 34.6233125, + -1.1608825 + ], + [ + 34.6239871, + -1.160908 + ], + [ + 34.6242647, + -1.1609241 + ], + [ + 34.6245168, + -1.1609442 + ], + [ + 34.6246536, + -1.1609603 + ], + [ + 34.624832, + -1.1609885 + ], + [ + 34.625072, + -1.1610381 + ], + [ + 34.6253577, + -1.1611024 + ], + [ + 34.6254804, + -1.1611326 + ], + [ + 34.6256635, + -1.1611802 + ], + [ + 34.6258734, + -1.1612301 + ], + [ + 34.6259588, + -1.1612526 + ], + [ + 34.6260075, + -1.1612654 + ], + [ + 34.6260732, + -1.1612814 + ], + [ + 34.6261925, + -1.1613103 + ], + [ + 34.6265918, + -1.1614023 + ], + [ + 34.6288298, + -1.1619431 + ], + [ + 34.6290967, + -1.1620062 + ], + [ + 34.6296519, + -1.1621496 + ], + [ + 34.6301495, + -1.1622864 + ], + [ + 34.6307073, + -1.1624688 + ], + [ + 34.6309943, + -1.1625639 + ], + [ + 34.631451, + -1.1625828 + ], + [ + 34.6315985, + -1.1626102 + ], + [ + 34.6318393, + -1.1627195 + ], + [ + 34.6320429, + -1.162789 + ] + ] + }, + "id": "way/701851606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701851607", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6059734, + -1.1546825 + ], + [ + 34.6061819, + -1.1547362 + ] + ] + }, + "id": "way/701851607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701851608", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4698036, + -1.1046044 + ], + [ + 34.4700463, + -1.104712 + ] + ] + }, + "id": "way/701851608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701851609", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.4562243, + -1.0954527 + ], + [ + 34.4567239, + -1.0957262 + ], + [ + 34.4571986, + -1.095985 + ], + [ + 34.457849, + -1.0963377 + ], + [ + 34.4584076, + -1.0966387 + ], + [ + 34.4588709, + -1.0968914 + ], + [ + 34.4594369, + -1.0972025 + ], + [ + 34.4602711, + -1.0976611 + ], + [ + 34.4609249, + -1.0980137 + ], + [ + 34.4610833, + -1.0980978 + ], + [ + 34.4615994, + -1.0983805 + ], + [ + 34.4622083, + -1.0987116 + ], + [ + 34.462392, + -1.0988115 + ], + [ + 34.4629754, + -1.0991327 + ], + [ + 34.4637318, + -1.0995443 + ], + [ + 34.4643165, + -1.0998641 + ], + [ + 34.46503, + -1.1002563 + ], + [ + 34.4657394, + -1.1006546 + ], + [ + 34.4659701, + -1.1007913 + ], + [ + 34.4661632, + -1.100916 + ], + [ + 34.4663711, + -1.1010689 + ], + [ + 34.4665588, + -1.1012191 + ], + [ + 34.4667037, + -1.1013558 + ], + [ + 34.4668432, + -1.1014979 + ], + [ + 34.4669799, + -1.1016468 + ], + [ + 34.4671731, + -1.1018935 + ], + [ + 34.4675727, + -1.1023977 + ], + [ + 34.467735, + -1.1026229 + ], + [ + 34.4680005, + -1.1029756 + ], + [ + 34.4682379, + -1.1033001 + ], + [ + 34.4684069, + -1.10352 + ], + [ + 34.4687978, + -1.1039725 + ], + [ + 34.4689058, + -1.1040657 + ], + [ + 34.4690385, + -1.1041703 + ], + [ + 34.4691633, + -1.1042615 + ], + [ + 34.4692692, + -1.1043298 + ], + [ + 34.4694436, + -1.1044237 + ], + [ + 34.4696461, + -1.1045283 + ], + [ + 34.4698036, + -1.1046044 + ] + ] + }, + "id": "way/701851609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701882175", + "highway": "primary", + "oneway": "yes", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6258968, + -1.1617119 + ], + [ + 34.6258854, + -1.1616495 + ], + [ + 34.6258794, + -1.1615141 + ], + [ + 34.6258734, + -1.1612301 + ] + ] + }, + "id": "way/701882175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701882176", + "highway": "primary", + "oneway": "yes", + "ref": "C727", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6260075, + -1.1612654 + ], + [ + 34.6259504, + -1.1615482 + ], + [ + 34.6259236, + -1.1616582 + ], + [ + 34.6258968, + -1.1617119 + ] + ] + }, + "id": "way/701882176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701882177", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5422024, + -1.1208478 + ], + [ + 34.5423702, + -1.1209363 + ] + ] + }, + "id": "way/701882177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701882178", + "highway": "trunk", + "ref": "B1", + "source": "Africover" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5338581, + -1.1213975 + ], + [ + 34.5342109, + -1.1214552 + ], + [ + 34.5343262, + -1.1214632 + ], + [ + 34.5344804, + -1.1214579 + ], + [ + 34.5348988, + -1.1214364 + ], + [ + 34.535324, + -1.1213814 + ], + [ + 34.5356096, + -1.1213238 + ], + [ + 34.5368099, + -1.1211294 + ], + [ + 34.5387599, + -1.1208169 + ], + [ + 34.5395994, + -1.1206855 + ], + [ + 34.540337, + -1.1205635 + ], + [ + 34.5405865, + -1.120534 + ], + [ + 34.5408145, + -1.1205367 + ], + [ + 34.5410652, + -1.1205354 + ], + [ + 34.5412886, + -1.1205561 + ], + [ + 34.5415883, + -1.1206198 + ], + [ + 34.5419732, + -1.1207526 + ], + [ + 34.5422024, + -1.1208478 + ] + ] + }, + "id": "way/701882178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/706637732", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6441693, + -1.331259 + ], + [ + 34.6444631, + -1.3313006 + ] + ] + }, + "id": "way/706637732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/706637733", + "highway": "primary", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6258579, + -1.3195221 + ], + [ + 34.625866, + -1.3197876 + ], + [ + 34.6258339, + -1.3200784 + ], + [ + 34.6257643, + -1.3204413 + ], + [ + 34.6257211, + -1.3205679 + ], + [ + 34.6256778, + -1.3207307 + ], + [ + 34.6256648, + -1.3208682 + ], + [ + 34.6256876, + -1.3210627 + ], + [ + 34.6257533, + -1.3213214 + ], + [ + 34.6259505, + -1.3220146 + ], + [ + 34.6260086, + -1.3221532 + ], + [ + 34.6263139, + -1.3226729 + ], + [ + 34.6264776, + -1.3228365 + ], + [ + 34.6268584, + -1.3232641 + ], + [ + 34.6271185, + -1.323535 + ], + [ + 34.6273167, + -1.3237059 + ], + [ + 34.6274793, + -1.323842 + ], + [ + 34.6277864, + -1.3240163 + ], + [ + 34.6281271, + -1.3241464 + ], + [ + 34.6287948, + -1.3243529 + ], + [ + 34.6291637, + -1.3244239 + ], + [ + 34.6296599, + -1.324507 + ], + [ + 34.6299027, + -1.3245217 + ], + [ + 34.6302728, + -1.3245245 + ], + [ + 34.6304592, + -1.3245137 + ], + [ + 34.6306054, + -1.3244963 + ], + [ + 34.6307422, + -1.3244816 + ], + [ + 34.6309045, + -1.3244642 + ], + [ + 34.6310466, + -1.3244668 + ], + [ + 34.6311513, + -1.3244918 + ], + [ + 34.6312679, + -1.3245352 + ], + [ + 34.6314074, + -1.3246156 + ], + [ + 34.6314861, + -1.324658 + ], + [ + 34.6317441, + -1.3248181 + ], + [ + 34.6318916, + -1.3249119 + ], + [ + 34.6321974, + -1.3251358 + ], + [ + 34.6327874, + -1.325522 + ], + [ + 34.6328309, + -1.3255499 + ], + [ + 34.6328557, + -1.3255658 + ], + [ + 34.6334092, + -1.3259101 + ], + [ + 34.633496, + -1.3259727 + ], + [ + 34.6337611, + -1.326124 + ], + [ + 34.6339693, + -1.3262439 + ], + [ + 34.6343163, + -1.3264216 + ], + [ + 34.6347588, + -1.3266295 + ], + [ + 34.6349197, + -1.3267125 + ], + [ + 34.6351155, + -1.3267944 + ], + [ + 34.6353556, + -1.3268988 + ], + [ + 34.6355527, + -1.3269766 + ], + [ + 34.6357009, + -1.3270156 + ], + [ + 34.6359121, + -1.3270545 + ], + [ + 34.6361536, + -1.3270786 + ], + [ + 34.6365022, + -1.3270786 + ], + [ + 34.6370741, + -1.3270745 + ], + [ + 34.6374437, + -1.3270518 + ], + [ + 34.6377153, + -1.3270156 + ], + [ + 34.6377965, + -1.3270012 + ], + [ + 34.6379587, + -1.3269794 + ], + [ + 34.6381008, + -1.326958 + ], + [ + 34.6383261, + -1.3269244 + ], + [ + 34.6385032, + -1.3269016 + ], + [ + 34.6386493, + -1.3268949 + ], + [ + 34.6387553, + -1.3268855 + ], + [ + 34.6389564, + -1.326864 + ], + [ + 34.6391549, + -1.3268614 + ], + [ + 34.6392971, + -1.3268708 + ], + [ + 34.6393749, + -1.3268801 + ], + [ + 34.6394741, + -1.3268962 + ], + [ + 34.6395774, + -1.3269297 + ], + [ + 34.6396646, + -1.3269735 + ], + [ + 34.6398228, + -1.3270571 + ], + [ + 34.639973, + -1.3271724 + ], + [ + 34.6401876, + -1.3273574 + ], + [ + 34.6404371, + -1.3275908 + ], + [ + 34.6406396, + -1.3278455 + ], + [ + 34.640718, + -1.3279497 + ], + [ + 34.6408421, + -1.3281833 + ], + [ + 34.6408958, + -1.3283604 + ], + [ + 34.6409279, + -1.3285561 + ], + [ + 34.6409614, + -1.3287733 + ], + [ + 34.6410084, + -1.3289959 + ], + [ + 34.6410607, + -1.3292144 + ], + [ + 34.6410879, + -1.3293381 + ], + [ + 34.6411022, + -1.3294035 + ], + [ + 34.6411398, + -1.3295483 + ], + [ + 34.6411746, + -1.3296448 + ], + [ + 34.641239, + -1.3297601 + ], + [ + 34.6413114, + -1.3298218 + ], + [ + 34.6415716, + -1.3299531 + ], + [ + 34.6419015, + -1.3300832 + ], + [ + 34.6421253, + -1.3301629 + ], + [ + 34.6425416, + -1.3303174 + ], + [ + 34.6430817, + -1.3305209 + ], + [ + 34.6432587, + -1.3305953 + ], + [ + 34.6433531, + -1.3306328 + ], + [ + 34.6435028, + -1.3307321 + ], + [ + 34.6436288, + -1.3308796 + ], + [ + 34.6437711, + -1.3309975 + ], + [ + 34.6438985, + -1.3310954 + ], + [ + 34.6440728, + -1.3312215 + ], + [ + 34.6441693, + -1.331259 + ] + ] + }, + "id": "way/706637733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/706639590", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6626714, + -1.3387836 + ], + [ + 34.6628197, + -1.3387808 + ] + ] + }, + "id": "way/706639590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/706639591", + "highway": "primary", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6444631, + -1.3313006 + ], + [ + 34.6445771, + -1.3312912 + ], + [ + 34.6446857, + -1.3312442 + ], + [ + 34.6448346, + -1.3311772 + ], + [ + 34.6449405, + -1.3311169 + ], + [ + 34.6451202, + -1.331015 + ], + [ + 34.6452248, + -1.33096 + ], + [ + 34.6453375, + -1.3309399 + ], + [ + 34.6454555, + -1.3309305 + ], + [ + 34.6455883, + -1.3309426 + ], + [ + 34.6457344, + -1.3309828 + ], + [ + 34.6458256, + -1.3310311 + ], + [ + 34.6459141, + -1.3311035 + ], + [ + 34.6460268, + -1.3312483 + ], + [ + 34.6461422, + -1.3315191 + ], + [ + 34.6462629, + -1.3318168 + ], + [ + 34.6463245, + -1.3319683 + ], + [ + 34.646421, + -1.3321305 + ], + [ + 34.6465686, + -1.3322968 + ], + [ + 34.6466893, + -1.3323826 + ], + [ + 34.6468306, + -1.3324946 + ], + [ + 34.6469387, + -1.3325917 + ], + [ + 34.6469809, + -1.3326396 + ], + [ + 34.6471246, + -1.33281 + ], + [ + 34.6475006, + -1.3332098 + ], + [ + 34.6477635, + -1.3335061 + ], + [ + 34.6478776, + -1.3336026 + ], + [ + 34.648073, + -1.3337368 + ], + [ + 34.6482476, + -1.333836 + ], + [ + 34.6484515, + -1.3339298 + ], + [ + 34.6487224, + -1.3340576 + ], + [ + 34.6489906, + -1.334147 + ], + [ + 34.6492814, + -1.3342645 + ], + [ + 34.6496021, + -1.3343945 + ], + [ + 34.6501064, + -1.3345696 + ], + [ + 34.65034, + -1.3346114 + ], + [ + 34.650565, + -1.3346511 + ], + [ + 34.6507421, + -1.3346806 + ], + [ + 34.6509165, + -1.3347021 + ], + [ + 34.6510828, + -1.3346779 + ], + [ + 34.6512169, + -1.3346323 + ], + [ + 34.6513389, + -1.3345787 + ], + [ + 34.6514529, + -1.334517 + ], + [ + 34.651531, + -1.3344452 + ], + [ + 34.651705, + -1.3342851 + ], + [ + 34.6517962, + -1.3341979 + ], + [ + 34.6519759, + -1.3340156 + ], + [ + 34.6521234, + -1.3338922 + ], + [ + 34.6524184, + -1.3336563 + ], + [ + 34.6525821, + -1.3335249 + ], + [ + 34.6528557, + -1.3333533 + ], + [ + 34.6530944, + -1.3332125 + ], + [ + 34.6533761, + -1.3330847 + ], + [ + 34.6535434, + -1.3330028 + ], + [ + 34.6536523, + -1.332943 + ], + [ + 34.653769, + -1.3328853 + ], + [ + 34.6539916, + -1.3327982 + ], + [ + 34.6541713, + -1.3327137 + ], + [ + 34.6543758, + -1.3326399 + ], + [ + 34.654576, + -1.3325901 + ], + [ + 34.6547199, + -1.3325877 + ], + [ + 34.654758, + -1.3325916 + ], + [ + 34.6548378, + -1.3325998 + ], + [ + 34.6549559, + -1.3326426 + ], + [ + 34.6551034, + -1.332699 + ], + [ + 34.6554877, + -1.3329656 + ], + [ + 34.655857, + -1.3332902 + ], + [ + 34.6559992, + -1.333431 + ], + [ + 34.656179, + -1.3336 + ], + [ + 34.6563506, + -1.3337609 + ], + [ + 34.6564903, + -1.3338913 + ], + [ + 34.6566886, + -1.3340639 + ], + [ + 34.6568817, + -1.3342167 + ], + [ + 34.6570238, + -1.3343119 + ], + [ + 34.6573475, + -1.3345791 + ], + [ + 34.6575122, + -1.3347037 + ], + [ + 34.6576944, + -1.3348268 + ], + [ + 34.6580458, + -1.3351008 + ], + [ + 34.6582551, + -1.3352641 + ], + [ + 34.658397, + -1.3353732 + ], + [ + 34.658421, + -1.3353916 + ], + [ + 34.6585286, + -1.3354743 + ], + [ + 34.6587085, + -1.3356503 + ], + [ + 34.658766, + -1.3357036 + ], + [ + 34.6589813, + -1.3359608 + ], + [ + 34.6589929, + -1.3359728 + ], + [ + 34.6592984, + -1.3362747 + ], + [ + 34.6597895, + -1.3367855 + ], + [ + 34.6600052, + -1.3369987 + ], + [ + 34.6601327, + -1.337117 + ], + [ + 34.6603217, + -1.3372374 + ], + [ + 34.6606744, + -1.3375042 + ], + [ + 34.661011, + -1.3377603 + ], + [ + 34.6612914, + -1.3379859 + ], + [ + 34.6614368, + -1.3380859 + ], + [ + 34.6615273, + -1.3381464 + ], + [ + 34.6617258, + -1.3382993 + ], + [ + 34.6618411, + -1.3384427 + ], + [ + 34.6620141, + -1.3385567 + ], + [ + 34.6622099, + -1.3386532 + ], + [ + 34.6623842, + -1.3387216 + ], + [ + 34.662485, + -1.3387581 + ], + [ + 34.6625908, + -1.3387833 + ], + [ + 34.6626714, + -1.3387836 + ] + ] + }, + "id": "way/706639591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711371893", + "covered": "yes", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2073695, + -1.443224 + ], + [ + 35.2073066, + -1.4432237 + ], + [ + 35.2072436, + -1.4432234 + ] + ] + }, + "id": "way/711371893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711371894", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2079554, + -1.4432181 + ], + [ + 35.2076778, + -1.4432233 + ], + [ + 35.2073695, + -1.443224 + ] + ] + }, + "id": "way/711371894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/829837564", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2644493, + -1.3074861 + ], + [ + 35.2643803, + -1.3080065 + ], + [ + 35.2641426, + -1.3096391 + ], + [ + 35.2637798, + -1.3118477 + ], + [ + 35.2635974, + -1.3129605 + ], + [ + 35.2634268, + -1.314112 + ], + [ + 35.2627954, + -1.318227 + ], + [ + 35.2624199, + -1.3207476 + ], + [ + 35.2622374, + -1.3220245 + ], + [ + 35.2619646, + -1.3238272 + ], + [ + 35.2617195, + -1.3252833 + ], + [ + 35.2616179, + -1.3258076 + ], + [ + 35.2615294, + -1.3261696 + ], + [ + 35.261414, + -1.3265342 + ], + [ + 35.2609098, + -1.3277771 + ], + [ + 35.2608334, + -1.3279541 + ], + [ + 35.2605034, + -1.3286835 + ], + [ + 35.2603117, + -1.3291071 + ], + [ + 35.2600287, + -1.3297386 + ], + [ + 35.2597082, + -1.3304556 + ], + [ + 35.259439, + -1.3310016 + ], + [ + 35.2589676, + -1.3320684 + ], + [ + 35.2587527, + -1.3325709 + ], + [ + 35.2581766, + -1.3338681 + ], + [ + 35.2576246, + -1.3351686 + ], + [ + 35.257206, + -1.3361436 + ], + [ + 35.2561676, + -1.3384963 + ], + [ + 35.2558425, + -1.3392319 + ], + [ + 35.2557304, + -1.3394791 + ], + [ + 35.2552238, + -1.3404273 + ], + [ + 35.2546135, + -1.3417146 + ], + [ + 35.2540889, + -1.3427331 + ], + [ + 35.2536271, + -1.3436703 + ], + [ + 35.2530375, + -1.3448541 + ], + [ + 35.2523882, + -1.3461177 + ], + [ + 35.2516376, + -1.3475512 + ], + [ + 35.2513128, + -1.3481362 + ], + [ + 35.2511117, + -1.3485009 + ], + [ + 35.250814, + -1.3488522 + ], + [ + 35.2505028, + -1.3491579 + ], + [ + 35.247491, + -1.3518313 + ], + [ + 35.2446596, + -1.3541843 + ], + [ + 35.2442372, + -1.354561 + ], + [ + 35.2440025, + -1.3548292 + ], + [ + 35.2438389, + -1.3550477 + ], + [ + 35.2435862, + -1.3554333 + ], + [ + 35.2434942, + -1.3555639 + ], + [ + 35.2429971, + -1.3562996 + ], + [ + 35.2418461, + -1.3577298 + ], + [ + 35.2413871, + -1.3583065 + ], + [ + 35.2412265, + -1.3585083 + ], + [ + 35.2410718, + -1.3586975 + ], + [ + 35.2398089, + -1.360235 + ], + [ + 35.2395111, + -1.3606023 + ], + [ + 35.2392697, + -1.3608356 + ], + [ + 35.2390203, + -1.3610582 + ], + [ + 35.2386957, + -1.3613397 + ], + [ + 35.2382666, + -1.3616454 + ], + [ + 35.2375907, + -1.3620128 + ], + [ + 35.2367485, + -1.3624069 + ], + [ + 35.2365406, + -1.3625022 + ], + [ + 35.236434, + -1.3625524 + ], + [ + 35.2363723, + -1.3625819 + ], + [ + 35.2363206, + -1.3626101 + ], + [ + 35.2362724, + -1.3626422 + ], + [ + 35.236224, + -1.3626842 + ], + [ + 35.2361924, + -1.3627116 + ], + [ + 35.2361388, + -1.3627706 + ], + [ + 35.2361122, + -1.3628018 + ], + [ + 35.2360863, + -1.3628393 + ], + [ + 35.2360698, + -1.3628667 + ], + [ + 35.2360369, + -1.362926 + ], + [ + 35.2360223, + -1.3629496 + ], + [ + 35.2359502, + -1.3630433 + ], + [ + 35.2358818, + -1.3631298 + ], + [ + 35.2357915, + -1.3632467 + ], + [ + 35.2357521, + -1.3633012 + ], + [ + 35.2357275, + -1.3633361 + ], + [ + 35.2357072, + -1.3633706 + ], + [ + 35.2356864, + -1.3634118 + ], + [ + 35.2356477, + -1.3634858 + ], + [ + 35.23561, + -1.3635522 + ], + [ + 35.2355441, + -1.3636565 + ], + [ + 35.2355123, + -1.3636991 + ], + [ + 35.2354979, + -1.3637232 + ], + [ + 35.2354798, + -1.3637604 + ], + [ + 35.235461, + -1.3638 + ], + [ + 35.2354436, + -1.3638435 + ], + [ + 35.2354211, + -1.3638945 + ], + [ + 35.2353926, + -1.3639706 + ], + [ + 35.2353732, + -1.3640252 + ], + [ + 35.2353638, + -1.364057 + ], + [ + 35.2353581, + -1.3640912 + ], + [ + 35.2353567, + -1.3641144 + ], + [ + 35.2353584, + -1.3641486 + ], + [ + 35.2353792, + -1.3642954 + ], + [ + 35.2354167, + -1.3645065 + ], + [ + 35.2354529, + -1.3647224 + ], + [ + 35.235469, + -1.3648082 + ], + [ + 35.2355026, + -1.3649543 + ], + [ + 35.2355488, + -1.3651548 + ], + [ + 35.23557, + -1.3652731 + ], + [ + 35.235585, + -1.3653472 + ], + [ + 35.2356025, + -1.365439 + ], + [ + 35.2356192, + -1.3655228 + ], + [ + 35.2356441, + -1.3656321 + ], + [ + 35.2356796, + -1.3658171 + ], + [ + 35.2357232, + -1.3660577 + ], + [ + 35.235756, + -1.3662227 + ], + [ + 35.2357868, + -1.3663809 + ], + [ + 35.2358244, + -1.3665686 + ], + [ + 35.2358741, + -1.3668488 + ], + [ + 35.2359632, + -1.3672812 + ], + [ + 35.2360591, + -1.3677216 + ], + [ + 35.2361731, + -1.3682009 + ], + [ + 35.236216, + -1.3683745 + ], + [ + 35.2362442, + -1.3684771 + ], + [ + 35.2363233, + -1.3687915 + ], + [ + 35.2363998, + -1.3691267 + ], + [ + 35.236465, + -1.3694054 + ], + [ + 35.2365111, + -1.3695852 + ], + [ + 35.2365822, + -1.3698882 + ], + [ + 35.2366204, + -1.3700337 + ], + [ + 35.236676, + -1.3702046 + ], + [ + 35.2367243, + -1.3703883 + ], + [ + 35.2367739, + -1.3705746 + ], + [ + 35.2368517, + -1.3708458 + ], + [ + 35.2368772, + -1.370938 + ], + [ + 35.2369067, + -1.3710667 + ], + [ + 35.2369127, + -1.3711042 + ], + [ + 35.2369362, + -1.3712544 + ], + [ + 35.2369952, + -1.3715707 + ], + [ + 35.2370073, + -1.3716848 + ], + [ + 35.23701, + -1.3717572 + ], + [ + 35.2370113, + -1.3718416 + ], + [ + 35.2370073, + -1.3719087 + ], + [ + 35.2369939, + -1.3719851 + ], + [ + 35.2369831, + -1.3720414 + ], + [ + 35.236959, + -1.3721138 + ], + [ + 35.2369282, + -1.3721701 + ], + [ + 35.2368812, + -1.3722385 + ], + [ + 35.2368276, + -1.3722975 + ], + [ + 35.2367659, + -1.3723565 + ], + [ + 35.2366532, + -1.372449 + ], + [ + 35.2362455, + -1.3727868 + ], + [ + 35.2361007, + -1.3728981 + ], + [ + 35.2359264, + -1.3730416 + ], + [ + 35.2357037, + -1.3732494 + ], + [ + 35.2356528, + -1.3732976 + ], + [ + 35.2355777, + -1.3733848 + ], + [ + 35.2353527, + -1.3736349 + ], + [ + 35.2351123, + -1.3738902 + ], + [ + 35.2347113, + -1.3743233 + ], + [ + 35.2343599, + -1.3747175 + ], + [ + 35.2341172, + -1.3749816 + ], + [ + 35.2339053, + -1.3752055 + ], + [ + 35.2335472, + -1.3755795 + ], + [ + 35.233271, + -1.3758799 + ], + [ + 35.2329585, + -1.3762405 + ], + [ + 35.2327184, + -1.3765315 + ], + [ + 35.232583, + -1.3766923 + ], + [ + 35.2325079, + -1.3767781 + ], + [ + 35.2323912, + -1.3769028 + ], + [ + 35.2322142, + -1.3771026 + ], + [ + 35.2319168, + -1.3774525 + ], + [ + 35.2317367, + -1.3776751 + ], + [ + 35.2315249, + -1.3779298 + ], + [ + 35.2313237, + -1.3781765 + ], + [ + 35.2311547, + -1.3783964 + ], + [ + 35.2309187, + -1.3787302 + ], + [ + 35.230802, + -1.3788831 + ], + [ + 35.2305821, + -1.3791847 + ], + [ + 35.2304091, + -1.3794301 + ], + [ + 35.2301596, + -1.3797907 + ], + [ + 35.2300027, + -1.3800435 + ], + [ + 35.2299759, + -1.3800884 + ], + [ + 35.229874, + -1.3802834 + ], + [ + 35.229825, + -1.380386 + ], + [ + 35.2297211, + -1.3806019 + ], + [ + 35.2296205, + -1.3808298 + ], + [ + 35.2295226, + -1.3810503 + ], + [ + 35.2294227, + -1.3812568 + ], + [ + 35.2291545, + -1.3818373 + ], + [ + 35.2289969, + -1.3821584 + ], + [ + 35.2288547, + -1.3824521 + ], + [ + 35.2286603, + -1.3828355 + ], + [ + 35.2277765, + -1.3846911 + ], + [ + 35.2276571, + -1.3849619 + ], + [ + 35.2274975, + -1.3853131 + ], + [ + 35.2264059, + -1.3876433 + ], + [ + 35.2262731, + -1.3879007 + ], + [ + 35.2260518, + -1.3883552 + ], + [ + 35.2258399, + -1.3887842 + ], + [ + 35.225683, + -1.3891241 + ], + [ + 35.2255221, + -1.3894868 + ], + [ + 35.225329, + -1.3899359 + ], + [ + 35.2252565, + -1.3900948 + ], + [ + 35.2252069, + -1.3902282 + ], + [ + 35.2251801, + -1.3903247 + ], + [ + 35.2251573, + -1.3904507 + ], + [ + 35.2251466, + -1.3905312 + ], + [ + 35.2251452, + -1.390621 + ], + [ + 35.2251425, + -1.3908087 + ], + [ + 35.2251546, + -1.3910568 + ], + [ + 35.225223, + -1.3917164 + ], + [ + 35.2252471, + -1.392014 + ], + [ + 35.2252646, + -1.3924176 + ], + [ + 35.2252766, + -1.392734 + ], + [ + 35.2253155, + -1.3936778 + ], + [ + 35.2253316, + -1.3943307 + ], + [ + 35.225329, + -1.3952853 + ], + [ + 35.2253048, + -1.3962386 + ], + [ + 35.2252753, + -1.3976839 + ], + [ + 35.2252337, + -1.3985835 + ], + [ + 35.2252123, + -1.399282 + ], + [ + 35.2251948, + -1.3997552 + ], + [ + 35.2251859, + -1.3999039 + ], + [ + 35.2251667, + -1.4002245 + ], + [ + 35.22516, + -1.40049 + ], + [ + 35.2251626, + -1.4005664 + ], + [ + 35.22516, + -1.4007976 + ], + [ + 35.225164, + -1.4010189 + ], + [ + 35.22516, + -1.4011275 + ], + [ + 35.2251425, + -1.4014566 + ], + [ + 35.2250889, + -1.4022892 + ], + [ + 35.2250446, + -1.40317 + ], + [ + 35.2250218, + -1.403528 + ], + [ + 35.2250017, + -1.4038203 + ], + [ + 35.2249762, + -1.4042707 + ], + [ + 35.2249454, + -1.4046743 + ], + [ + 35.224932, + -1.404921 + ], + [ + 35.224928, + -1.4052374 + ], + [ + 35.2249199, + -1.4056034 + ], + [ + 35.2249226, + -1.4059399 + ], + [ + 35.2249199, + -1.4062255 + ], + [ + 35.2249146, + -1.406559 + ], + [ + 35.2249145, + -1.4074388 + ], + [ + 35.2249253, + -1.4077069 + ], + [ + 35.2249494, + -1.4081547 + ], + [ + 35.2251978, + -1.4098407 + ], + [ + 35.2254805, + -1.4117934 + ], + [ + 35.225569, + -1.4125522 + ], + [ + 35.2255851, + -1.413126 + ], + [ + 35.2255771, + -1.4134746 + ], + [ + 35.2253759, + -1.4147912 + ], + [ + 35.2247456, + -1.4178748 + ], + [ + 35.224472, + -1.4191645 + ], + [ + 35.2244049, + -1.4196338 + ], + [ + 35.2243687, + -1.4202512 + ], + [ + 35.2243459, + -1.4216421 + ], + [ + 35.224295, + -1.4222267 + ], + [ + 35.2241287, + -1.423066 + ], + [ + 35.2239543, + -1.4237202 + ], + [ + 35.2236968, + -1.4245622 + ], + [ + 35.2234876, + -1.4251253 + ], + [ + 35.2230075, + -1.4262005 + ], + [ + 35.2224778, + -1.42745 + ], + [ + 35.2219641, + -1.4285507 + ], + [ + 35.2212279, + -1.4300657 + ], + [ + 35.2210307, + -1.4305443 + ], + [ + 35.2207839, + -1.4312053 + ], + [ + 35.220273, + -1.4325607 + ], + [ + 35.2200805, + -1.432981 + ], + [ + 35.2199619, + -1.4332337 + ], + [ + 35.2198653, + -1.433589 + ], + [ + 35.2195729, + -1.4346334 + ], + [ + 35.2193986, + -1.4352474 + ], + [ + 35.2192765, + -1.4355933 + ], + [ + 35.2191398, + -1.4360215 + ], + [ + 35.2183901, + -1.4383726 + ], + [ + 35.2180769, + -1.4393144 + ], + [ + 35.2178027, + -1.4399392 + ] + ] + }, + "id": "way/829837564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/829837565", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2644635, + -1.307423 + ], + [ + 35.2644493, + -1.3074861 + ] + ] + }, + "id": "way/829837565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930444697", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2178027, + -1.4399392 + ], + [ + 35.2176096, + -1.4401496 + ] + ] + }, + "id": "way/930444697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930444698", + "highway": "secondary", + "ref": "C14", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2176096, + -1.4401496 + ], + [ + 35.217564, + -1.4402951 + ], + [ + 35.2173551, + -1.4404691 + ], + [ + 35.2171442, + -1.4406199 + ], + [ + 35.2169031, + -1.4407483 + ], + [ + 35.2167006, + -1.440827 + ], + [ + 35.2166118, + -1.4408528 + ], + [ + 35.2159385, + -1.4410137 + ], + [ + 35.2154438, + -1.4410865 + ], + [ + 35.2150289, + -1.4411016 + ], + [ + 35.2146802, + -1.441162 + ], + [ + 35.214405, + -1.4412031 + ], + [ + 35.2137963, + -1.4413724 + ], + [ + 35.2133479, + -1.4415342 + ], + [ + 35.2126135, + -1.4417447 + ], + [ + 35.2120621, + -1.4419674 + ], + [ + 35.211309, + -1.4423341 + ], + [ + 35.2108195, + -1.4425865 + ], + [ + 35.2102322, + -1.4428415 + ], + [ + 35.2097117, + -1.443004 + ], + [ + 35.2092482, + -1.4431073 + ], + [ + 35.2087693, + -1.4432231 + ], + [ + 35.2085769, + -1.4432163 + ], + [ + 35.2083097, + -1.4432154 + ] + ] + }, + "id": "way/930444698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060696", + "highway": "secondary", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0365602, + -2.0320688 + ], + [ + 34.0366021, + -2.0320459 + ], + [ + 34.0368006, + -2.0319521 + ], + [ + 34.036936, + -2.0318878 + ], + [ + 34.0373048, + -2.0317162 + ], + [ + 34.0399048, + -2.0305543 + ], + [ + 34.0442598, + -2.0286001 + ], + [ + 34.0463921, + -2.0276039 + ] + ] + }, + "id": "way/939060696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060697", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9973475, + -2.0465576 + ], + [ + 33.9974175, + -2.0465103 + ] + ] + }, + "id": "way/939060697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060698", + "highway": "secondary", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9974175, + -2.0465103 + ], + [ + 33.9992765, + -2.0452525 + ], + [ + 34.0004974, + -2.0444351 + ], + [ + 34.0012304, + -2.0440144 + ], + [ + 34.0016368, + -2.0437812 + ], + [ + 34.0019304, + -2.0436292 + ], + [ + 34.0032245, + -2.0429249 + ], + [ + 34.0039515, + -2.04252 + ], + [ + 34.0043807, + -2.0422493 + ], + [ + 34.0046988, + -2.0420079 + ], + [ + 34.0060088, + -2.0408715 + ], + [ + 34.0064085, + -2.0405391 + ], + [ + 34.006725, + -2.0403193 + ], + [ + 34.0071848, + -2.0400265 + ], + [ + 34.0078057, + -2.0397459 + ], + [ + 34.0081947, + -2.0395824 + ], + [ + 34.0085014, + -2.0394936 + ], + [ + 34.0099435, + -2.0393063 + ], + [ + 34.0113822, + -2.039033 + ], + [ + 34.0127982, + -2.038683 + ], + [ + 34.0135733, + -2.0385249 + ], + [ + 34.0140139, + -2.038443 + ], + [ + 34.0142533, + -2.0384152 + ] + ] + }, + "id": "way/939060698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060699", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0142533, + -2.0384152 + ], + [ + 34.0143359, + -2.0384055 + ] + ] + }, + "id": "way/939060699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060700", + "highway": "secondary", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0143359, + -2.0384055 + ], + [ + 34.0143827, + -2.0384001 + ], + [ + 34.0152448, + -2.0383749 + ], + [ + 34.0161022, + -2.0383574 + ], + [ + 34.0162297, + -2.0383609 + ], + [ + 34.0171326, + -2.0384043 + ], + [ + 34.0186839, + -2.0383661 + ], + [ + 34.0187701, + -2.0383608 + ], + [ + 34.0199344, + -2.0382289 + ], + [ + 34.0205283, + -2.0381536 + ], + [ + 34.0211358, + -2.038043 + ], + [ + 34.0216817, + -2.0378936 + ], + [ + 34.022212, + -2.0376875 + ], + [ + 34.0223864, + -2.0376174 + ], + [ + 34.024808, + -2.0369237 + ], + [ + 34.0257792, + -2.0366446 + ], + [ + 34.0263414, + -2.0364276 + ], + [ + 34.0267168, + -2.0362846 + ], + [ + 34.0276502, + -2.0358978 + ], + [ + 34.0277507, + -2.0358643 + ] + ] + }, + "id": "way/939060700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060701", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0277507, + -2.0358643 + ], + [ + 34.0278277, + -2.0358387 + ] + ] + }, + "id": "way/939060701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060703", + "highway": "secondary", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0278277, + -2.0358387 + ], + [ + 34.0278634, + -2.0358268 + ], + [ + 34.03077, + -2.034804 + ], + [ + 34.0309216, + -2.0347503 + ], + [ + 34.0323454, + -2.0342265 + ], + [ + 34.0336365, + -2.0336058 + ], + [ + 34.0348582, + -2.0329685 + ], + [ + 34.0359926, + -2.0323783 + ], + [ + 34.0364883, + -2.0321079 + ] + ] + }, + "id": "way/939060703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/939060704", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R197", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.0364883, + -2.0321079 + ], + [ + 34.0365602, + -2.0320688 + ] + ] + }, + "id": "way/939060704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003716003", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8186637, + -2.3853555 + ], + [ + 34.8185096, + -2.385755 + ], + [ + 34.8183273, + -2.3861056 + ], + [ + 34.818061, + -2.3866177 + ], + [ + 34.8176935, + -2.387289 + ], + [ + 34.816703, + -2.3888958 + ], + [ + 34.8142476, + -2.3925222 + ], + [ + 34.8127073, + -2.3949146 + ], + [ + 34.8120555, + -2.3959115 + ], + [ + 34.8112884, + -2.3968602 + ], + [ + 34.8111436, + -2.3971148 + ], + [ + 34.8110148, + -2.3974551 + ], + [ + 34.810921, + -2.3977874 + ], + [ + 34.8108298, + -2.3983877 + ], + [ + 34.8106903, + -2.3991622 + ], + [ + 34.8105728, + -2.4000338 + ], + [ + 34.8105571, + -2.4001567 + ] + ] + }, + "id": "way/1003716003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003716004", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "old_ref": "B144", + "ref": "T17", + "source": "survey", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8105571, + -2.4001567 + ], + [ + 34.8105465, + -2.4002394 + ] + ] + }, + "id": "way/1003716004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1005546894", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6494375, + -1.808004 + ], + [ + 34.6497963, + -1.8084015 + ], + [ + 34.6499562, + -1.8085787 + ], + [ + 34.6502539, + -1.8088441 + ], + [ + 34.6508333, + -1.8093347 + ], + [ + 34.6510022, + -1.8094875 + ], + [ + 34.6511417, + -1.8096242 + ], + [ + 34.6515789, + -1.8098521 + ], + [ + 34.6518257, + -1.8100022 + ], + [ + 34.6527242, + -1.810592 + ], + [ + 34.6531164, + -1.8108106 + ], + [ + 34.6532231, + -1.8108685 + ], + [ + 34.653693, + -1.8111232 + ], + [ + 34.6542087, + -1.8114745 + ], + [ + 34.6542347, + -1.8114922 + ], + [ + 34.6545942, + -1.8116783 + ], + [ + 34.6553772, + -1.8121322 + ] + ] + }, + "id": "way/1005546894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1005546895", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6493831, + -1.8079436 + ], + [ + 34.6494375, + -1.808004 + ] + ] + }, + "id": "way/1005546895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1005546897", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6437657, + -1.8016674 + ], + [ + 34.643889, + -1.8018872 + ], + [ + 34.6441318, + -1.8022143 + ], + [ + 34.6443097, + -1.8023879 + ], + [ + 34.6444121, + -1.8024878 + ], + [ + 34.6446534, + -1.8027424 + ], + [ + 34.6450961, + -1.8032571 + ], + [ + 34.6464972, + -1.8047729 + ], + [ + 34.6469844, + -1.8053 + ], + [ + 34.6475262, + -1.8058602 + ] + ] + }, + "id": "way/1005546897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1005546898", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6475262, + -1.8058602 + ], + [ + 34.648414, + -1.8068334 + ], + [ + 34.6492642, + -1.8078119 + ], + [ + 34.6493831, + -1.8079436 + ] + ] + }, + "id": "way/1005546898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1005825294", + "highway": "secondary", + "ref": "R183", + "source": "Tanroads", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6553772, + -1.8121322 + ], + [ + 34.6556773, + -1.8123614 + ], + [ + 34.6560341, + -1.812604 + ], + [ + 34.6563586, + -1.81286 + ], + [ + 34.6565918, + -1.8130215 + ], + [ + 34.6567823, + -1.8131535 + ], + [ + 34.6571845, + -1.813522 + ], + [ + 34.6573711, + -1.8136529 + ], + [ + 34.6576209, + -1.8138385 + ], + [ + 34.657771, + -1.8138786 + ] + ] + }, + "id": "way/1005825294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1053286910", + "highway": "secondary", + "oneway": "yes", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8063033, + -1.4968451 + ], + [ + 33.8060918, + -1.4968736 + ] + ] + }, + "id": "way/1053286910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1053286911", + "highway": "secondary", + "oneway": "yes", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8060918, + -1.4968736 + ], + [ + 33.8062906, + -1.4967476 + ] + ] + }, + "id": "way/1053286911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1053286916", + "highway": "secondary", + "junction": "roundabout", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8018057, + -1.4942658 + ], + [ + 33.8018396, + -1.4942817 + ], + [ + 33.8018629, + -1.4943111 + ], + [ + 33.8018669, + -1.4943215 + ], + [ + 33.8018696, + -1.4943325 + ], + [ + 33.8018679, + -1.4943675 + ], + [ + 33.8018517, + -1.4943987 + ], + [ + 33.801824, + -1.4944202 + ], + [ + 33.8017984, + -1.4944276 + ], + [ + 33.8017717, + -1.4944265 + ], + [ + 33.80174, + -1.4944123 + ], + [ + 33.8017169, + -1.4943863 + ], + [ + 33.8017067, + -1.4943531 + ], + [ + 33.8017125, + -1.494315 + ], + [ + 33.801735, + -1.4942837 + ], + [ + 33.8017683, + -1.4942665 + ], + [ + 33.8018057, + -1.4942658 + ] + ] + }, + "id": "way/1053286916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1057799613", + "highway": "secondary", + "oneway": "yes", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8019409, + -1.4945156 + ], + [ + 33.8018702, + -1.4944536 + ], + [ + 33.8018451, + -1.4944333 + ], + [ + 33.801824, + -1.4944202 + ] + ] + }, + "id": "way/1057799613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1057799614", + "highway": "secondary", + "oneway": "yes", + "ref": "R186", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.8017717, + -1.4944265 + ], + [ + 33.8017646, + -1.4944326 + ], + [ + 33.8016754, + -1.4944914 + ] + ] + }, + "id": "way/1057799614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1066026114", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "ref": "B1", + "source": "Africover", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.3392766, + -1.1196846 + ], + [ + 35.3391931, + -1.1197161 + ] + ] + }, + "id": "way/1066026114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173958586", + "highway": "secondary", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.1774214, + -1.9290442 + ], + [ + 35.177249, + -1.9293164 + ], + [ + 35.1770481, + -1.9296613 + ], + [ + 35.1768511, + -1.9301065 + ], + [ + 35.1766412, + -1.9308622 + ], + [ + 35.1763761, + -1.9323144 + ], + [ + 35.1763282, + -1.9329424 + ], + [ + 35.1763593, + -1.9335974 + ], + [ + 35.1763941, + -1.9342572 + ], + [ + 35.1766052, + -1.9355219 + ], + [ + 35.1766966, + -1.9361499 + ], + [ + 35.1767514, + -1.9369198 + ], + [ + 35.1767564, + -1.9382796 + ], + [ + 35.1768147, + -1.9397154 + ], + [ + 35.1768655, + -1.9404405 + ], + [ + 35.1769325, + -1.9407944 + ], + [ + 35.1772195, + -1.9419524 + ], + [ + 35.1772554, + -1.9421787 + ], + [ + 35.1772141, + -1.9423451 + ], + [ + 35.1771337, + -1.9424859 + ], + [ + 35.1770237, + -1.942565 + ], + [ + 35.1768936, + -1.9426427 + ], + [ + 35.1763666, + -1.9428531 + ], + [ + 35.176034, + -1.9429925 + ] + ] + }, + "id": "way/1173958586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173958587", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.1775033, + -1.928937 + ], + [ + 35.1774214, + -1.9290442 + ] + ] + }, + "id": "way/1173958587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173958588", + "highway": "secondary", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.1862807, + -1.9139774 + ], + [ + 35.1862601, + -1.9141058 + ], + [ + 35.18617, + -1.9145866 + ], + [ + 35.1860681, + -1.9149069 + ], + [ + 35.1858965, + -1.9153734 + ], + [ + 35.1853895, + -1.9168987 + ], + [ + 35.1850381, + -1.9177565 + ], + [ + 35.1846465, + -1.9185045 + ], + [ + 35.1836568, + -1.9197403 + ], + [ + 35.1833323, + -1.9201531 + ], + [ + 35.183005, + -1.9204935 + ], + [ + 35.1825947, + -1.9209198 + ], + [ + 35.1820683, + -1.921375 + ], + [ + 35.1807949, + -1.9223421 + ], + [ + 35.1803459, + -1.922785 + ], + [ + 35.1799171, + -1.9233724 + ], + [ + 35.1791801, + -1.9246401 + ], + [ + 35.1789712, + -1.925039 + ], + [ + 35.1788447, + -1.9254339 + ], + [ + 35.1786369, + -1.9269239 + ], + [ + 35.1785234, + -1.9273043 + ], + [ + 35.1783604, + -1.9276182 + ], + [ + 35.1778754, + -1.9283693 + ], + [ + 35.1775714, + -1.9288664 + ], + [ + 35.1775033, + -1.928937 + ] + ] + }, + "id": "way/1173958588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173958589", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.1862835, + -1.9139068 + ], + [ + 35.1862807, + -1.9139774 + ] + ] + }, + "id": "way/1173958589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173958592", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2180941, + -1.8700182 + ], + [ + 35.2180428, + -1.8700596 + ] + ] + }, + "id": "way/1173958592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1174509433", + "highway": "secondary", + "old_ref": "B144", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2264924, + -1.8634542 + ], + [ + 35.2265751, + -1.8633773 + ], + [ + 35.2266396, + -1.8632934 + ], + [ + 35.2267523, + -1.8631221 + ], + [ + 35.2267726, + -1.8629419 + ], + [ + 35.2267376, + -1.8627464 + ], + [ + 35.2260157, + -1.8604584 + ], + [ + 35.2254757, + -1.8581065 + ], + [ + 35.2251777, + -1.856552 + ], + [ + 35.2250264, + -1.8559149 + ], + [ + 35.2249863, + -1.8558144 + ], + [ + 35.2246946, + -1.8550827 + ], + [ + 35.2240735, + -1.8540745 + ], + [ + 35.2237265, + -1.8534668 + ], + [ + 35.223044, + -1.8521306 + ], + [ + 35.2226711, + -1.851742 + ], + [ + 35.2211517, + -1.8499117 + ] + ] + }, + "id": "way/1174509433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1174509434", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "old_ref": "B144", + "source": "Africover", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 35.2211517, + -1.8499117 + ], + [ + 35.2211206, + -1.8498728 + ] + ] + }, + "id": "way/1174509434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175001913", + "highway": "primary", + "ref": "C727", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6628197, + -1.3387808 + ], + [ + 34.6629891, + -1.338739 + ], + [ + 34.663146, + -1.3386894 + ], + [ + 34.6633364, + -1.3386344 + ], + [ + 34.6634786, + -1.3385915 + ], + [ + 34.6637122, + -1.3385557 + ], + [ + 34.6638085, + -1.3385513 + ], + [ + 34.6639238, + -1.3385513 + ], + [ + 34.6640056, + -1.3385647 + ], + [ + 34.6640836, + -1.3385919 + ], + [ + 34.6641504, + -1.3386337 + ], + [ + 34.6643221, + -1.3388154 + ], + [ + 34.6644375, + -1.3389254 + ], + [ + 34.6645329, + -1.3390397 + ], + [ + 34.6646547, + -1.3391587 + ], + [ + 34.6647862, + -1.3392646 + ], + [ + 34.6649149, + -1.3393544 + ], + [ + 34.6650707, + -1.3394526 + ], + [ + 34.6652234, + -1.3395314 + ], + [ + 34.6653709, + -1.3395823 + ], + [ + 34.6654996, + -1.3396065 + ], + [ + 34.6656311, + -1.3396118 + ], + [ + 34.6657357, + -1.3396145 + ], + [ + 34.6660012, + -1.3396091 + ], + [ + 34.6661688, + -1.3395998 + ], + [ + 34.6663579, + -1.3395716 + ], + [ + 34.6665537, + -1.3394885 + ], + [ + 34.6667643, + -1.3393855 + ], + [ + 34.6668555, + -1.3393263 + ], + [ + 34.6669427, + -1.3392471 + ], + [ + 34.6673074, + -1.3388892 + ], + [ + 34.6674657, + -1.3387216 + ], + [ + 34.6680799, + -1.3380727 + ], + [ + 34.6685708, + -1.3375793 + ], + [ + 34.6690804, + -1.3370564 + ], + [ + 34.6692842, + -1.3368231 + ], + [ + 34.6695873, + -1.336508 + ], + [ + 34.6697281, + -1.3363498 + ], + [ + 34.6698408, + -1.3362131 + ], + [ + 34.6700381, + -1.3359961 + ], + [ + 34.6701559, + -1.3358873 + ], + [ + 34.6703115, + -1.3357505 + ], + [ + 34.6704966, + -1.3355977 + ], + [ + 34.6706776, + -1.335473 + ], + [ + 34.6708614, + -1.3353617 + ], + [ + 34.671367, + -1.3350922 + ], + [ + 34.671827, + -1.3348388 + ], + [ + 34.672146, + -1.3346753 + ], + [ + 34.6722188, + -1.3346233 + ], + [ + 34.6725002, + -1.3345425 + ], + [ + 34.6727537, + -1.3344862 + ], + [ + 34.6733211, + -1.3343552 + ], + [ + 34.6734607, + -1.334331 + ], + [ + 34.6738413, + -1.3342341 + ], + [ + 34.6744209, + -1.3340575 + ], + [ + 34.6748015, + -1.3339552 + ], + [ + 34.6758961, + -1.3336178 + ], + [ + 34.6760622, + -1.3335611 + ], + [ + 34.6764578, + -1.3334337 + ], + [ + 34.6771203, + -1.3331749 + ], + [ + 34.6780255, + -1.3327942 + ], + [ + 34.6782348, + -1.3327097 + ], + [ + 34.6783434, + -1.3326628 + ], + [ + 34.6786237, + -1.332589 + ], + [ + 34.6788089, + -1.3325384 + ], + [ + 34.6789, + -1.3325194 + ], + [ + 34.678994, + -1.3325136 + ], + [ + 34.6791501, + -1.3325066 + ], + [ + 34.6793436, + -1.3325049 + ], + [ + 34.6796161, + -1.3325126 + ], + [ + 34.6798697, + -1.3325302 + ], + [ + 34.6800938, + -1.3325599 + ], + [ + 34.6805484, + -1.3326487 + ], + [ + 34.6810108, + -1.332762 + ], + [ + 34.6814917, + -1.3328717 + ], + [ + 34.6816695, + -1.3329004 + ], + [ + 34.6818803, + -1.3329313 + ], + [ + 34.6825907, + -1.3330543 + ], + [ + 34.6833333, + -1.3331334 + ], + [ + 34.6836941, + -1.3331992 + ], + [ + 34.6840049, + -1.3332649 + ], + [ + 34.6842268, + -1.3333313 + ], + [ + 34.6843936, + -1.3333917 + ], + [ + 34.6844977, + -1.3334934 + ], + [ + 34.6846622, + -1.3337003 + ], + [ + 34.6851414, + -1.3343937 + ], + [ + 34.6855762, + -1.3350041 + ], + [ + 34.6858801, + -1.3353514 + ], + [ + 34.6863245, + -1.335846 + ], + [ + 34.6866437, + -1.3362375 + ], + [ + 34.6868985, + -1.3366194 + ], + [ + 34.6870624, + -1.3368184 + ], + [ + 34.6871772, + -1.3369304 + ], + [ + 34.687333, + -1.3370378 + ], + [ + 34.6880134, + -1.3374454 + ], + [ + 34.688163, + -1.337538 + ], + [ + 34.6892362, + -1.3382021 + ], + [ + 34.6898068, + -1.3386236 + ], + [ + 34.6900748, + -1.3388499 + ], + [ + 34.6903246, + -1.3390918 + ], + [ + 34.6903704, + -1.3391855 + ], + [ + 34.6904329, + -1.3393049 + ], + [ + 34.6904417, + -1.3394545 + ], + [ + 34.6904401, + -1.3396239 + ], + [ + 34.6904241, + -1.3397593 + ], + [ + 34.6903811, + -1.3399832 + ], + [ + 34.6903342, + -1.3401642 + ], + [ + 34.6902443, + -1.3405343 + ], + [ + 34.690218, + -1.3406879 + ] + ] + }, + "id": "way/1175001913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232326472", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "highway": "primary", + "horse": "no", + "maxspeed": "50", + "motor_vehicle": "permissive", + "old_ref": "B144", + "ref": "T17", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "gravel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.9871676, + -2.8089507 + ], + [ + 34.987997, + -2.8107784 + ], + [ + 34.9940599, + -2.8238266 + ], + [ + 34.994175, + -2.824166 + ], + [ + 34.9942161, + -2.8245081 + ], + [ + 34.9944518, + -2.8276364 + ], + [ + 34.9945504, + -2.8301379 + ], + [ + 34.9946052, + -2.8304363 + ], + [ + 34.994734, + -2.8307483 + ], + [ + 34.9949122, + -2.8309754 + ], + [ + 34.9952382, + -2.8312546 + ], + [ + 34.9961507, + -2.8315912 + ], + [ + 34.9965645, + -2.8317993 + ], + [ + 34.9967742, + -2.8319594 + ], + [ + 34.9968701, + -2.8320456 + ], + [ + 34.996981, + -2.8321674 + ], + [ + 34.9970769, + -2.8322262 + ], + [ + 34.9971701, + -2.8322317 + ], + [ + 34.9973921, + -2.8322153 + ], + [ + 34.997636, + -2.8321728 + ], + [ + 34.9977908, + -2.8321468 + ], + [ + 34.9979141, + -2.8321441 + ], + [ + 34.9981626, + -2.8322014 + ] + ] + }, + "id": "way/1232326472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1347251297", + "highway": "trunk", + "ref": "T36", + "sidewalk": "yes", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9819757, + -2.8118189 + ], + [ + 33.9820758, + -2.8116505 + ], + [ + 33.9822152, + -2.8114138 + ], + [ + 33.9824247, + -2.8110579 + ], + [ + 33.9824582, + -2.811001 + ], + [ + 33.9827468, + -2.8105276 + ], + [ + 33.9829049, + -2.8102523 + ], + [ + 33.9830584, + -2.8099521 + ], + [ + 33.9833937, + -2.8094008 + ], + [ + 33.9840085, + -2.808296 + ], + [ + 33.9844027, + -2.8075719 + ], + [ + 33.9848274, + -2.8067084 + ], + [ + 33.9849881, + -2.806383 + ], + [ + 33.9851519, + -2.8060333 + ], + [ + 33.9854979, + -2.805318 + ], + [ + 33.9855988, + -2.805108 + ], + [ + 33.985852, + -2.8046965 + ], + [ + 33.986104, + -2.8042361 + ] + ] + }, + "id": "way/1347251297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1347251298", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9862805, + -2.80359 + ], + [ + 33.9863443, + -2.8035956 + ], + [ + 33.9864023, + -2.8036225 + ], + [ + 33.9864445, + -2.8036625 + ], + [ + 33.9864545, + -2.8036812 + ] + ] + }, + "id": "way/1347251298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143853", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9861418, + -2.8038788 + ], + [ + 33.9861158, + -2.8038203 + ] + ] + }, + "id": "way/1396143853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143854", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "sidewalk": "yes", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9863584, + -2.8039505 + ], + [ + 33.9862302, + -2.8040857 + ], + [ + 33.9861739, + -2.804158 + ], + [ + 33.986104, + -2.8042361 + ] + ] + }, + "id": "way/1396143854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143855", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "sidewalk": "yes", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.986104, + -2.8042361 + ], + [ + 33.9861082, + -2.8041232 + ], + [ + 33.9861283, + -2.8040067 + ], + [ + 33.9861418, + -2.8038788 + ] + ] + }, + "id": "way/1396143855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143856", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9861158, + -2.8038203 + ], + [ + 33.9861113, + -2.8037564 + ], + [ + 33.9861286, + -2.8036949 + ], + [ + 33.9861659, + -2.8036428 + ] + ] + }, + "id": "way/1396143856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143857", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9863584, + -2.8039505 + ], + [ + 33.9863011, + -2.803961 + ], + [ + 33.9862435, + -2.8039534 + ], + [ + 33.9861861, + -2.803925 + ], + [ + 33.9861418, + -2.8038788 + ] + ] + }, + "id": "way/1396143857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143858", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.986447, + -2.8038889 + ], + [ + 33.9864094, + -2.8039229 + ], + [ + 33.9863584, + -2.8039505 + ] + ] + }, + "id": "way/1396143858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143859", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9864663, + -2.8037021 + ], + [ + 33.986472, + -2.8037136 + ], + [ + 33.9864825, + -2.8037708 + ], + [ + 33.9864747, + -2.8038284 + ], + [ + 33.986447, + -2.8038889 + ] + ] + }, + "id": "way/1396143859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143860", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9864545, + -2.8036812 + ], + [ + 33.9864663, + -2.8037021 + ] + ] + }, + "id": "way/1396143860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143861", + "highway": "trunk", + "junction": "roundabout", + "ref": "T36", + "sidewalk": "yes", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9861659, + -2.8036428 + ], + [ + 33.9862186, + -2.8036065 + ], + [ + 33.9862805, + -2.80359 + ] + ] + }, + "id": "way/1396143861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143862", + "highway": "secondary", + "name": "Ngulyati road", + "oneway": "yes", + "ref": "R365", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9858819, + -2.8035917 + ], + [ + 33.9859928, + -2.8036061 + ], + [ + 33.9861659, + -2.8036428 + ] + ] + }, + "id": "way/1396143862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143863", + "highway": "secondary", + "name": "Ngulyati road", + "oneway": "yes", + "ref": "R365", + "source": "Africover", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9861158, + -2.8038203 + ], + [ + 33.9859365, + -2.8036691 + ], + [ + 33.9858819, + -2.8035917 + ] + ] + }, + "id": "way/1396143863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143864", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "sidewalk": "yes", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9865445, + -2.8033385 + ], + [ + 33.9865293, + -2.8034441 + ], + [ + 33.9864837, + -2.803574 + ], + [ + 33.9864545, + -2.8036812 + ] + ] + }, + "id": "way/1396143864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1396143865", + "highway": "trunk", + "oneway": "yes", + "ref": "T36", + "sidewalk": "yes", + "source": "Tanroads", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 33.9862805, + -2.80359 + ], + [ + 33.9863884, + -2.803499 + ], + [ + 33.9864676, + -2.8034106 + ], + [ + 33.9865445, + -2.8033385 + ] + ] + }, + "id": "way/1396143865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456420987", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "highway": "secondary", + "horse": "no", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.611501, + -2.2715963 + ], + [ + 34.6112707, + -2.2718111 + ], + [ + 34.6109004, + -2.2720634 + ], + [ + 34.6100316, + -2.2726352 + ], + [ + 34.6087125, + -2.2736849 + ], + [ + 34.6075183, + -2.274436 + ], + [ + 34.6069926, + -2.2747308 + ], + [ + 34.6064811, + -2.2749366 + ], + [ + 34.6046922, + -2.2753764 + ], + [ + 34.603327, + -2.2756775 + ], + [ + 34.6000986, + -2.276155 + ], + [ + 34.5936829, + -2.2764574 + ], + [ + 34.592799, + -2.2765766 + ], + [ + 34.5925623, + -2.2766364 + ], + [ + 34.5924363, + -2.2766913 + ], + [ + 34.592282, + -2.2768204 + ], + [ + 34.591814, + -2.2771697 + ], + [ + 34.5908667, + -2.2778439 + ], + [ + 34.5898877, + -2.2784163 + ], + [ + 34.5888575, + -2.2788183 + ], + [ + 34.5852506, + -2.2798069 + ], + [ + 34.5824477, + -2.2805413 + ], + [ + 34.5812844, + -2.28084 + ], + [ + 34.5809349, + -2.2809379 + ], + [ + 34.57985, + -2.2812193 + ], + [ + 34.5789595, + -2.2813212 + ], + [ + 34.5775571, + -2.2813612 + ], + [ + 34.5763832, + -2.281297 + ], + [ + 34.5758575, + -2.2811952 + ], + [ + 34.5753694, + -2.2810076 + ], + [ + 34.5749724, + -2.2807878 + ], + [ + 34.5745061, + -2.280458 + ], + [ + 34.5732289, + -2.2794585 + ], + [ + 34.572199, + -2.2788367 + ], + [ + 34.5714748, + -2.2784829 + ], + [ + 34.568168, + -2.2768882 + ], + [ + 34.5653973, + -2.2756102 + ], + [ + 34.5646886, + -2.2753018 + ], + [ + 34.5627555, + -2.2743527 + ], + [ + 34.5623771, + -2.2741991 + ], + [ + 34.5620844, + -2.2741332 + ], + [ + 34.5617479, + -2.274156 + ], + [ + 34.5615962, + -2.2742645 + ], + [ + 34.5609739, + -2.2747335 + ], + [ + 34.5604938, + -2.2751007 + ], + [ + 34.5601411, + -2.2754075 + ], + [ + 34.5600515, + -2.2754843 + ], + [ + 34.5596342, + -2.27576 + ], + [ + 34.5592761, + -2.2759221 + ], + [ + 34.5589207, + -2.2760508 + ], + [ + 34.5588242, + -2.2760789 + ], + [ + 34.5582934, + -2.2761988 + ], + [ + 34.5578455, + -2.2762685 + ], + [ + 34.5574968, + -2.2763114 + ], + [ + 34.5569389, + -2.2763248 + ], + [ + 34.5564293, + -2.276298 + ], + [ + 34.5559046, + -2.2762531 + ], + [ + 34.5556206, + -2.2761699 + ], + [ + 34.5553859, + -2.2760193 + ], + [ + 34.554888, + -2.2756233 + ], + [ + 34.5543586, + -2.275108 + ], + [ + 34.5539227, + -2.274706 + ], + [ + 34.5537736, + -2.2745968 + ], + [ + 34.5536783, + -2.2745767 + ], + [ + 34.5535576, + -2.2746008 + ], + [ + 34.5534718, + -2.2746719 + ], + [ + 34.5533689, + -2.2748025 + ], + [ + 34.5532884, + -2.274942 + ] + ] + }, + "id": "way/1456420987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456420988", + "access": "permissive", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "highway": "secondary", + "horse": "no", + "lanes": "2", + "layer": "1", + "maxspeed": "50", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.5532884, + -2.274942 + ], + [ + 34.5532335, + -2.2750372 + ] + ] + }, + "id": "way/1456420988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456420989", + "access": "permissive", + "bicycle": "no", + "foot": "no", + "highway": "secondary", + "horse": "no", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.632723, + -2.2538018 + ], + [ + 34.6323583, + -2.2540109 + ], + [ + 34.6319559, + -2.2543244 + ], + [ + 34.6311137, + -2.2550213 + ], + [ + 34.6263453, + -2.259542 + ], + [ + 34.6243326, + -2.2612699 + ], + [ + 34.6230145, + -2.2623158 + ], + [ + 34.6211655, + -2.2639888 + ], + [ + 34.6179981, + -2.2664083 + ], + [ + 34.614333, + -2.26888 + ], + [ + 34.6128523, + -2.2701494 + ], + [ + 34.6121585, + -2.2707616 + ], + [ + 34.6118823, + -2.2710618 + ], + [ + 34.6115447, + -2.2715417 + ] + ] + }, + "id": "way/1456420989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456420990", + "access": "permissive", + "bicycle": "no", + "bridge": "yes", + "foot": "no", + "highway": "secondary", + "horse": "no", + "layer": "1", + "source": "msd.or.tz & deliver.jsi.com", + "source:date": "2014..2015", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.6115447, + -2.2715417 + ], + [ + 34.611501, + -2.2715963 + ] + ] + }, + "id": "way/1456420990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1457968450", + "highway": "primary", + "old_ref": "B144", + "ref": "T17", + "smoothness": "bad", + "source": "survey", + "source:date": "2014..2015", + "surface": "compacted" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 34.8020283, + -2.4292486 + ], + [ + 34.8022576, + -2.429678 + ] + ] + }, + "id": "way/1457968450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/341160579", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2197751, + -1.8692899 + ] + }, + "id": "node/341160579" + }, + { + "type": "Feature", + "properties": { + "@id": "node/341160694", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1671431, + -1.9520686 + ] + }, + "id": "node/341160694" + }, + { + "type": "Feature", + "properties": { + "@id": "node/341275981", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0567748, + -2.1208186 + ] + }, + "id": "node/341275981" + }, + { + "type": "Feature", + "properties": { + "@id": "node/341276050", + "highway": "culvert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.981609, + -2.1917914 + ] + }, + "id": "node/341276050" + }, + { + "type": "Feature", + "properties": { + "@id": "node/341276134", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.944676, + -2.2612552 + ] + }, + "id": "node/341276134" + }, + { + "type": "Feature", + "properties": { + "@id": "node/344512123", + "barrier": "entrance", + "bicycle": "no", + "motorcar": "yes", + "name:en": "Ikoma Gate", + "name:sw": "Geti la Ikoma" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.725442, + -2.1889442 + ] + }, + "id": "node/344512123" + }, + { + "type": "Feature", + "properties": { + "@id": "node/356677516", + "access": "permissive", + "barrier": "gate", + "bicycle": "no", + "foot": "no", + "locked": "no", + "motor_vehicle": "permissive", + "motorcar": "yes", + "motorcycle": "no", + "name": "Serengeti National Park Gate", + "name:ko": "세렝게티국립공원입구" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1385412, + -2.9093372 + ] + }, + "id": "node/356677516" + }, + { + "type": "Feature", + "properties": { + "@id": "node/394086996", + "barrier": "gate", + "check_date": "2025-08-19", + "leisure": "nature_reserve", + "mapillary": "1420872359001321", + "material": "metal", + "operator": "Kenya Wildife Service" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2161444, + -1.652984 + ] + }, + "id": "node/394086996" + }, + { + "type": "Feature", + "properties": { + "@id": "node/437396502", + "highway": "culvert" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2061506, + -1.7936907 + ] + }, + "id": "node/437396502" + }, + { + "type": "Feature", + "properties": { + "@id": "node/437416235", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4552193, + -1.562282 + ] + }, + "id": "node/437416235" + }, + { + "type": "Feature", + "properties": { + "@id": "node/437436305", + "highway": "traffic_signals", + "traffic_signals": "signal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.9906397, + -2.8095307 + ] + }, + "id": "node/437436305" + }, + { + "type": "Feature", + "properties": { + "@id": "node/437437445", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6127754, + -1.6591609 + ] + }, + "id": "node/437437445" + }, + { + "type": "Feature", + "properties": { + "@id": "node/538845966", + "access": "permissive", + "barrier": "swing_gate", + "bicycle": "no", + "foot": "no", + "horse": "no", + "locked": "no", + "motor_vehicle": "permissive", + "motorcar": "yes", + "motorcycle": "no", + "swing_gate:type": "single" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.5738626, + -3.2646872 + ] + }, + "id": "node/538845966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/541407429", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2440213, + -1.8558311 + ] + }, + "id": "node/541407429" + }, + { + "type": "Feature", + "properties": { + "@id": "node/541424618", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0443835, + -2.1344567 + ] + }, + "id": "node/541424618" + }, + { + "type": "Feature", + "properties": { + "@id": "node/541430681", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1590361, + -1.9642637 + ] + }, + "id": "node/541430681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/566342271", + "bridge:support": "yes", + "name": "Daraja la Nyamoko", + "name:en": "Nyamoko Bridge", + "name:sw": "Daraja la Nyamoko" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6444121, + -1.8024878 + ] + }, + "id": "node/566342271" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1293917180", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.4019553, + -3.0995332 + ] + }, + "id": "node/1293917180" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1394005434", + "barrier": "gate", + "bicycle": "no", + "foot": "no", + "motorcar": "yes", + "name": "Naabi gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.9981626, + -2.8322014 + ] + }, + "id": "node/1394005434" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1394023146", + "barrier": "gate", + "bicycle": "no", + "foot": "no", + "material": "metal", + "motorcar": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.8738031, + -2.1926417 + ] + }, + "id": "node/1394023146" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1401393658", + "barrier": "toll_booth", + "bicycle": "no", + "foot": "no", + "horse": "no", + "motorcar": "yes", + "motorcycle": "no", + "name": "Sekenani Gate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.3374402, + -1.5209658 + ] + }, + "id": "node/1401393658" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1439866625", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.3911985, + -3.0751481 + ] + }, + "id": "node/1439866625" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1614467453", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2191398, + -1.4360215 + ] + }, + "id": "node/1614467453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1834385244", + "highway": "culvert", + "material": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.8250479, + -2.4866043 + ] + }, + "id": "node/1834385244" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1843894368", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.9350724, + -2.7034221 + ] + }, + "id": "node/1843894368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1843894380", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.9231453, + -2.682197 + ] + }, + "id": "node/1843894380" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1843897911", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.9009595, + -2.635294 + ] + }, + "id": "node/1843897911" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1843899076", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.8926924, + -2.615829 + ] + }, + "id": "node/1843899076" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1843907657", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.8886215, + -2.6081489 + ] + }, + "id": "node/1843907657" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1843909073", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.8804626, + -2.5900911 + ] + }, + "id": "node/1843909073" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2141218453", + "fixme": "Traversée de rivière à definir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2628303, + -1.224053 + ] + }, + "id": "node/2141218453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2141218460", + "fixme": "Traversée de rivière à definir" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.265774, + -1.2694614 + ] + }, + "id": "node/2141218460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2322697946", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1790726, + -1.7708174 + ] + }, + "id": "node/2322697946" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2852384464", + "bridge:support": "pylon", + "name:en": "Bridge", + "name:sw": "Daraja" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3615386, + -1.6245789 + ] + }, + "id": "node/2852384464" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2852384979", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2766598, + -1.7076705 + ] + }, + "id": "node/2852384979" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2852384989", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2709163, + -1.7117594 + ] + }, + "id": "node/2852384989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2852385680", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1551619, + -1.9230868 + ] + }, + "id": "node/2852385680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2852386336", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.34688, + -1.9866869 + ] + }, + "id": "node/2852386336" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3319540918", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2159792, + -1.6712351 + ] + }, + "id": "node/3319540918" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3523426964", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3786173, + -1.7996155 + ] + }, + "id": "node/3523426964" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3658864714", + "highway": "motorway_junction", + "name": "Ochuna" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1308051, + -1.4051991 + ] + }, + "id": "node/3658864714" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3862905700", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.9946693, + -2.7798424 + ] + }, + "id": "node/3862905700" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3862905701", + "highway": "traffic_signals", + "traffic_signals": "signal" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.9946085, + -2.7800517 + ] + }, + "id": "node/3862905701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4171829592", + "note": "bridge? stream?" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5706138, + -1.948008 + ] + }, + "id": "node/4171829592" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4240957016", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1614938, + -1.706397 + ] + }, + "id": "node/4240957016" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4276650499", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5842333, + -1.3026034 + ] + }, + "id": "node/4276650499" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4276681520", + "junction": "roundabout", + "name": "Ging'wani Junction", + "name:en": "Ging'wani Junction", + "name:sw": "Ging'wani Junction" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4033293, + -1.7343609 + ] + }, + "id": "node/4276681520" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4364287985", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4564268, + -2.2809969 + ] + }, + "id": "node/4364287985" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4373220112", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5878202, + -1.9306266 + ] + }, + "id": "node/4373220112" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4373450701", + "traffic_calming": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6843936, + -1.3333917 + ] + }, + "id": "node/4373450701" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4393582493", + "amenity": "bus_station", + "name": "Stand Mpya", + "name:en": "New Bus Station", + "name:sw": "Stand Mpya" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6693959, + -1.84011 + ] + }, + "id": "node/4393582493" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4394870038", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3839428, + -1.6097358 + ] + }, + "id": "node/4394870038" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4401080799", + "highway": "culvert", + "material": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.8251626, + -2.3663256 + ] + }, + "id": "node/4401080799" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4401867240", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6725549, + -2.1312829 + ] + }, + "id": "node/4401867240" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4402360839", + "highway": "culvert", + "material": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.8988658, + -2.3024789 + ] + }, + "id": "node/4402360839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4402717818", + "highway": "culvert", + "material": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.831645, + -2.2967189 + ] + }, + "id": "node/4402717818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4402746407", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7861065, + -2.2471577 + ] + }, + "id": "node/4402746407" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4402772560", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.592282, + -2.2768204 + ] + }, + "id": "node/4402772560" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4402794132", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5600515, + -2.2754843 + ] + }, + "id": "node/4402794132" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4404358551", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2882603, + -2.2091741 + ] + }, + "id": "node/4404358551" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4404389680", + "highway": "cuvert", + "material": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3092744, + -2.2240071 + ] + }, + "id": "node/4404389680" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4404706971", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5308481, + -2.1389382 + ] + }, + "id": "node/4404706971" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407248083", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7245638, + -2.1885196 + ] + }, + "id": "node/4407248083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407424438", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7210089, + -2.1777694 + ] + }, + "id": "node/4407424438" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407457391", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7717625, + -2.2285354 + ] + }, + "id": "node/4407457391" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4407457397", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7758584, + -2.2328155 + ] + }, + "id": "node/4407457397" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4409543590", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.9996084, + -2.1736045 + ] + }, + "id": "node/4409543590" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4409743302", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0680974, + -2.1093007 + ] + }, + "id": "node/4409743302" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4409754661", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1039478, + -2.0870424 + ] + }, + "id": "node/4409754661" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4409754667", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0964904, + -2.0894662 + ] + }, + "id": "node/4409754667" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4409754672", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0879909, + -2.0914745 + ] + }, + "id": "node/4409754672" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4409754681", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0838618, + -2.0936586 + ] + }, + "id": "node/4409754681" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4411798462", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6443866, + -2.0814137 + ] + }, + "id": "node/4411798462" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4415106365", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1376596, + -2.0317631 + ] + }, + "id": "node/4415106365" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4415106377", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1373404, + -2.0343605 + ] + }, + "id": "node/4415106377" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4415323282", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1542209, + -2.0005066 + ] + }, + "id": "node/4415323282" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4415333737", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1539728, + -1.9855878 + ] + }, + "id": "node/4415333737" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4415333743", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1538257, + -1.986283 + ] + }, + "id": "node/4415333743" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4415333759", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1546062, + -1.9943623 + ] + }, + "id": "node/4415333759" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4424785884", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3863611, + -2.0087538 + ] + }, + "id": "node/4424785884" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4424833341", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3468793, + -1.9871698 + ] + }, + "id": "node/4424833341" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4426249563", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5116374, + -1.9992159 + ] + }, + "id": "node/4426249563" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4426790966", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1573994, + -1.9710505 + ] + }, + "id": "node/4426790966" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4426790986", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1563555, + -1.9747344 + ] + }, + "id": "node/4426790986" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4426790989", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1557918, + -1.9761571 + ] + }, + "id": "node/4426790989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4427584931", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6601647, + -1.9486487 + ] + }, + "id": "node/4427584931" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4427584940", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.660213, + -1.9494476 + ] + }, + "id": "node/4427584940" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4443744528", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2955277, + -1.9677496 + ] + }, + "id": "node/4443744528" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4446204572", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1650434, + -1.9710556 + ] + }, + "id": "node/4446204572" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4449209096", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2869486, + -1.8947777 + ] + }, + "id": "node/4449209096" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4450911810", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6586587, + -1.9285665 + ] + }, + "id": "node/4450911810" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4452061222", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6222731, + -1.9057121 + ] + }, + "id": "node/4452061222" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4452094635", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6032509, + -1.8999619 + ] + }, + "id": "node/4452094635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4452196055", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5897406, + -1.914529 + ] + }, + "id": "node/4452196055" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4462157141", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5874776, + -1.5975901 + ] + }, + "id": "node/4462157141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4463632963", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4226504, + -1.7291843 + ] + }, + "id": "node/4463632963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4464139115", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4373224, + -1.5811498 + ] + }, + "id": "node/4464139115" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4464906886", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5659291, + -1.7492154 + ] + }, + "id": "node/4464906886" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4464908724", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5476486, + -1.7571506 + ] + }, + "id": "node/4464908724" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4465114372", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5738074, + -1.7458793 + ] + }, + "id": "node/4465114372" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4465114384", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5669909, + -1.74875 + ] + }, + "id": "node/4465114384" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4465232869", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.0688971, + -1.919543 + ] + }, + "id": "node/4465232869" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4466931797", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.0748987, + -1.9183212 + ] + }, + "id": "node/4466931797" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4468829465", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2575318, + -1.8874715 + ] + }, + "id": "node/4468829465" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4471000727", + "junction": "roundabout" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6742229, + -1.839627 + ] + }, + "id": "node/4471000727" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4478973769", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1547511, + -1.9230455 + ] + }, + "id": "node/4478973769" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4481734855", + "name": "Magange Junction", + "name:en": "Magange Junction", + "name:sw": "Makutano ya Barabara, Magange" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3249954, + -1.7549519 + ] + }, + "id": "node/4481734855" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4496523763", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3758284, + -1.429004 + ] + }, + "id": "node/4496523763" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4508898141", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2151176, + -1.931515 + ] + }, + "id": "node/4508898141" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4515663785", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5377303, + -1.3646567 + ] + }, + "id": "node/4515663785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4540411607", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3265721, + -1.8334017 + ] + }, + "id": "node/4540411607" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4540411629", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3213543, + -1.8350159 + ] + }, + "id": "node/4540411629" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4558010290", + "bridge:support": "pylon", + "name": "Small bridge", + "name:en": "Small Bridge", + "name:sw": "Daraja Dogo" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4735225, + -2.0253699 + ] + }, + "id": "node/4558010290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4563670408", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.1777286, + -1.7774197 + ] + }, + "id": "node/4563670408" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4588123112", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.392727, + -1.7845002 + ] + }, + "id": "node/4588123112" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4596478019", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6258597, + -1.7628251 + ] + }, + "id": "node/4596478019" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4621300860", + "bridge:support": "pylon", + "name": "Rung'abure Bridge", + "name:en": "Rung'abure Bridge", + "name:sw": "Daraja la Rung'abure" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6105828, + -1.7328695 + ] + }, + "id": "node/4621300860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4621419839", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6149883, + -1.7467835 + ] + }, + "id": "node/4621419839" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4621419876", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6136847, + -1.7456923 + ] + }, + "id": "node/4621419876" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4625568824", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3929981, + -1.7371333 + ] + }, + "id": "node/4625568824" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4625584630", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3749256, + -1.7419912 + ] + }, + "id": "node/4625584630" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4653926321", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2449561, + -1.7257217 + ] + }, + "id": "node/4653926321" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4653926329", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2480068, + -1.7246384 + ] + }, + "id": "node/4653926329" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4672286863", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.168328, + -1.7099896 + ] + }, + "id": "node/4672286863" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4672459928", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1456151, + -1.6948338 + ] + }, + "id": "node/4672459928" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4672459956", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1496278, + -1.698973 + ] + }, + "id": "node/4672459956" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687010598", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3670099, + -1.4311535 + ] + }, + "id": "node/4687010598" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687010620", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3712357, + -1.4302139 + ] + }, + "id": "node/4687010620" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687316250", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2664627, + -1.712985 + ] + }, + "id": "node/4687316250" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687474465", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2957845, + -1.6934472 + ] + }, + "id": "node/4687474465" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687474612", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3094368, + -1.676224 + ] + }, + "id": "node/4687474612" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687475451", + "bridge:support": "pylon", + "name": "Mesaga Bridge", + "name:en": "Mesaga Bridge", + "name:sw": "Daraja la Mesaga" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3073989, + -1.6788123 + ] + }, + "id": "node/4687475451" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4687525371", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2802218, + -1.700539 + ] + }, + "id": "node/4687525371" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4692090569", + "ford": "yes", + "source": "Bing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5685394, + -1.6071893 + ] + }, + "id": "node/4692090569" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4694358870", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.6190358, + -1.6727648 + ] + }, + "id": "node/4694358870" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4709727385", + "access": "permissive", + "barrier": "gate", + "bicycle": "no", + "foot": "no", + "horse": "no", + "locked": "no", + "motor_vehicle": "permissive", + "motorcar": "yes", + "motorcycle": "no", + "name": "Loduare Gate", + "opening_hours": "Mo-Su 06:00-18:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.5925046, + -3.2986007 + ] + }, + "id": "node/4709727385" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4729372989", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3438987, + -1.6371491 + ] + }, + "id": "node/4729372989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4729408424", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3380824, + -1.6396358 + ] + }, + "id": "node/4729408424" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4729409071", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.3369587, + -1.6425095 + ] + }, + "id": "node/4729409071" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4755857293", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4218438, + -1.5842993 + ] + }, + "id": "node/4755857293" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4784582507", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5516393, + -1.5982309 + ] + }, + "id": "node/4784582507" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4798827086", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.7041405, + -2.6085656 + ] + }, + "id": "node/4798827086" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4816215225", + "highway": "culvert", + "source": "ESRI 2018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2645474, + -2.1942952 + ] + }, + "id": "node/4816215225" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4816215230", + "highway": "culvert", + "source": "ESRI 2018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2557348, + -2.1964056 + ] + }, + "id": "node/4816215230" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4829467437", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.9372036, + -2.158904 + ] + }, + "id": "node/4829467437" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4843698306", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4080733, + -1.5926012 + ] + }, + "id": "node/4843698306" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4847997030", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0000319, + -2.8328238 + ] + }, + "id": "node/4847997030" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5194481285", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5942878, + -1.5547958 + ] + }, + "id": "node/5194481285" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5194935242", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5036709, + -1.5545713 + ] + }, + "id": "node/5194935242" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5745160542", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5753167, + -1.2975224 + ] + }, + "id": "node/5745160542" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5822511635", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.1916605, + -3.3569731 + ] + }, + "id": "node/5822511635" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5936947580", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5555063, + -1.2808982 + ] + }, + "id": "node/5936947580" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6017771548", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.0057073, + -2.8363414 + ] + }, + "id": "node/6017771548" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6074626523", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.7180723, + -3.1907329 + ] + }, + "id": "node/6074626523" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6129976399", + "bridge:support": "pylon", + "name": "Matare Bridge", + "name:sw": "Daraja la Matare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.657771, + -1.8138786 + ] + }, + "id": "node/6129976399" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6130148542", + "ford": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.5865998, + -1.608524 + ] + }, + "id": "node/6130148542" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6134551309", + "highway": "culvert", + "material": "concrete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7543295, + -2.2122601 + ] + }, + "id": "node/6134551309" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6288772860", + "bridge:support": "pylon", + "name": "Kisaka Bridge", + "name:en": "Kisaka Bridge", + "name:sw": "Daraja la Kisaka" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4567308, + -1.559592 + ] + }, + "id": "node/6288772860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6288799905", + "bridge:support": "pylon", + "name": "Busawe Bridge", + "name:en": "Busawe Bridge", + "name:sw": "Daraja la Busawe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.4157207, + -1.5910554 + ] + }, + "id": "node/6288799905" + }, + { + "type": "Feature", + "properties": { + "@id": "node/6588757306", + "barrier": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2143429, + -1.6539831 + ] + }, + "id": "node/6588757306" + }, + { + "type": "Feature", + "properties": { + "@id": "node/9287651254", + "amenity": "bicycle_parking", + "bicycle_parking": "building" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.0022103, + -2.8157276 + ] + }, + "id": "node/9287651254" + }, + { + "type": "Feature", + "properties": { + "@id": "node/11536381454", + "crossing": "unmarked", + "crossing:markings": "no", + "highway": "crossing" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.7549113, + -1.5897024 + ] + }, + "id": "node/11536381454" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13306186023", + "barrier": "gate", + "check_date": "2025-08-19", + "material": "metal", + "operator": "Kenya Wildlife Service" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 35.2073066, + -1.4432237 + ] + }, + "id": "node/13306186023" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13375346381", + "access": "yes", + "door": "overhead", + "entrance": "yes", + "level": "0", + "name": "Ndabaka Gate", + "wheelchair": "yes" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.8705739, + -2.1924778 + ] + }, + "id": "node/13375346381" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13377837166", + "highway": "culvert", + "source": "ESRI 2018" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.2665477, + -2.1932483 + ] + }, + "id": "node/13377837166" + } + ] +} \ No newline at end of file diff --git a/Homework3_engagement/data/tsavo_lion_points.geojson b/Homework3_engagement/data/tsavo_lion_points.geojson new file mode 100644 index 0000000..3eb2011 --- /dev/null +++ b/Homework3_engagement/data/tsavo_lion_points.geojson @@ -0,0 +1,38777 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9237614, + -3.8396436 + ] + }, + "properties": { + "timestamp": "2005-01-12T00:00:41", + "year": 2005, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9249859, + -3.8350118 + ] + }, + "properties": { + "timestamp": "2005-01-12T06:00:48", + "year": 2005, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9312856, + -3.8288389 + ] + }, + "properties": { + "timestamp": "2005-01-12T18:01:24", + "year": 2005, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9329107, + -3.8756283 + ] + }, + "properties": { + "timestamp": "2005-02-12T00:00:42", + "year": 2005, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9558162, + -3.8661086 + ] + }, + "properties": { + "timestamp": "2005-02-12T06:03:02", + "year": 2005, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.956307, + -3.8657851 + ] + }, + "properties": { + "timestamp": "2005-02-12T12:03:12", + "year": 2005, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9843564, + -3.8595677 + ] + }, + "properties": { + "timestamp": "2005-02-12T18:00:49", + "year": 2005, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9856231, + -3.8380284 + ] + }, + "properties": { + "timestamp": "2005-03-12T00:00:54", + "year": 2005, + "month": 3, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9872703, + -3.7996358 + ] + }, + "properties": { + "timestamp": "2005-03-12T06:00:53", + "year": 2005, + "month": 3, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9867835, + -3.7915331 + ] + }, + "properties": { + "timestamp": "2005-03-12T18:00:54", + "year": 2005, + "month": 3, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9339156, + -3.8115357 + ] + }, + "properties": { + "timestamp": "2005-04-12T00:00:48", + "year": 2005, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9200856, + -3.8132376 + ] + }, + "properties": { + "timestamp": "2005-04-12T06:01:23", + "year": 2005, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9106981, + -3.8248524 + ] + }, + "properties": { + "timestamp": "2005-04-12T18:00:55", + "year": 2005, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699549, + -3.8531267 + ] + }, + "properties": { + "timestamp": "2005-05-12T00:00:54", + "year": 2005, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8236513, + -3.8333694 + ] + }, + "properties": { + "timestamp": "2005-05-12T06:01:51", + "year": 2005, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8236536, + -3.8331395 + ] + }, + "properties": { + "timestamp": "2005-05-12T12:00:52", + "year": 2005, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8170115, + -3.8103564 + ] + }, + "properties": { + "timestamp": "2005-05-12T18:00:54", + "year": 2005, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8287286, + -3.735666 + ] + }, + "properties": { + "timestamp": "2005-06-12T00:00:42", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8648178, + -3.7215043 + ] + }, + "properties": { + "timestamp": "2005-06-12T06:01:41", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8647785, + -3.7215049 + ] + }, + "properties": { + "timestamp": "2005-06-12T12:01:52", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8817575, + -3.7070873 + ] + }, + "properties": { + "timestamp": "2005-06-12T18:00:48", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870628, + -3.788616 + ] + }, + "properties": { + "timestamp": "2005-06-25T10:51:37", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870628, + -3.788616 + ] + }, + "properties": { + "timestamp": "2005-06-25T10:51:37", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705997, + -3.7886498 + ] + }, + "properties": { + "timestamp": "2005-06-25T12:00:42", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705997, + -3.7886498 + ] + }, + "properties": { + "timestamp": "2005-06-25T12:00:42", + "year": 2005, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9370422, + -3.6879458 + ] + }, + "properties": { + "timestamp": "2005-07-12T00:00:23", + "year": 2005, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9649943, + -3.7181153 + ] + }, + "properties": { + "timestamp": "2005-07-12T12:02:17", + "year": 2005, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9656724, + -3.7275217 + ] + }, + "properties": { + "timestamp": "2005-07-12T18:01:24", + "year": 2005, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9199658, + -3.8041695 + ] + }, + "properties": { + "timestamp": "2005-08-10T16:04:54", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9199946, + -3.8032662 + ] + }, + "properties": { + "timestamp": "2005-08-10T20:01:18", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9666299, + -3.7261697 + ] + }, + "properties": { + "timestamp": "2005-08-12T00:00:53", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.966375, + -3.7258943 + ] + }, + "properties": { + "timestamp": "2005-08-12T06:03:08", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9663514, + -3.7260144 + ] + }, + "properties": { + "timestamp": "2005-08-12T12:00:55", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9660928, + -3.7262596 + ] + }, + "properties": { + "timestamp": "2005-08-12T18:00:55", + "year": 2005, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912373, + -3.7981286 + ] + }, + "properties": { + "timestamp": "2005-09-10T00:01:24", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707057, + -3.774821 + ] + }, + "properties": { + "timestamp": "2005-09-10T04:01:12", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8708363, + -3.7748284 + ] + }, + "properties": { + "timestamp": "2005-09-10T08:01:19", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8701869, + -3.7746587 + ] + }, + "properties": { + "timestamp": "2005-09-10T16:01:18", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8700108, + -3.7732812 + ] + }, + "properties": { + "timestamp": "2005-09-10T20:01:17", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9661065, + -3.726246 + ] + }, + "properties": { + "timestamp": "2005-09-12T00:01:12", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9662617, + -3.7273358 + ] + }, + "properties": { + "timestamp": "2005-09-12T06:02:24", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9637194, + -3.7256954 + ] + }, + "properties": { + "timestamp": "2005-09-12T12:01:24", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.963192, + -3.725675 + ] + }, + "properties": { + "timestamp": "2005-09-12T18:01:02", + "year": 2005, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9199658, + -3.8041695 + ] + }, + "properties": { + "timestamp": "2005-10-08T16:04:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9199946, + -3.8032662 + ] + }, + "properties": { + "timestamp": "2005-10-08T20:01:18", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912373, + -3.7981286 + ] + }, + "properties": { + "timestamp": "2005-10-09T00:01:24", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707057, + -3.774821 + ] + }, + "properties": { + "timestamp": "2005-10-09T04:01:12", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8708363, + -3.7748284 + ] + }, + "properties": { + "timestamp": "2005-10-09T08:01:19", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8701869, + -3.7746587 + ] + }, + "properties": { + "timestamp": "2005-10-09T16:01:18", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8700108, + -3.7732812 + ] + }, + "properties": { + "timestamp": "2005-10-09T20:01:17", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.869998, + -3.7732864 + ] + }, + "properties": { + "timestamp": "2005-10-10T00:01:41", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.869998, + -3.7732864 + ] + }, + "properties": { + "timestamp": "2005-10-10T00:01:41", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707004, + -3.7757846 + ] + }, + "properties": { + "timestamp": "2005-10-10T16:01:24", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707004, + -3.7757846 + ] + }, + "properties": { + "timestamp": "2005-10-10T16:01:24", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706688, + -3.7757635 + ] + }, + "properties": { + "timestamp": "2005-10-10T20:01:23", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706688, + -3.7757635 + ] + }, + "properties": { + "timestamp": "2005-10-10T20:01:23", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705151, + -3.7757432 + ] + }, + "properties": { + "timestamp": "2005-10-11T00:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707413, + -3.7757509 + ] + }, + "properties": { + "timestamp": "2005-10-11T04:01:18", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706778, + -3.7757917 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:10:06", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706835, + -3.7757561 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:11:10", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706778, + -3.7758008 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:12:01", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707002, + -3.7757537 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:18:50", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707032, + -3.7757378 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:19:32", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706905, + -3.7757557 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:20:26", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706891, + -3.7757295 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:21:23", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706878, + -3.7756672 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:21:35", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707158, + -3.7756747 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:21:46", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706851, + -3.7756508 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:22:25", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706808, + -3.7757397 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:28:05", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706821, + -3.7757299 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:28:18", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706891, + -3.7757295 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:28:29", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706961, + -3.7757111 + ] + }, + "properties": { + "timestamp": "2005-10-11T06:28:38", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706611, + -3.775713 + ] + }, + "properties": { + "timestamp": "2005-10-11T12:02:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8703487, + -3.7758075 + ] + }, + "properties": { + "timestamp": "2005-10-11T16:01:17", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8703417, + -3.7757898 + ] + }, + "properties": { + "timestamp": "2005-10-11T20:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9650063, + -3.7277695 + ] + }, + "properties": { + "timestamp": "2005-10-12T00:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8771383, + -3.7776037 + ] + }, + "properties": { + "timestamp": "2005-10-12T00:01:11", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706453, + -3.7758242 + ] + }, + "properties": { + "timestamp": "2005-10-12T04:02:17", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9663287, + -3.727339 + ] + }, + "properties": { + "timestamp": "2005-10-12T06:01:51", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9662894, + -3.7273215 + ] + }, + "properties": { + "timestamp": "2005-10-12T12:01:46", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705106, + -3.7758554 + ] + }, + "properties": { + "timestamp": "2005-10-12T16:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.965817, + -3.7272306 + ] + }, + "properties": { + "timestamp": "2005-10-12T18:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8677932, + -3.783762 + ] + }, + "properties": { + "timestamp": "2005-10-12T20:01:17", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699477, + -3.7924795 + ] + }, + "properties": { + "timestamp": "2005-10-13T00:00:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699477, + -3.7924795 + ] + }, + "properties": { + "timestamp": "2005-10-13T00:00:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705341, + -3.7929323 + ] + }, + "properties": { + "timestamp": "2005-10-13T04:00:25", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705341, + -3.7929323 + ] + }, + "properties": { + "timestamp": "2005-10-13T04:00:25", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706859, + -3.7930778 + ] + }, + "properties": { + "timestamp": "2005-10-13T08:01:51", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706859, + -3.7930778 + ] + }, + "properties": { + "timestamp": "2005-10-13T08:01:51", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8704719, + -3.7931708 + ] + }, + "properties": { + "timestamp": "2005-10-13T16:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8704719, + -3.7931708 + ] + }, + "properties": { + "timestamp": "2005-10-13T16:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705097, + -3.7928334 + ] + }, + "properties": { + "timestamp": "2005-10-13T20:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705097, + -3.7928334 + ] + }, + "properties": { + "timestamp": "2005-10-13T20:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8690511, + -3.7886974 + ] + }, + "properties": { + "timestamp": "2005-10-14T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8690511, + -3.7886974 + ] + }, + "properties": { + "timestamp": "2005-10-14T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870842, + -3.7771297 + ] + }, + "properties": { + "timestamp": "2005-10-14T04:01:28", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870842, + -3.7771297 + ] + }, + "properties": { + "timestamp": "2005-10-14T04:01:28", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8709853, + -3.7769658 + ] + }, + "properties": { + "timestamp": "2005-10-14T08:03:08", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8709853, + -3.7769658 + ] + }, + "properties": { + "timestamp": "2005-10-14T08:03:08", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712065, + -3.7762536 + ] + }, + "properties": { + "timestamp": "2005-10-15T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712065, + -3.7762536 + ] + }, + "properties": { + "timestamp": "2005-10-15T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8722057, + -3.7737911 + ] + }, + "properties": { + "timestamp": "2005-10-15T04:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8722057, + -3.7737911 + ] + }, + "properties": { + "timestamp": "2005-10-15T04:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871434, + -3.7745873 + ] + }, + "properties": { + "timestamp": "2005-10-15T12:02:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871434, + -3.7745873 + ] + }, + "properties": { + "timestamp": "2005-10-15T12:02:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699093, + -3.7805279 + ] + }, + "properties": { + "timestamp": "2005-10-15T16:00:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699093, + -3.7805279 + ] + }, + "properties": { + "timestamp": "2005-10-15T16:00:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8733776, + -3.785804 + ] + }, + "properties": { + "timestamp": "2005-10-15T20:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8733776, + -3.785804 + ] + }, + "properties": { + "timestamp": "2005-10-15T20:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8734296, + -3.7858577 + ] + }, + "properties": { + "timestamp": "2005-10-16T00:01:40", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8734296, + -3.7858577 + ] + }, + "properties": { + "timestamp": "2005-10-16T00:01:40", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.875574, + -3.7856131 + ] + }, + "properties": { + "timestamp": "2005-10-16T04:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.875574, + -3.7856131 + ] + }, + "properties": { + "timestamp": "2005-10-16T04:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.875775, + -3.7852867 + ] + }, + "properties": { + "timestamp": "2005-10-16T08:01:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.875775, + -3.7852867 + ] + }, + "properties": { + "timestamp": "2005-10-16T08:01:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8756742, + -3.7852518 + ] + }, + "properties": { + "timestamp": "2005-10-16T12:01:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8756742, + -3.7852518 + ] + }, + "properties": { + "timestamp": "2005-10-16T12:01:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8740412, + -3.7857873 + ] + }, + "properties": { + "timestamp": "2005-10-16T16:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8740412, + -3.7857873 + ] + }, + "properties": { + "timestamp": "2005-10-16T16:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8743546, + -3.7857836 + ] + }, + "properties": { + "timestamp": "2005-10-16T20:00:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8743546, + -3.7857836 + ] + }, + "properties": { + "timestamp": "2005-10-16T20:00:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8726472, + -3.7879547 + ] + }, + "properties": { + "timestamp": "2005-10-17T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8726472, + -3.7879547 + ] + }, + "properties": { + "timestamp": "2005-10-17T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9276301, + -3.809511 + ] + }, + "properties": { + "timestamp": "2005-10-17T04:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9276301, + -3.809511 + ] + }, + "properties": { + "timestamp": "2005-10-17T04:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9277187, + -3.8094936 + ] + }, + "properties": { + "timestamp": "2005-10-17T08:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9277187, + -3.8094936 + ] + }, + "properties": { + "timestamp": "2005-10-17T08:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705151, + -3.7757432 + ] + }, + "properties": { + "timestamp": "2005-11-10T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707413, + -3.7757509 + ] + }, + "properties": { + "timestamp": "2005-11-10T04:01:18", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706778, + -3.7757917 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:10:06", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706835, + -3.7757561 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:11:10", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706778, + -3.7758008 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:12:01", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707002, + -3.7757537 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:18:50", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707032, + -3.7757378 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:19:32", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706905, + -3.7757557 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:20:26", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706891, + -3.7757295 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:21:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706878, + -3.7756672 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:21:35", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8707158, + -3.7756747 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:21:46", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706851, + -3.7756508 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:22:25", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706808, + -3.7757397 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:28:05", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706821, + -3.7757299 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:28:18", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706891, + -3.7757295 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:28:29", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706961, + -3.7757111 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:28:38", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706611, + -3.775713 + ] + }, + "properties": { + "timestamp": "2005-11-10T12:02:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8703487, + -3.7758075 + ] + }, + "properties": { + "timestamp": "2005-11-10T16:01:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8703417, + -3.7757898 + ] + }, + "properties": { + "timestamp": "2005-11-10T20:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9395903, + -3.7785349 + ] + }, + "properties": { + "timestamp": "2005-11-12T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9376284, + -3.7812879 + ] + }, + "properties": { + "timestamp": "2005-11-12T18:00:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.947416, + -3.7819424 + ] + }, + "properties": { + "timestamp": "2005-11-17T18:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0120909, + -3.8096463 + ] + }, + "properties": { + "timestamp": "2005-11-18T12:02:21", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0137227, + -3.8023266 + ] + }, + "properties": { + "timestamp": "2005-11-18T18:01:24", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9777724, + -3.7929449 + ] + }, + "properties": { + "timestamp": "2005-11-19T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9623615, + -3.7937513 + ] + }, + "properties": { + "timestamp": "2005-11-19T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9328851, + -3.7882505 + ] + }, + "properties": { + "timestamp": "2005-11-20T00:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9326082, + -3.7882154 + ] + }, + "properties": { + "timestamp": "2005-11-20T06:01:46", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9327685, + -3.7879265 + ] + }, + "properties": { + "timestamp": "2005-11-20T12:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9290757, + -3.7937648 + ] + }, + "properties": { + "timestamp": "2005-11-20T18:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8396696, + -3.8515562 + ] + }, + "properties": { + "timestamp": "2005-11-21T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8022713, + -3.8238545 + ] + }, + "properties": { + "timestamp": "2005-11-21T12:02:29", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8115335, + -3.7833669 + ] + }, + "properties": { + "timestamp": "2005-11-21T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8877723, + -3.7456455 + ] + }, + "properties": { + "timestamp": "2005-11-22T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9562783, + -3.7729205 + ] + }, + "properties": { + "timestamp": "2005-11-22T12:03:03", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.971166, + -3.7893109 + ] + }, + "properties": { + "timestamp": "2005-11-22T18:00:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582654, + -3.8064203 + ] + }, + "properties": { + "timestamp": "2005-11-23T00:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9588202, + -3.7910563 + ] + }, + "properties": { + "timestamp": "2005-11-23T06:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9581681, + -3.7915831 + ] + }, + "properties": { + "timestamp": "2005-11-23T12:00:46", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9866086, + -3.8034942 + ] + }, + "properties": { + "timestamp": "2005-11-23T18:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0177826, + -3.765258 + ] + }, + "properties": { + "timestamp": "2005-11-24T00:01:19", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9850371, + -3.7325554 + ] + }, + "properties": { + "timestamp": "2005-11-24T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9770083, + -3.7259093 + ] + }, + "properties": { + "timestamp": "2005-11-25T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9773171, + -3.7259743 + ] + }, + "properties": { + "timestamp": "2005-11-25T06:01:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9773987, + -3.7260294 + ] + }, + "properties": { + "timestamp": "2005-11-25T12:01:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97686, + -3.7284153 + ] + }, + "properties": { + "timestamp": "2005-11-25T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9697296, + -3.7287132 + ] + }, + "properties": { + "timestamp": "2005-11-26T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9795979, + -3.7268832 + ] + }, + "properties": { + "timestamp": "2005-11-26T06:01:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9772275, + -3.7259061 + ] + }, + "properties": { + "timestamp": "2005-11-26T12:03:06", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.976888, + -3.7258352 + ] + }, + "properties": { + "timestamp": "2005-11-26T18:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9751614, + -3.7368545 + ] + }, + "properties": { + "timestamp": "2005-11-27T12:01:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9756926, + -3.7441592 + ] + }, + "properties": { + "timestamp": "2005-11-27T18:01:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9732214, + -3.7930892 + ] + }, + "properties": { + "timestamp": "2005-11-28T00:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9719799, + -3.7974182 + ] + }, + "properties": { + "timestamp": "2005-11-28T12:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9742594, + -3.8033158 + ] + }, + "properties": { + "timestamp": "2005-11-28T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9438136, + -3.8702075 + ] + }, + "properties": { + "timestamp": "2005-11-29T00:00:42", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9249465, + -3.8815746 + ] + }, + "properties": { + "timestamp": "2005-11-29T06:01:51", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.928581, + -3.8818334 + ] + }, + "properties": { + "timestamp": "2005-11-29T12:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9285813, + -3.8822884 + ] + }, + "properties": { + "timestamp": "2005-11-29T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8701305, + -3.8934086 + ] + }, + "properties": { + "timestamp": "2005-11-30T00:00:42", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9109298, + -3.8484511 + ] + }, + "properties": { + "timestamp": "2005-11-30T12:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9167125, + -3.8422184 + ] + }, + "properties": { + "timestamp": "2005-11-30T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8771383, + -3.7776037 + ] + }, + "properties": { + "timestamp": "2005-12-10T00:01:11", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706453, + -3.7758242 + ] + }, + "properties": { + "timestamp": "2005-12-10T04:02:17", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705106, + -3.7758554 + ] + }, + "properties": { + "timestamp": "2005-12-10T16:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8677932, + -3.783762 + ] + }, + "properties": { + "timestamp": "2005-12-10T20:01:17", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9351285, + -3.8374356 + ] + }, + "properties": { + "timestamp": "2005-12-12T00:01:13", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9242597, + -3.8367449 + ] + }, + "properties": { + "timestamp": "2005-12-12T06:03:02", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241991, + -3.8368872 + ] + }, + "properties": { + "timestamp": "2005-12-12T12:02:19", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241994, + -3.8369361 + ] + }, + "properties": { + "timestamp": "2005-12-12T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8873084, + -3.8556542 + ] + }, + "properties": { + "timestamp": "2005-12-13T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8755528, + -3.8584634 + ] + }, + "properties": { + "timestamp": "2005-12-13T06:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8758772, + -3.8588689 + ] + }, + "properties": { + "timestamp": "2005-12-13T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8427953, + -3.8432129 + ] + }, + "properties": { + "timestamp": "2005-12-14T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8429144, + -3.842156 + ] + }, + "properties": { + "timestamp": "2005-12-14T06:02:22", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8429145, + -3.8421328 + ] + }, + "properties": { + "timestamp": "2005-12-14T12:01:11", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8421202, + -3.8551129 + ] + }, + "properties": { + "timestamp": "2005-12-14T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8870644, + -3.8774464 + ] + }, + "properties": { + "timestamp": "2005-12-15T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8874408, + -3.8928316 + ] + }, + "properties": { + "timestamp": "2005-12-15T06:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8872283, + -3.8930088 + ] + }, + "properties": { + "timestamp": "2005-12-15T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.874292, + -3.8910717 + ] + }, + "properties": { + "timestamp": "2005-12-15T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8502731, + -3.8741988 + ] + }, + "properties": { + "timestamp": "2005-12-16T00:00:45", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8535348, + -3.829652 + ] + }, + "properties": { + "timestamp": "2005-12-16T06:02:59", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8538016, + -3.8293115 + ] + }, + "properties": { + "timestamp": "2005-12-16T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8522688, + -3.8213826 + ] + }, + "properties": { + "timestamp": "2005-12-16T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9311423, + -3.7614134 + ] + }, + "properties": { + "timestamp": "2005-12-17T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0007615, + -3.7908319 + ] + }, + "properties": { + "timestamp": "2005-12-17T06:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0023115, + -3.7907852 + ] + }, + "properties": { + "timestamp": "2005-12-17T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0152443, + -3.8064115 + ] + }, + "properties": { + "timestamp": "2005-12-17T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9864426, + -3.8021134 + ] + }, + "properties": { + "timestamp": "2005-12-18T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9983408, + -3.794491 + ] + }, + "properties": { + "timestamp": "2005-12-18T06:01:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9982312, + -3.7947171 + ] + }, + "properties": { + "timestamp": "2005-12-18T12:01:45", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9981406, + -3.7946446 + ] + }, + "properties": { + "timestamp": "2005-12-18T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9981913, + -3.7947713 + ] + }, + "properties": { + "timestamp": "2005-12-19T06:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.998158, + -3.794713 + ] + }, + "properties": { + "timestamp": "2005-12-19T12:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9982143, + -3.7946849 + ] + }, + "properties": { + "timestamp": "2005-12-19T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9983692, + -3.794699 + ] + }, + "properties": { + "timestamp": "2005-12-20T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9940015, + -3.8075658 + ] + }, + "properties": { + "timestamp": "2005-12-20T06:01:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9938749, + -3.8076443 + ] + }, + "properties": { + "timestamp": "2005-12-20T18:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.993412, + -3.807831 + ] + }, + "properties": { + "timestamp": "2005-12-21T00:00:43", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9923375, + -3.8073392 + ] + }, + "properties": { + "timestamp": "2005-12-21T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9869668, + -3.7838928 + ] + }, + "properties": { + "timestamp": "2005-12-22T00:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98745, + -3.7830476 + ] + }, + "properties": { + "timestamp": "2005-12-22T06:01:39", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.987383, + -3.7827468 + ] + }, + "properties": { + "timestamp": "2005-12-22T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9932321, + -3.8081743 + ] + }, + "properties": { + "timestamp": "2005-12-23T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0009402, + -3.7997865 + ] + }, + "properties": { + "timestamp": "2005-12-23T12:01:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0008082, + -3.8000236 + ] + }, + "properties": { + "timestamp": "2005-12-23T18:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9260435, + -3.8031663 + ] + }, + "properties": { + "timestamp": "2005-12-24T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912415, + -3.8002036 + ] + }, + "properties": { + "timestamp": "2005-12-24T18:02:10", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9135689, + -3.7993775 + ] + }, + "properties": { + "timestamp": "2005-12-25T00:00:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9123336, + -3.8009192 + ] + }, + "properties": { + "timestamp": "2005-12-25T06:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9124021, + -3.8009034 + ] + }, + "properties": { + "timestamp": "2005-12-25T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9217263, + -3.7979096 + ] + }, + "properties": { + "timestamp": "2005-12-25T18:01:19", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9123242, + -3.798505 + ] + }, + "properties": { + "timestamp": "2005-12-26T00:00:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9185582, + -3.7933968 + ] + }, + "properties": { + "timestamp": "2005-12-26T12:02:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9177585, + -3.7936622 + ] + }, + "properties": { + "timestamp": "2005-12-26T18:01:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8849912, + -3.7421383 + ] + }, + "properties": { + "timestamp": "2005-12-27T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8851795, + -3.7416585 + ] + }, + "properties": { + "timestamp": "2005-12-27T12:01:52", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.885213, + -3.7415273 + ] + }, + "properties": { + "timestamp": "2005-12-27T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8993174, + -3.7527329 + ] + }, + "properties": { + "timestamp": "2005-12-28T00:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9348362, + -3.7697514 + ] + }, + "properties": { + "timestamp": "2005-12-28T06:01:50", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354244, + -3.7697688 + ] + }, + "properties": { + "timestamp": "2005-12-28T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566077, + -3.7734137 + ] + }, + "properties": { + "timestamp": "2005-12-29T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9371456, + -3.7784464 + ] + }, + "properties": { + "timestamp": "2005-12-29T06:01:22", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9368294, + -3.7790615 + ] + }, + "properties": { + "timestamp": "2005-12-29T12:02:52", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896275, + -3.7532715 + ] + }, + "properties": { + "timestamp": "2005-12-30T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8880036, + -3.7521772 + ] + }, + "properties": { + "timestamp": "2005-12-30T06:01:23", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8879121, + -3.7519218 + ] + }, + "properties": { + "timestamp": "2005-12-30T12:02:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8968088, + -3.752102 + ] + }, + "properties": { + "timestamp": "2005-12-30T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8943661, + -3.7537454 + ] + }, + "properties": { + "timestamp": "2005-12-31T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8154018, + -3.7809234 + ] + }, + "properties": { + "timestamp": "2005-12-31T06:02:11", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8153394, + -3.7819564 + ] + }, + "properties": { + "timestamp": "2005-12-31T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.809491, + -3.7851522 + ] + }, + "properties": { + "timestamp": "2006-01-01T00:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8033179, + -3.794278 + ] + }, + "properties": { + "timestamp": "2006-01-01T06:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8032162, + -3.794356 + ] + }, + "properties": { + "timestamp": "2006-01-01T12:02:26", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8031016, + -3.7948985 + ] + }, + "properties": { + "timestamp": "2006-01-01T18:01:21", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8860106, + -3.846002 + ] + }, + "properties": { + "timestamp": "2006-02-01T00:00:47", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9335898, + -3.8312352 + ] + }, + "properties": { + "timestamp": "2006-02-01T06:02:32", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341476, + -3.8308718 + ] + }, + "properties": { + "timestamp": "2006-02-01T12:01:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9536569, + -3.7798853 + ] + }, + "properties": { + "timestamp": "2006-02-01T18:01:17", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9553956, + -3.7737721 + ] + }, + "properties": { + "timestamp": "2006-03-01T00:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9531581, + -3.771696 + ] + }, + "properties": { + "timestamp": "2006-03-01T12:01:28", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9531064, + -3.771971 + ] + }, + "properties": { + "timestamp": "2006-03-01T18:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9700436, + -3.7876351 + ] + }, + "properties": { + "timestamp": "2006-04-01T00:00:48", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0069601, + -3.7897744 + ] + }, + "properties": { + "timestamp": "2006-04-01T12:01:50", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0106815, + -3.7936237 + ] + }, + "properties": { + "timestamp": "2006-04-01T18:00:57", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9823993, + -3.8377964 + ] + }, + "properties": { + "timestamp": "2006-05-01T00:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9676828, + -3.8402816 + ] + }, + "properties": { + "timestamp": "2006-05-01T06:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.967356, + -3.840409 + ] + }, + "properties": { + "timestamp": "2006-05-01T18:00:48", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8916662, + -3.8523615 + ] + }, + "properties": { + "timestamp": "2006-06-01T00:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8796751, + -3.8388394 + ] + }, + "properties": { + "timestamp": "2006-06-01T06:01:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8506097, + -3.8449172 + ] + }, + "properties": { + "timestamp": "2006-06-01T18:01:12", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8057644, + -3.8477393 + ] + }, + "properties": { + "timestamp": "2006-07-01T00:00:41", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854274, + -3.8355154 + ] + }, + "properties": { + "timestamp": "2006-07-01T06:01:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854879, + -3.8355716 + ] + }, + "properties": { + "timestamp": "2006-07-01T12:01:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854078, + -3.8354293 + ] + }, + "properties": { + "timestamp": "2006-07-01T18:00:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8129324, + -3.8744959 + ] + }, + "properties": { + "timestamp": "2006-08-01T00:00:41", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8564496, + -3.8532243 + ] + }, + "properties": { + "timestamp": "2006-08-01T06:00:48", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8711941, + -3.8561049 + ] + }, + "properties": { + "timestamp": "2006-08-01T18:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9135374, + -3.8153424 + ] + }, + "properties": { + "timestamp": "2006-09-01T00:00:48", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9585402, + -3.7744347 + ] + }, + "properties": { + "timestamp": "2006-09-01T06:00:46", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9612977, + -3.7709226 + ] + }, + "properties": { + "timestamp": "2006-09-01T12:01:23", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9612627, + -3.7710508 + ] + }, + "properties": { + "timestamp": "2006-09-01T18:02:15", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.936568, + -3.7621678 + ] + }, + "properties": { + "timestamp": "2006-10-01T00:00:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8998901, + -3.750662 + ] + }, + "properties": { + "timestamp": "2006-10-01T06:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8976737, + -3.752674 + ] + }, + "properties": { + "timestamp": "2006-10-01T18:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Diana", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8726472, + -3.7879547 + ] + }, + "properties": { + "timestamp": "2005-10-17T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9276301, + -3.809511 + ] + }, + "properties": { + "timestamp": "2005-10-17T04:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9277187, + -3.8094936 + ] + }, + "properties": { + "timestamp": "2005-10-17T08:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.926666, + -3.8067815 + ] + }, + "properties": { + "timestamp": "2005-10-17T18:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93234, + -3.7934002 + ] + }, + "properties": { + "timestamp": "2005-10-18T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9412745, + -3.7829738 + ] + }, + "properties": { + "timestamp": "2005-10-18T06:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9525228, + -3.7764 + ] + }, + "properties": { + "timestamp": "2005-10-18T18:01:24", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9466397, + -3.7799364 + ] + }, + "properties": { + "timestamp": "2005-10-19T00:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.932842, + -3.7837349 + ] + }, + "properties": { + "timestamp": "2005-10-19T06:02:23", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9329729, + -3.7842785 + ] + }, + "properties": { + "timestamp": "2005-10-19T12:02:10", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9314648, + -3.7840574 + ] + }, + "properties": { + "timestamp": "2005-10-19T18:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.920933, + -3.807275 + ] + }, + "properties": { + "timestamp": "2005-10-20T00:00:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9219342, + -3.8089195 + ] + }, + "properties": { + "timestamp": "2005-10-20T06:00:41", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241405, + -3.8123446 + ] + }, + "properties": { + "timestamp": "2005-10-20T12:01:11", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9414039, + -3.8076295 + ] + }, + "properties": { + "timestamp": "2005-10-20T18:02:40", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9402203, + -3.8082918 + ] + }, + "properties": { + "timestamp": "2005-10-21T00:02:59", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9827453, + -3.8363323 + ] + }, + "properties": { + "timestamp": "2005-10-21T06:02:14", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0097373, + -3.8399 + ] + }, + "properties": { + "timestamp": "2005-10-22T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9564049, + -3.8349546 + ] + }, + "properties": { + "timestamp": "2005-10-22T06:01:35", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9455606, + -3.8415998 + ] + }, + "properties": { + "timestamp": "2005-10-22T18:01:42", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8911668, + -3.8426372 + ] + }, + "properties": { + "timestamp": "2005-10-23T00:01:18", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8966199, + -3.8247382 + ] + }, + "properties": { + "timestamp": "2005-10-23T06:03:04", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896506, + -3.8247916 + ] + }, + "properties": { + "timestamp": "2005-10-23T12:01:48", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9440727, + -3.8023556 + ] + }, + "properties": { + "timestamp": "2005-10-23T18:00:50", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9701527, + -3.7786257 + ] + }, + "properties": { + "timestamp": "2005-10-24T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9847675, + -3.786908 + ] + }, + "properties": { + "timestamp": "2005-10-24T06:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9860959, + -3.7862652 + ] + }, + "properties": { + "timestamp": "2005-10-24T12:02:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9742796, + -3.7927771 + ] + }, + "properties": { + "timestamp": "2005-10-24T18:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9856943, + -3.7896178 + ] + }, + "properties": { + "timestamp": "2005-10-25T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9674311, + -3.7876045 + ] + }, + "properties": { + "timestamp": "2005-10-25T06:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.966104, + -3.7882284 + ] + }, + "properties": { + "timestamp": "2005-10-25T12:01:23", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9847221, + -3.789104 + ] + }, + "properties": { + "timestamp": "2005-10-25T18:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9854944, + -3.7898854 + ] + }, + "properties": { + "timestamp": "2005-10-26T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9807055, + -3.7897196 + ] + }, + "properties": { + "timestamp": "2005-10-26T06:01:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9854378, + -3.7899078 + ] + }, + "properties": { + "timestamp": "2005-10-26T18:00:49", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566241, + -3.7736331 + ] + }, + "properties": { + "timestamp": "2005-10-27T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9561683, + -3.7735487 + ] + }, + "properties": { + "timestamp": "2005-10-27T12:01:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9565721, + -3.7736336 + ] + }, + "properties": { + "timestamp": "2005-10-27T18:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9570729, + -3.7925129 + ] + }, + "properties": { + "timestamp": "2005-10-28T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9345832, + -3.7998368 + ] + }, + "properties": { + "timestamp": "2005-10-28T06:01:51", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9358734, + -3.7982877 + ] + }, + "properties": { + "timestamp": "2005-10-28T12:01:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9355567, + -3.8040131 + ] + }, + "properties": { + "timestamp": "2005-10-28T18:00:47", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341733, + -3.803391 + ] + }, + "properties": { + "timestamp": "2005-10-29T00:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9309636, + -3.8038617 + ] + }, + "properties": { + "timestamp": "2005-10-29T06:00:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9307034, + -3.8034904 + ] + }, + "properties": { + "timestamp": "2005-10-29T12:03:11", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9350366, + -3.8036803 + ] + }, + "properties": { + "timestamp": "2005-10-29T18:01:54", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9357156, + -3.8034905 + ] + }, + "properties": { + "timestamp": "2005-10-30T00:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354527, + -3.8032471 + ] + }, + "properties": { + "timestamp": "2005-10-30T06:00:53", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9394798, + -3.7959783 + ] + }, + "properties": { + "timestamp": "2005-10-30T18:01:45", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9508521, + -3.8096459 + ] + }, + "properties": { + "timestamp": "2005-10-31T00:00:43", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9398927, + -3.7928684 + ] + }, + "properties": { + "timestamp": "2005-10-31T06:01:24", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.939908, + -3.7928939 + ] + }, + "properties": { + "timestamp": "2005-10-31T12:02:21", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241093, + -3.7964649 + ] + }, + "properties": { + "timestamp": "2005-10-31T18:01:11", + "year": 2005, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9485841, + -3.7747381 + ] + }, + "properties": { + "timestamp": "2005-11-01T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566237, + -3.7874507 + ] + }, + "properties": { + "timestamp": "2005-11-01T06:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9723827, + -3.8107156 + ] + }, + "properties": { + "timestamp": "2005-11-01T18:00:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9361692, + -3.8061378 + ] + }, + "properties": { + "timestamp": "2005-11-02T00:01:12", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9142425, + -3.8188095 + ] + }, + "properties": { + "timestamp": "2005-11-02T06:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9143214, + -3.8188032 + ] + }, + "properties": { + "timestamp": "2005-11-02T12:02:16", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9421614, + -3.8482579 + ] + }, + "properties": { + "timestamp": "2005-11-03T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9353549, + -3.9108167 + ] + }, + "properties": { + "timestamp": "2005-11-03T06:01:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9352072, + -3.9019254 + ] + }, + "properties": { + "timestamp": "2005-11-03T12:02:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9367545, + -3.8751715 + ] + }, + "properties": { + "timestamp": "2005-11-03T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.992074, + -3.8495567 + ] + }, + "properties": { + "timestamp": "2005-11-04T00:01:43", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9817082, + -3.8378692 + ] + }, + "properties": { + "timestamp": "2005-11-04T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9681627, + -3.8274767 + ] + }, + "properties": { + "timestamp": "2005-11-05T00:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9645135, + -3.8242388 + ] + }, + "properties": { + "timestamp": "2005-11-05T06:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9602053, + -3.8514934 + ] + }, + "properties": { + "timestamp": "2005-11-05T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.950178, + -3.8319802 + ] + }, + "properties": { + "timestamp": "2005-11-06T00:02:12", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9789347, + -3.8079672 + ] + }, + "properties": { + "timestamp": "2005-11-06T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9806818, + -3.8267109 + ] + }, + "properties": { + "timestamp": "2005-11-07T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9811773, + -3.8244995 + ] + }, + "properties": { + "timestamp": "2005-11-07T06:02:22", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9811552, + -3.8250467 + ] + }, + "properties": { + "timestamp": "2005-11-07T18:02:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9806155, + -3.8249939 + ] + }, + "properties": { + "timestamp": "2005-11-08T00:02:57", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9812815, + -3.8250167 + ] + }, + "properties": { + "timestamp": "2005-11-08T18:01:11", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9791441, + -3.8210712 + ] + }, + "properties": { + "timestamp": "2005-11-09T00:00:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9812572, + -3.8249577 + ] + }, + "properties": { + "timestamp": "2005-11-09T18:02:22", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.974705, + -3.8157164 + ] + }, + "properties": { + "timestamp": "2005-11-10T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9790593, + -3.8805252 + ] + }, + "properties": { + "timestamp": "2005-11-10T06:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9791293, + -3.8793485 + ] + }, + "properties": { + "timestamp": "2005-11-10T12:01:38", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9468207, + -3.871908 + ] + }, + "properties": { + "timestamp": "2005-11-10T18:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7932958, + -3.830595 + ] + }, + "properties": { + "timestamp": "2005-11-11T06:02:24", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7906729, + -3.8040805 + ] + }, + "properties": { + "timestamp": "2005-11-11T18:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9289922, + -3.7882059 + ] + }, + "properties": { + "timestamp": "2005-11-12T00:01:32", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.972632, + -3.7929141 + ] + }, + "properties": { + "timestamp": "2005-11-12T06:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9722972, + -3.7924692 + ] + }, + "properties": { + "timestamp": "2005-11-12T12:02:22", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9723015, + -3.7927592 + ] + }, + "properties": { + "timestamp": "2005-11-12T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9859557, + -3.7622538 + ] + }, + "properties": { + "timestamp": "2005-11-13T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9794018, + -3.7416115 + ] + }, + "properties": { + "timestamp": "2005-11-13T06:01:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9771279, + -3.7422633 + ] + }, + "properties": { + "timestamp": "2005-11-13T18:02:41", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9242777, + -3.7068101 + ] + }, + "properties": { + "timestamp": "2005-11-14T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9078422, + -3.6797778 + ] + }, + "properties": { + "timestamp": "2005-11-14T06:02:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9082117, + -3.6801179 + ] + }, + "properties": { + "timestamp": "2005-11-14T12:01:11", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9081355, + -3.6804927 + ] + }, + "properties": { + "timestamp": "2005-11-14T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.907886, + -3.6824985 + ] + }, + "properties": { + "timestamp": "2005-11-15T00:01:56", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9078866, + -3.6797342 + ] + }, + "properties": { + "timestamp": "2005-11-15T06:01:45", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9078783, + -3.6797805 + ] + }, + "properties": { + "timestamp": "2005-11-15T12:01:52", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9077937, + -3.6801835 + ] + }, + "properties": { + "timestamp": "2005-11-15T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9073456, + -3.680025 + ] + }, + "properties": { + "timestamp": "2005-11-16T00:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9000518, + -3.6928192 + ] + }, + "properties": { + "timestamp": "2005-11-16T06:02:00", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9003562, + -3.693089 + ] + }, + "properties": { + "timestamp": "2005-11-16T18:01:24", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9054426, + -3.7298572 + ] + }, + "properties": { + "timestamp": "2005-11-17T00:01:27", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9353667, + -3.7695233 + ] + }, + "properties": { + "timestamp": "2005-11-17T12:01:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.947416, + -3.7819424 + ] + }, + "properties": { + "timestamp": "2005-11-17T18:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0120909, + -3.8096463 + ] + }, + "properties": { + "timestamp": "2005-11-18T12:02:21", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0137227, + -3.8023266 + ] + }, + "properties": { + "timestamp": "2005-11-18T18:01:24", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9777724, + -3.7929449 + ] + }, + "properties": { + "timestamp": "2005-11-19T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9623615, + -3.7937513 + ] + }, + "properties": { + "timestamp": "2005-11-19T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9328851, + -3.7882505 + ] + }, + "properties": { + "timestamp": "2005-11-20T00:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9326082, + -3.7882154 + ] + }, + "properties": { + "timestamp": "2005-11-20T06:01:46", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9327685, + -3.7879265 + ] + }, + "properties": { + "timestamp": "2005-11-20T12:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9290757, + -3.7937648 + ] + }, + "properties": { + "timestamp": "2005-11-20T18:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8396696, + -3.8515562 + ] + }, + "properties": { + "timestamp": "2005-11-21T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8022713, + -3.8238545 + ] + }, + "properties": { + "timestamp": "2005-11-21T12:02:29", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8115335, + -3.7833669 + ] + }, + "properties": { + "timestamp": "2005-11-21T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8877723, + -3.7456455 + ] + }, + "properties": { + "timestamp": "2005-11-22T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9562783, + -3.7729205 + ] + }, + "properties": { + "timestamp": "2005-11-22T12:03:03", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.971166, + -3.7893109 + ] + }, + "properties": { + "timestamp": "2005-11-22T18:00:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582654, + -3.8064203 + ] + }, + "properties": { + "timestamp": "2005-11-23T00:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9588202, + -3.7910563 + ] + }, + "properties": { + "timestamp": "2005-11-23T06:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9581681, + -3.7915831 + ] + }, + "properties": { + "timestamp": "2005-11-23T12:00:46", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9866086, + -3.8034942 + ] + }, + "properties": { + "timestamp": "2005-11-23T18:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0177826, + -3.765258 + ] + }, + "properties": { + "timestamp": "2005-11-24T00:01:19", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9850371, + -3.7325554 + ] + }, + "properties": { + "timestamp": "2005-11-24T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9770083, + -3.7259093 + ] + }, + "properties": { + "timestamp": "2005-11-25T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9773171, + -3.7259743 + ] + }, + "properties": { + "timestamp": "2005-11-25T06:01:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9773987, + -3.7260294 + ] + }, + "properties": { + "timestamp": "2005-11-25T12:01:55", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97686, + -3.7284153 + ] + }, + "properties": { + "timestamp": "2005-11-25T18:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9697296, + -3.7287132 + ] + }, + "properties": { + "timestamp": "2005-11-26T00:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9795979, + -3.7268832 + ] + }, + "properties": { + "timestamp": "2005-11-26T06:01:17", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9772275, + -3.7259061 + ] + }, + "properties": { + "timestamp": "2005-11-26T12:03:06", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.976888, + -3.7258352 + ] + }, + "properties": { + "timestamp": "2005-11-26T18:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9751614, + -3.7368545 + ] + }, + "properties": { + "timestamp": "2005-11-27T12:01:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9756926, + -3.7441592 + ] + }, + "properties": { + "timestamp": "2005-11-27T18:01:23", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9732214, + -3.7930892 + ] + }, + "properties": { + "timestamp": "2005-11-28T00:00:47", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9719799, + -3.7974182 + ] + }, + "properties": { + "timestamp": "2005-11-28T12:01:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9742594, + -3.8033158 + ] + }, + "properties": { + "timestamp": "2005-11-28T18:00:54", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9438136, + -3.8702075 + ] + }, + "properties": { + "timestamp": "2005-11-29T00:00:42", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9249465, + -3.8815746 + ] + }, + "properties": { + "timestamp": "2005-11-29T06:01:51", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.928581, + -3.8818334 + ] + }, + "properties": { + "timestamp": "2005-11-29T12:00:53", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9285813, + -3.8822884 + ] + }, + "properties": { + "timestamp": "2005-11-29T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8701305, + -3.8934086 + ] + }, + "properties": { + "timestamp": "2005-11-30T00:00:42", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9109298, + -3.8484511 + ] + }, + "properties": { + "timestamp": "2005-11-30T12:00:49", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9167125, + -3.8422184 + ] + }, + "properties": { + "timestamp": "2005-11-30T18:00:48", + "year": 2005, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9237614, + -3.8396436 + ] + }, + "properties": { + "timestamp": "2005-12-01T00:00:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9249859, + -3.8350118 + ] + }, + "properties": { + "timestamp": "2005-12-01T06:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9312856, + -3.8288389 + ] + }, + "properties": { + "timestamp": "2005-12-01T18:01:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9329107, + -3.8756283 + ] + }, + "properties": { + "timestamp": "2005-12-02T00:00:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9558162, + -3.8661086 + ] + }, + "properties": { + "timestamp": "2005-12-02T06:03:02", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.956307, + -3.8657851 + ] + }, + "properties": { + "timestamp": "2005-12-02T12:03:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9843564, + -3.8595677 + ] + }, + "properties": { + "timestamp": "2005-12-02T18:00:49", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9856231, + -3.8380284 + ] + }, + "properties": { + "timestamp": "2005-12-03T00:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9872703, + -3.7996358 + ] + }, + "properties": { + "timestamp": "2005-12-03T06:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9867835, + -3.7915331 + ] + }, + "properties": { + "timestamp": "2005-12-03T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9339156, + -3.8115357 + ] + }, + "properties": { + "timestamp": "2005-12-04T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9200856, + -3.8132376 + ] + }, + "properties": { + "timestamp": "2005-12-04T06:01:23", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9106981, + -3.8248524 + ] + }, + "properties": { + "timestamp": "2005-12-04T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8699549, + -3.8531267 + ] + }, + "properties": { + "timestamp": "2005-12-05T00:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8236513, + -3.8333694 + ] + }, + "properties": { + "timestamp": "2005-12-05T06:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8236536, + -3.8331395 + ] + }, + "properties": { + "timestamp": "2005-12-05T12:00:52", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8170115, + -3.8103564 + ] + }, + "properties": { + "timestamp": "2005-12-05T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8287286, + -3.735666 + ] + }, + "properties": { + "timestamp": "2005-12-06T00:00:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8648178, + -3.7215043 + ] + }, + "properties": { + "timestamp": "2005-12-06T06:01:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8647785, + -3.7215049 + ] + }, + "properties": { + "timestamp": "2005-12-06T12:01:52", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8817575, + -3.7070873 + ] + }, + "properties": { + "timestamp": "2005-12-06T18:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9370422, + -3.6879458 + ] + }, + "properties": { + "timestamp": "2005-12-07T00:00:23", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9649943, + -3.7181153 + ] + }, + "properties": { + "timestamp": "2005-12-07T12:02:17", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9656724, + -3.7275217 + ] + }, + "properties": { + "timestamp": "2005-12-07T18:01:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9666299, + -3.7261697 + ] + }, + "properties": { + "timestamp": "2005-12-08T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.966375, + -3.7258943 + ] + }, + "properties": { + "timestamp": "2005-12-08T06:03:08", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9663514, + -3.7260144 + ] + }, + "properties": { + "timestamp": "2005-12-08T12:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9660928, + -3.7262596 + ] + }, + "properties": { + "timestamp": "2005-12-08T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9661065, + -3.726246 + ] + }, + "properties": { + "timestamp": "2005-12-09T00:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9662617, + -3.7273358 + ] + }, + "properties": { + "timestamp": "2005-12-09T06:02:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9637194, + -3.7256954 + ] + }, + "properties": { + "timestamp": "2005-12-09T12:01:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.963192, + -3.725675 + ] + }, + "properties": { + "timestamp": "2005-12-09T18:01:02", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9650063, + -3.7277695 + ] + }, + "properties": { + "timestamp": "2005-12-10T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9663287, + -3.727339 + ] + }, + "properties": { + "timestamp": "2005-12-10T06:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9662894, + -3.7273215 + ] + }, + "properties": { + "timestamp": "2005-12-10T12:01:46", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.965817, + -3.7272306 + ] + }, + "properties": { + "timestamp": "2005-12-10T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9395903, + -3.7785349 + ] + }, + "properties": { + "timestamp": "2005-12-11T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9376284, + -3.7812879 + ] + }, + "properties": { + "timestamp": "2005-12-11T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9351285, + -3.8374356 + ] + }, + "properties": { + "timestamp": "2005-12-12T00:01:13", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9242597, + -3.8367449 + ] + }, + "properties": { + "timestamp": "2005-12-12T06:03:02", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241991, + -3.8368872 + ] + }, + "properties": { + "timestamp": "2005-12-12T12:02:19", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9241994, + -3.8369361 + ] + }, + "properties": { + "timestamp": "2005-12-12T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8873084, + -3.8556542 + ] + }, + "properties": { + "timestamp": "2005-12-13T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8755528, + -3.8584634 + ] + }, + "properties": { + "timestamp": "2005-12-13T06:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8758772, + -3.8588689 + ] + }, + "properties": { + "timestamp": "2005-12-13T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8427953, + -3.8432129 + ] + }, + "properties": { + "timestamp": "2005-12-14T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8429144, + -3.842156 + ] + }, + "properties": { + "timestamp": "2005-12-14T06:02:22", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8429145, + -3.8421328 + ] + }, + "properties": { + "timestamp": "2005-12-14T12:01:11", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8421202, + -3.8551129 + ] + }, + "properties": { + "timestamp": "2005-12-14T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8870644, + -3.8774464 + ] + }, + "properties": { + "timestamp": "2005-12-15T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8874408, + -3.8928316 + ] + }, + "properties": { + "timestamp": "2005-12-15T06:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8872283, + -3.8930088 + ] + }, + "properties": { + "timestamp": "2005-12-15T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.874292, + -3.8910717 + ] + }, + "properties": { + "timestamp": "2005-12-15T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8502731, + -3.8741988 + ] + }, + "properties": { + "timestamp": "2005-12-16T00:00:45", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8535348, + -3.829652 + ] + }, + "properties": { + "timestamp": "2005-12-16T06:02:59", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8538016, + -3.8293115 + ] + }, + "properties": { + "timestamp": "2005-12-16T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8522688, + -3.8213826 + ] + }, + "properties": { + "timestamp": "2005-12-16T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9311423, + -3.7614134 + ] + }, + "properties": { + "timestamp": "2005-12-17T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0007615, + -3.7908319 + ] + }, + "properties": { + "timestamp": "2005-12-17T06:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0023115, + -3.7907852 + ] + }, + "properties": { + "timestamp": "2005-12-17T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0152443, + -3.8064115 + ] + }, + "properties": { + "timestamp": "2005-12-17T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9864426, + -3.8021134 + ] + }, + "properties": { + "timestamp": "2005-12-18T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9983408, + -3.794491 + ] + }, + "properties": { + "timestamp": "2005-12-18T06:01:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9982312, + -3.7947171 + ] + }, + "properties": { + "timestamp": "2005-12-18T12:01:45", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9981406, + -3.7946446 + ] + }, + "properties": { + "timestamp": "2005-12-18T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9981913, + -3.7947713 + ] + }, + "properties": { + "timestamp": "2005-12-19T06:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.998158, + -3.794713 + ] + }, + "properties": { + "timestamp": "2005-12-19T12:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9982143, + -3.7946849 + ] + }, + "properties": { + "timestamp": "2005-12-19T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9983692, + -3.794699 + ] + }, + "properties": { + "timestamp": "2005-12-20T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9940015, + -3.8075658 + ] + }, + "properties": { + "timestamp": "2005-12-20T06:01:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9938749, + -3.8076443 + ] + }, + "properties": { + "timestamp": "2005-12-20T18:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.993412, + -3.807831 + ] + }, + "properties": { + "timestamp": "2005-12-21T00:00:43", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9923375, + -3.8073392 + ] + }, + "properties": { + "timestamp": "2005-12-21T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9869668, + -3.7838928 + ] + }, + "properties": { + "timestamp": "2005-12-22T00:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98745, + -3.7830476 + ] + }, + "properties": { + "timestamp": "2005-12-22T06:01:39", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.987383, + -3.7827468 + ] + }, + "properties": { + "timestamp": "2005-12-22T18:00:55", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9932321, + -3.8081743 + ] + }, + "properties": { + "timestamp": "2005-12-23T00:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0009402, + -3.7997865 + ] + }, + "properties": { + "timestamp": "2005-12-23T12:01:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0008082, + -3.8000236 + ] + }, + "properties": { + "timestamp": "2005-12-23T18:01:51", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9260435, + -3.8031663 + ] + }, + "properties": { + "timestamp": "2005-12-24T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912415, + -3.8002036 + ] + }, + "properties": { + "timestamp": "2005-12-24T18:02:10", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9135689, + -3.7993775 + ] + }, + "properties": { + "timestamp": "2005-12-25T00:00:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9123336, + -3.8009192 + ] + }, + "properties": { + "timestamp": "2005-12-25T06:00:53", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9124021, + -3.8009034 + ] + }, + "properties": { + "timestamp": "2005-12-25T12:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9217263, + -3.7979096 + ] + }, + "properties": { + "timestamp": "2005-12-25T18:01:19", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9123242, + -3.798505 + ] + }, + "properties": { + "timestamp": "2005-12-26T00:00:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9185582, + -3.7933968 + ] + }, + "properties": { + "timestamp": "2005-12-26T12:02:24", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9177585, + -3.7936622 + ] + }, + "properties": { + "timestamp": "2005-12-26T18:01:41", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8849912, + -3.7421383 + ] + }, + "properties": { + "timestamp": "2005-12-27T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8851795, + -3.7416585 + ] + }, + "properties": { + "timestamp": "2005-12-27T12:01:52", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.885213, + -3.7415273 + ] + }, + "properties": { + "timestamp": "2005-12-27T18:01:18", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8993174, + -3.7527329 + ] + }, + "properties": { + "timestamp": "2005-12-28T00:01:12", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9348362, + -3.7697514 + ] + }, + "properties": { + "timestamp": "2005-12-28T06:01:50", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354244, + -3.7697688 + ] + }, + "properties": { + "timestamp": "2005-12-28T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566077, + -3.7734137 + ] + }, + "properties": { + "timestamp": "2005-12-29T00:00:48", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9371456, + -3.7784464 + ] + }, + "properties": { + "timestamp": "2005-12-29T06:01:22", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9368294, + -3.7790615 + ] + }, + "properties": { + "timestamp": "2005-12-29T12:02:52", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896275, + -3.7532715 + ] + }, + "properties": { + "timestamp": "2005-12-30T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8880036, + -3.7521772 + ] + }, + "properties": { + "timestamp": "2005-12-30T06:01:23", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8879121, + -3.7519218 + ] + }, + "properties": { + "timestamp": "2005-12-30T12:02:42", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8968088, + -3.752102 + ] + }, + "properties": { + "timestamp": "2005-12-30T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8943661, + -3.7537454 + ] + }, + "properties": { + "timestamp": "2005-12-31T00:00:47", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8154018, + -3.7809234 + ] + }, + "properties": { + "timestamp": "2005-12-31T06:02:11", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8153394, + -3.7819564 + ] + }, + "properties": { + "timestamp": "2005-12-31T18:00:54", + "year": 2005, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.809491, + -3.7851522 + ] + }, + "properties": { + "timestamp": "2006-01-01T00:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8033179, + -3.794278 + ] + }, + "properties": { + "timestamp": "2006-01-01T06:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8032162, + -3.794356 + ] + }, + "properties": { + "timestamp": "2006-01-01T12:02:26", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8031016, + -3.7948985 + ] + }, + "properties": { + "timestamp": "2006-01-01T18:01:21", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8860106, + -3.846002 + ] + }, + "properties": { + "timestamp": "2006-01-02T00:00:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9335898, + -3.8312352 + ] + }, + "properties": { + "timestamp": "2006-01-02T06:02:32", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341476, + -3.8308718 + ] + }, + "properties": { + "timestamp": "2006-01-02T12:01:55", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9536569, + -3.7798853 + ] + }, + "properties": { + "timestamp": "2006-01-02T18:01:17", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9553956, + -3.7737721 + ] + }, + "properties": { + "timestamp": "2006-01-03T00:00:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9531581, + -3.771696 + ] + }, + "properties": { + "timestamp": "2006-01-03T12:01:28", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9531064, + -3.771971 + ] + }, + "properties": { + "timestamp": "2006-01-03T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9700436, + -3.7876351 + ] + }, + "properties": { + "timestamp": "2006-01-04T00:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0069601, + -3.7897744 + ] + }, + "properties": { + "timestamp": "2006-01-04T12:01:50", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0106815, + -3.7936237 + ] + }, + "properties": { + "timestamp": "2006-01-04T18:00:57", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9823993, + -3.8377964 + ] + }, + "properties": { + "timestamp": "2006-01-05T00:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9676828, + -3.8402816 + ] + }, + "properties": { + "timestamp": "2006-01-05T06:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.967356, + -3.840409 + ] + }, + "properties": { + "timestamp": "2006-01-05T18:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8916662, + -3.8523615 + ] + }, + "properties": { + "timestamp": "2006-01-06T00:00:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8796751, + -3.8388394 + ] + }, + "properties": { + "timestamp": "2006-01-06T06:01:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8506097, + -3.8449172 + ] + }, + "properties": { + "timestamp": "2006-01-06T18:01:12", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8057644, + -3.8477393 + ] + }, + "properties": { + "timestamp": "2006-01-07T00:00:41", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854274, + -3.8355154 + ] + }, + "properties": { + "timestamp": "2006-01-07T06:01:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854879, + -3.8355716 + ] + }, + "properties": { + "timestamp": "2006-01-07T12:01:55", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7854078, + -3.8354293 + ] + }, + "properties": { + "timestamp": "2006-01-07T18:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8129324, + -3.8744959 + ] + }, + "properties": { + "timestamp": "2006-01-08T00:00:41", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8564496, + -3.8532243 + ] + }, + "properties": { + "timestamp": "2006-01-08T06:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8711941, + -3.8561049 + ] + }, + "properties": { + "timestamp": "2006-01-08T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9135374, + -3.8153424 + ] + }, + "properties": { + "timestamp": "2006-01-09T00:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9585402, + -3.7744347 + ] + }, + "properties": { + "timestamp": "2006-01-09T06:00:46", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9612977, + -3.7709226 + ] + }, + "properties": { + "timestamp": "2006-01-09T12:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9612627, + -3.7710508 + ] + }, + "properties": { + "timestamp": "2006-01-09T18:02:15", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.936568, + -3.7621678 + ] + }, + "properties": { + "timestamp": "2006-01-10T00:00:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8998901, + -3.750662 + ] + }, + "properties": { + "timestamp": "2006-01-10T06:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8976737, + -3.752674 + ] + }, + "properties": { + "timestamp": "2006-01-10T18:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8982907, + -3.7520769 + ] + }, + "properties": { + "timestamp": "2006-01-11T00:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8850706, + -3.7413761 + ] + }, + "properties": { + "timestamp": "2006-01-11T06:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8850907, + -3.7413653 + ] + }, + "properties": { + "timestamp": "2006-01-11T12:01:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8848136, + -3.7415069 + ] + }, + "properties": { + "timestamp": "2006-01-11T18:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8973648, + -3.75219 + ] + }, + "properties": { + "timestamp": "2006-01-12T00:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576394, + -3.77028 + ] + }, + "properties": { + "timestamp": "2006-01-12T18:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9486215, + -3.7719787 + ] + }, + "properties": { + "timestamp": "2006-01-13T00:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9478409, + -3.7728407 + ] + }, + "properties": { + "timestamp": "2006-01-13T12:01:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9476922, + -3.772629 + ] + }, + "properties": { + "timestamp": "2006-01-13T18:01:41", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.899932, + -3.7539009 + ] + }, + "properties": { + "timestamp": "2006-01-14T00:00:44", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8824987, + -3.7778873 + ] + }, + "properties": { + "timestamp": "2006-01-14T06:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8838669, + -3.7787946 + ] + }, + "properties": { + "timestamp": "2006-01-14T12:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8932016, + -3.7855017 + ] + }, + "properties": { + "timestamp": "2006-01-14T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8995352, + -3.7908567 + ] + }, + "properties": { + "timestamp": "2006-01-15T00:01:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8993126, + -3.7910013 + ] + }, + "properties": { + "timestamp": "2006-01-15T06:01:17", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8994645, + -3.7909663 + ] + }, + "properties": { + "timestamp": "2006-01-15T12:01:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8991399, + -3.7918082 + ] + }, + "properties": { + "timestamp": "2006-01-16T12:01:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8991385, + -3.791773 + ] + }, + "properties": { + "timestamp": "2006-01-16T18:01:18", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566147, + -3.7736209 + ] + }, + "properties": { + "timestamp": "2006-01-17T00:00:55", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9584381, + -3.7711472 + ] + }, + "properties": { + "timestamp": "2006-01-17T12:01:24", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9584078, + -3.775027 + ] + }, + "properties": { + "timestamp": "2006-01-17T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9568833, + -3.7739459 + ] + }, + "properties": { + "timestamp": "2006-01-18T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9565033, + -3.7794003 + ] + }, + "properties": { + "timestamp": "2006-01-18T06:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9565833, + -3.7792269 + ] + }, + "properties": { + "timestamp": "2006-01-18T12:01:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566409, + -3.7791998 + ] + }, + "properties": { + "timestamp": "2006-01-18T18:01:51", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9440225, + -3.7841486 + ] + }, + "properties": { + "timestamp": "2006-01-19T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9389161, + -3.7785874 + ] + }, + "properties": { + "timestamp": "2006-01-19T12:00:55", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9386998, + -3.7784371 + ] + }, + "properties": { + "timestamp": "2006-01-19T18:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9513238, + -3.8413099 + ] + }, + "properties": { + "timestamp": "2006-01-20T00:01:23", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9379513, + -3.8722863 + ] + }, + "properties": { + "timestamp": "2006-01-20T06:01:52", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.937815, + -3.8721792 + ] + }, + "properties": { + "timestamp": "2006-01-20T12:02:24", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9362529, + -3.8731109 + ] + }, + "properties": { + "timestamp": "2006-01-20T18:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8872609, + -3.8523065 + ] + }, + "properties": { + "timestamp": "2006-01-21T00:00:43", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8809852, + -3.8686592 + ] + }, + "properties": { + "timestamp": "2006-01-21T06:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8823192, + -3.8709245 + ] + }, + "properties": { + "timestamp": "2006-01-21T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.882474, + -3.8707473 + ] + }, + "properties": { + "timestamp": "2006-01-22T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8660597, + -3.8658458 + ] + }, + "properties": { + "timestamp": "2006-01-22T06:02:46", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8656531, + -3.8656053 + ] + }, + "properties": { + "timestamp": "2006-01-22T12:01:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8825765, + -3.8705448 + ] + }, + "properties": { + "timestamp": "2006-01-22T18:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8813519, + -3.870979 + ] + }, + "properties": { + "timestamp": "2006-01-23T00:02:32", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8823361, + -3.870953 + ] + }, + "properties": { + "timestamp": "2006-01-23T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8811172, + -3.8713064 + ] + }, + "properties": { + "timestamp": "2006-01-24T00:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8658988, + -3.865338 + ] + }, + "properties": { + "timestamp": "2006-01-24T06:01:35", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8431616, + -3.8538754 + ] + }, + "properties": { + "timestamp": "2006-01-25T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7541575, + -3.9172451 + ] + }, + "properties": { + "timestamp": "2006-01-25T06:02:11", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7541449, + -3.917236 + ] + }, + "properties": { + "timestamp": "2006-01-25T12:01:42", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7542436, + -3.9173276 + ] + }, + "properties": { + "timestamp": "2006-01-25T18:00:48", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7928411, + -3.8431475 + ] + }, + "properties": { + "timestamp": "2006-01-26T00:01:42", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7902958, + -3.8030436 + ] + }, + "properties": { + "timestamp": "2006-01-26T06:01:42", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7903268, + -3.8030713 + ] + }, + "properties": { + "timestamp": "2006-01-26T12:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.837192, + -3.7645569 + ] + }, + "properties": { + "timestamp": "2006-01-27T00:01:43", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9036472, + -3.758075 + ] + }, + "properties": { + "timestamp": "2006-01-27T06:00:47", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9036405, + -3.7580791 + ] + }, + "properties": { + "timestamp": "2006-01-27T12:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896857, + -3.7532447 + ] + }, + "properties": { + "timestamp": "2006-01-27T18:00:55", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9186108, + -3.7597128 + ] + }, + "properties": { + "timestamp": "2006-01-28T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9533048, + -3.7776666 + ] + }, + "properties": { + "timestamp": "2006-01-28T18:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9533147, + -3.7776504 + ] + }, + "properties": { + "timestamp": "2006-01-29T00:00:54", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9555532, + -3.773927 + ] + }, + "properties": { + "timestamp": "2006-01-29T18:01:17", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9481736, + -3.7767959 + ] + }, + "properties": { + "timestamp": "2006-01-30T00:01:17", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9467665, + -3.7773135 + ] + }, + "properties": { + "timestamp": "2006-01-30T12:01:11", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9468788, + -3.7776091 + ] + }, + "properties": { + "timestamp": "2006-01-30T18:01:49", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9566414, + -3.7738278 + ] + }, + "properties": { + "timestamp": "2006-01-31T00:00:53", + "year": 2006, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95679, + -3.7734349 + ] + }, + "properties": { + "timestamp": "2006-02-01T00:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9558666, + -3.7783826 + ] + }, + "properties": { + "timestamp": "2006-02-01T12:01:48", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9569011, + -3.776783 + ] + }, + "properties": { + "timestamp": "2006-02-01T18:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.957278, + -3.7777761 + ] + }, + "properties": { + "timestamp": "2006-02-02T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9558329, + -3.7782934 + ] + }, + "properties": { + "timestamp": "2006-02-02T06:02:11", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9557106, + -3.7780231 + ] + }, + "properties": { + "timestamp": "2006-02-02T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9557905, + -3.7730746 + ] + }, + "properties": { + "timestamp": "2006-02-03T00:00:52", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9556794, + -3.7780367 + ] + }, + "properties": { + "timestamp": "2006-02-03T18:01:23", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9563988, + -3.7750264 + ] + }, + "properties": { + "timestamp": "2006-02-04T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9557489, + -3.778352 + ] + }, + "properties": { + "timestamp": "2006-02-04T06:01:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95573, + -3.778019 + ] + }, + "properties": { + "timestamp": "2006-02-04T18:00:48", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8729372, + -3.7377756 + ] + }, + "properties": { + "timestamp": "2006-02-05T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8388896, + -3.7309423 + ] + }, + "properties": { + "timestamp": "2006-02-05T06:01:51", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8342061, + -3.7376426 + ] + }, + "properties": { + "timestamp": "2006-02-05T18:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8474394, + -3.850696 + ] + }, + "properties": { + "timestamp": "2006-02-06T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8790867, + -3.8729179 + ] + }, + "properties": { + "timestamp": "2006-02-06T06:01:45", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8790575, + -3.8728159 + ] + }, + "properties": { + "timestamp": "2006-02-06T12:01:11", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8922069, + -3.8709853 + ] + }, + "properties": { + "timestamp": "2006-02-06T18:01:24", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9669095, + -3.8266507 + ] + }, + "properties": { + "timestamp": "2006-02-07T00:01:12", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.955684, + -3.8349774 + ] + }, + "properties": { + "timestamp": "2006-02-07T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9730379, + -3.7910587 + ] + }, + "properties": { + "timestamp": "2006-02-08T00:01:17", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9722549, + -3.7911232 + ] + }, + "properties": { + "timestamp": "2006-02-08T06:03:10", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9705803, + -3.7907066 + ] + }, + "properties": { + "timestamp": "2006-02-08T12:03:11", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9728493, + -3.7909212 + ] + }, + "properties": { + "timestamp": "2006-02-08T18:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9725121, + -3.7907615 + ] + }, + "properties": { + "timestamp": "2006-02-09T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9700652, + -3.7898071 + ] + }, + "properties": { + "timestamp": "2006-02-09T06:01:19", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9574987, + -3.773039 + ] + }, + "properties": { + "timestamp": "2006-02-09T18:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9549329, + -3.7730745 + ] + }, + "properties": { + "timestamp": "2006-02-10T00:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9565331, + -3.7739538 + ] + }, + "properties": { + "timestamp": "2006-02-10T06:03:00", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9555163, + -3.7729205 + ] + }, + "properties": { + "timestamp": "2006-02-10T12:03:08", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9600976, + -3.7742942 + ] + }, + "properties": { + "timestamp": "2006-02-10T18:00:57", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96186, + -3.773962 + ] + }, + "properties": { + "timestamp": "2006-02-11T00:00:47", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9568566, + -3.774109 + ] + }, + "properties": { + "timestamp": "2006-02-11T06:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576052, + -3.775994 + ] + }, + "properties": { + "timestamp": "2006-02-11T12:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576458, + -3.7759565 + ] + }, + "properties": { + "timestamp": "2006-02-11T18:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9567248, + -3.7722907 + ] + }, + "properties": { + "timestamp": "2006-02-12T00:00:47", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576259, + -3.7760793 + ] + }, + "properties": { + "timestamp": "2006-02-12T06:03:11", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9474404, + -3.7643432 + ] + }, + "properties": { + "timestamp": "2006-02-12T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9346617, + -3.7423108 + ] + }, + "properties": { + "timestamp": "2006-02-13T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9181159, + -3.7233102 + ] + }, + "properties": { + "timestamp": "2006-02-13T06:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9169807, + -3.7214139 + ] + }, + "properties": { + "timestamp": "2006-02-13T12:01:23", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9247022, + -3.7077744 + ] + }, + "properties": { + "timestamp": "2006-02-14T00:01:41", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9118974, + -3.7318708 + ] + }, + "properties": { + "timestamp": "2006-02-14T06:01:17", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9106728, + -3.7325449 + ] + }, + "properties": { + "timestamp": "2006-02-14T12:01:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9121819, + -3.7302872 + ] + }, + "properties": { + "timestamp": "2006-02-14T18:01:42", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9572345, + -3.7719212 + ] + }, + "properties": { + "timestamp": "2006-02-15T00:00:56", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576281, + -3.7759816 + ] + }, + "properties": { + "timestamp": "2006-02-15T06:03:03", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9575983, + -3.7759603 + ] + }, + "properties": { + "timestamp": "2006-02-15T12:01:42", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9553983, + -3.7737704 + ] + }, + "properties": { + "timestamp": "2006-02-15T18:00:49", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9545663, + -3.7737743 + ] + }, + "properties": { + "timestamp": "2006-02-16T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9514183, + -3.7899608 + ] + }, + "properties": { + "timestamp": "2006-02-16T12:03:05", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9512785, + -3.7905748 + ] + }, + "properties": { + "timestamp": "2006-02-16T18:00:50", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9508366, + -3.7857506 + ] + }, + "properties": { + "timestamp": "2006-02-17T00:01:48", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9516364, + -3.7898904 + ] + }, + "properties": { + "timestamp": "2006-02-17T12:01:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582035, + -3.7968745 + ] + }, + "properties": { + "timestamp": "2006-02-17T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9571248, + -3.7733023 + ] + }, + "properties": { + "timestamp": "2006-02-18T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9588637, + -3.7953952 + ] + }, + "properties": { + "timestamp": "2006-02-18T06:01:18", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9586458, + -3.795621 + ] + }, + "properties": { + "timestamp": "2006-02-18T12:01:56", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9584838, + -3.7949414 + ] + }, + "properties": { + "timestamp": "2006-02-18T18:01:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9570909, + -3.7732995 + ] + }, + "properties": { + "timestamp": "2006-02-19T00:00:47", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9575982, + -3.7759944 + ] + }, + "properties": { + "timestamp": "2006-02-19T06:01:12", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9570109, + -3.7726157 + ] + }, + "properties": { + "timestamp": "2006-02-19T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9568883, + -3.7732079 + ] + }, + "properties": { + "timestamp": "2006-02-20T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9575895, + -3.7759918 + ] + }, + "properties": { + "timestamp": "2006-02-20T06:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9576402, + -3.7761094 + ] + }, + "properties": { + "timestamp": "2006-02-20T12:03:07", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9557859, + -3.7722032 + ] + }, + "properties": { + "timestamp": "2006-02-20T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9562479, + -3.7740823 + ] + }, + "properties": { + "timestamp": "2006-02-21T00:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9503279, + -3.7902299 + ] + }, + "properties": { + "timestamp": "2006-02-21T18:01:41", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9166468, + -3.8218991 + ] + }, + "properties": { + "timestamp": "2006-02-22T00:00:46", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9125111, + -3.8290051 + ] + }, + "properties": { + "timestamp": "2006-02-22T06:02:33", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9125286, + -3.8290142 + ] + }, + "properties": { + "timestamp": "2006-02-22T12:03:04", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8915658, + -3.8460845 + ] + }, + "properties": { + "timestamp": "2006-02-22T18:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8875222, + -3.8517709 + ] + }, + "properties": { + "timestamp": "2006-02-23T00:00:48", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8607439, + -3.8652312 + ] + }, + "properties": { + "timestamp": "2006-02-23T18:01:38", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8693757, + -3.7888119 + ] + }, + "properties": { + "timestamp": "2006-02-24T00:00:47", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9567607, + -3.7722732 + ] + }, + "properties": { + "timestamp": "2006-02-24T18:00:53", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9430372, + -3.7838455 + ] + }, + "properties": { + "timestamp": "2006-02-25T00:00:55", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9431961, + -3.7843154 + ] + }, + "properties": { + "timestamp": "2006-02-25T06:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9437435, + -3.7849259 + ] + }, + "properties": { + "timestamp": "2006-02-25T12:01:42", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9335819, + -3.7828995 + ] + }, + "properties": { + "timestamp": "2006-02-26T00:01:49", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9049, + -3.7980608 + ] + }, + "properties": { + "timestamp": "2006-02-26T06:01:24", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9054501, + -3.7985774 + ] + }, + "properties": { + "timestamp": "2006-02-26T18:00:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9111441, + -3.8026057 + ] + }, + "properties": { + "timestamp": "2006-02-27T00:01:16", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.897639, + -3.8088397 + ] + }, + "properties": { + "timestamp": "2006-02-27T18:01:54", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9277133, + -3.8171232 + ] + }, + "properties": { + "timestamp": "2006-02-28T00:01:46", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9530379, + -3.7717774 + ] + }, + "properties": { + "timestamp": "2006-02-28T12:01:24", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9500702, + -3.7724566 + ] + }, + "properties": { + "timestamp": "2006-02-28T18:01:12", + "year": 2006, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9281466, + -3.7020011 + ] + }, + "properties": { + "timestamp": "2006-03-01T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9264903, + -3.6980334 + ] + }, + "properties": { + "timestamp": "2006-03-01T06:02:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9270957, + -3.6992649 + ] + }, + "properties": { + "timestamp": "2006-03-01T12:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.926702, + -3.6986133 + ] + }, + "properties": { + "timestamp": "2006-03-01T18:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9266516, + -3.6986618 + ] + }, + "properties": { + "timestamp": "2006-03-02T00:01:17", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9128208, + -3.7103073 + ] + }, + "properties": { + "timestamp": "2006-03-02T12:02:25", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9131426, + -3.7106852 + ] + }, + "properties": { + "timestamp": "2006-03-02T18:00:43", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9563487, + -3.772814 + ] + }, + "properties": { + "timestamp": "2006-03-03T00:00:28", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9559202, + -3.778728 + ] + }, + "properties": { + "timestamp": "2006-03-03T12:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9574081, + -3.7803673 + ] + }, + "properties": { + "timestamp": "2006-03-03T18:01:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9447676, + -3.8161324 + ] + }, + "properties": { + "timestamp": "2006-03-04T00:00:56", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9070689, + -3.8483161 + ] + }, + "properties": { + "timestamp": "2006-03-04T06:01:46", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9069299, + -3.8483821 + ] + }, + "properties": { + "timestamp": "2006-03-04T12:01:12", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9060964, + -3.8498125 + ] + }, + "properties": { + "timestamp": "2006-03-04T18:00:41", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9064068, + -3.8498967 + ] + }, + "properties": { + "timestamp": "2006-03-05T00:02:00", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9068467, + -3.8482608 + ] + }, + "properties": { + "timestamp": "2006-03-05T06:01:19", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9061749, + -3.8500239 + ] + }, + "properties": { + "timestamp": "2006-03-05T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9048298, + -3.8497798 + ] + }, + "properties": { + "timestamp": "2006-03-06T00:00:55", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9068766, + -3.8484466 + ] + }, + "properties": { + "timestamp": "2006-03-06T06:01:23", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9428258, + -3.8282587 + ] + }, + "properties": { + "timestamp": "2006-03-06T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9742658, + -3.8031182 + ] + }, + "properties": { + "timestamp": "2006-03-07T00:01:23", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582818, + -3.7710546 + ] + }, + "properties": { + "timestamp": "2006-03-07T06:02:10", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9583451, + -3.7710731 + ] + }, + "properties": { + "timestamp": "2006-03-07T12:01:52", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582964, + -3.7712961 + ] + }, + "properties": { + "timestamp": "2006-03-07T18:00:46", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8908829, + -3.7555133 + ] + }, + "properties": { + "timestamp": "2006-03-08T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8017004, + -3.8297639 + ] + }, + "properties": { + "timestamp": "2006-03-08T06:01:45", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8014554, + -3.8301235 + ] + }, + "properties": { + "timestamp": "2006-03-08T12:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7823669, + -3.8626793 + ] + }, + "properties": { + "timestamp": "2006-03-09T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7238765, + -3.9714853 + ] + }, + "properties": { + "timestamp": "2006-03-09T06:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7230678, + -3.9695437 + ] + }, + "properties": { + "timestamp": "2006-03-09T12:01:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7469262, + -3.9543698 + ] + }, + "properties": { + "timestamp": "2006-03-09T18:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7680135, + -3.8896158 + ] + }, + "properties": { + "timestamp": "2006-03-10T00:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8065752, + -3.8886925 + ] + }, + "properties": { + "timestamp": "2006-03-10T06:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.805794, + -3.8892498 + ] + }, + "properties": { + "timestamp": "2006-03-10T12:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8052313, + -3.8902427 + ] + }, + "properties": { + "timestamp": "2006-03-10T18:00:56", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8051107, + -3.890205 + ] + }, + "properties": { + "timestamp": "2006-03-11T00:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8050417, + -3.890186 + ] + }, + "properties": { + "timestamp": "2006-03-11T12:01:24", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8062314, + -3.9428509 + ] + }, + "properties": { + "timestamp": "2006-03-11T18:00:43", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.795529, + -3.9411927 + ] + }, + "properties": { + "timestamp": "2006-03-12T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8111652, + -3.9254829 + ] + }, + "properties": { + "timestamp": "2006-03-12T06:00:55", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8108865, + -3.9248003 + ] + }, + "properties": { + "timestamp": "2006-03-12T12:01:23", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8420921, + -3.9019947 + ] + }, + "properties": { + "timestamp": "2006-03-12T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9145912, + -3.8790045 + ] + }, + "properties": { + "timestamp": "2006-03-13T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9223446, + -3.8662079 + ] + }, + "properties": { + "timestamp": "2006-03-13T06:01:23", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9107512, + -3.8625092 + ] + }, + "properties": { + "timestamp": "2006-03-13T18:01:23", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.868043, + -3.8754055 + ] + }, + "properties": { + "timestamp": "2006-03-14T00:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8444823, + -3.9149695 + ] + }, + "properties": { + "timestamp": "2006-03-14T06:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8447697, + -3.9139447 + ] + }, + "properties": { + "timestamp": "2006-03-14T12:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8428266, + -3.9079818 + ] + }, + "properties": { + "timestamp": "2006-03-14T18:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8462116, + -3.9110678 + ] + }, + "properties": { + "timestamp": "2006-03-15T00:00:50", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8051344, + -3.8898414 + ] + }, + "properties": { + "timestamp": "2006-03-15T06:02:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.791573, + -3.8772469 + ] + }, + "properties": { + "timestamp": "2006-03-15T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7698997, + -3.8875125 + ] + }, + "properties": { + "timestamp": "2006-03-16T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7670619, + -3.8913854 + ] + }, + "properties": { + "timestamp": "2006-03-16T06:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7672251, + -3.8911981 + ] + }, + "properties": { + "timestamp": "2006-03-16T12:01:12", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7678762, + -3.8905538 + ] + }, + "properties": { + "timestamp": "2006-03-16T18:02:04", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8079617, + -3.8793207 + ] + }, + "properties": { + "timestamp": "2006-03-17T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.805278, + -3.8897985 + ] + }, + "properties": { + "timestamp": "2006-03-17T06:03:09", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.81911, + -3.868404 + ] + }, + "properties": { + "timestamp": "2006-03-17T18:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9531499, + -3.8078204 + ] + }, + "properties": { + "timestamp": "2006-03-18T00:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9814369, + -3.7934942 + ] + }, + "properties": { + "timestamp": "2006-03-18T12:01:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9941583, + -3.7900355 + ] + }, + "properties": { + "timestamp": "2006-03-18T18:00:55", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9961961, + -3.7886544 + ] + }, + "properties": { + "timestamp": "2006-03-19T00:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9957766, + -3.7880349 + ] + }, + "properties": { + "timestamp": "2006-03-19T06:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9960515, + -3.7885575 + ] + }, + "properties": { + "timestamp": "2006-03-19T18:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9930328, + -3.7897922 + ] + }, + "properties": { + "timestamp": "2006-03-20T00:01:17", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.99496, + -3.7884343 + ] + }, + "properties": { + "timestamp": "2006-03-20T06:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9860815, + -3.7910586 + ] + }, + "properties": { + "timestamp": "2006-03-20T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9962084, + -3.7886326 + ] + }, + "properties": { + "timestamp": "2006-03-21T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9920233, + -3.7863642 + ] + }, + "properties": { + "timestamp": "2006-03-21T06:01:32", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9919999, + -3.7863618 + ] + }, + "properties": { + "timestamp": "2006-03-21T12:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9905802, + -3.7866358 + ] + }, + "properties": { + "timestamp": "2006-03-21T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9047405, + -3.7553609 + ] + }, + "properties": { + "timestamp": "2006-03-22T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8125896, + -3.7811454 + ] + }, + "properties": { + "timestamp": "2006-03-22T12:02:46", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7801476, + -3.8151758 + ] + }, + "properties": { + "timestamp": "2006-03-22T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7680247, + -3.8896038 + ] + }, + "properties": { + "timestamp": "2006-03-23T00:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7679802, + -3.8903994 + ] + }, + "properties": { + "timestamp": "2006-03-23T06:01:25", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7684093, + -3.8903262 + ] + }, + "properties": { + "timestamp": "2006-03-23T18:00:48", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7688452, + -3.8905696 + ] + }, + "properties": { + "timestamp": "2006-03-24T00:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8084845, + -3.9090092 + ] + }, + "properties": { + "timestamp": "2006-03-24T06:01:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.808413, + -3.9090951 + ] + }, + "properties": { + "timestamp": "2006-03-24T12:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.843656, + -3.9389079 + ] + }, + "properties": { + "timestamp": "2006-03-24T18:00:43", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8501527, + -3.9917346 + ] + }, + "properties": { + "timestamp": "2006-03-25T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8352131, + -3.9745707 + ] + }, + "properties": { + "timestamp": "2006-03-25T06:02:23", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8374199, + -3.9623403 + ] + }, + "properties": { + "timestamp": "2006-03-25T18:01:45", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8985749, + -3.8788447 + ] + }, + "properties": { + "timestamp": "2006-03-26T00:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9500793, + -3.8652119 + ] + }, + "properties": { + "timestamp": "2006-03-26T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9769905, + -3.8289503 + ] + }, + "properties": { + "timestamp": "2006-03-27T00:00:57", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9778156, + -3.8286704 + ] + }, + "properties": { + "timestamp": "2006-03-27T06:01:40", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9801719, + -3.8276379 + ] + }, + "properties": { + "timestamp": "2006-03-27T12:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9770208, + -3.8282575 + ] + }, + "properties": { + "timestamp": "2006-03-27T18:00:55", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.978455, + -3.8278423 + ] + }, + "properties": { + "timestamp": "2006-03-28T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9805068, + -3.8274241 + ] + }, + "properties": { + "timestamp": "2006-03-28T06:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9770105, + -3.8287192 + ] + }, + "properties": { + "timestamp": "2006-03-28T18:01:12", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9772627, + -3.8281139 + ] + }, + "properties": { + "timestamp": "2006-03-29T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9768442, + -3.8283812 + ] + }, + "properties": { + "timestamp": "2006-03-29T18:00:53", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9769992, + -3.8290973 + ] + }, + "properties": { + "timestamp": "2006-03-30T00:01:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9541978, + -3.8580863 + ] + }, + "properties": { + "timestamp": "2006-03-30T18:00:42", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8582947, + -3.8951807 + ] + }, + "properties": { + "timestamp": "2006-03-31T00:00:54", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7834174, + -3.8906054 + ] + }, + "properties": { + "timestamp": "2006-03-31T06:02:43", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7816852, + -3.8909412 + ] + }, + "properties": { + "timestamp": "2006-03-31T12:01:57", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7831683, + -3.8902372 + ] + }, + "properties": { + "timestamp": "2006-03-31T18:00:47", + "year": 2006, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7638833, + -3.9132561 + ] + }, + "properties": { + "timestamp": "2006-04-01T00:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7697623, + -3.8892314 + ] + }, + "properties": { + "timestamp": "2006-04-01T06:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7697592, + -3.8890951 + ] + }, + "properties": { + "timestamp": "2006-04-01T18:00:47", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7624202, + -3.8989466 + ] + }, + "properties": { + "timestamp": "2006-04-02T00:00:48", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7699768, + -3.8895884 + ] + }, + "properties": { + "timestamp": "2006-04-02T06:01:23", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7699084, + -3.889558 + ] + }, + "properties": { + "timestamp": "2006-04-02T12:01:44", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7705959, + -3.8903234 + ] + }, + "properties": { + "timestamp": "2006-04-02T18:01:23", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8059774, + -3.8815766 + ] + }, + "properties": { + "timestamp": "2006-04-03T00:01:45", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.830713, + -3.9607669 + ] + }, + "properties": { + "timestamp": "2006-04-03T06:01:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8305646, + -3.9601223 + ] + }, + "properties": { + "timestamp": "2006-04-03T18:00:49", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7266188, + -3.9988608 + ] + }, + "properties": { + "timestamp": "2006-04-04T00:00:48", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6815482, + -3.9965952 + ] + }, + "properties": { + "timestamp": "2006-04-04T06:02:46", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6813555, + -3.9966727 + ] + }, + "properties": { + "timestamp": "2006-04-04T12:02:17", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.679204, + -3.9965107 + ] + }, + "properties": { + "timestamp": "2006-04-04T18:01:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7693634, + -3.9490705 + ] + }, + "properties": { + "timestamp": "2006-04-05T00:00:49", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7796768, + -3.9942598 + ] + }, + "properties": { + "timestamp": "2006-04-05T06:01:52", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7797795, + -3.9943048 + ] + }, + "properties": { + "timestamp": "2006-04-05T12:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7994691, + -3.9566584 + ] + }, + "properties": { + "timestamp": "2006-04-05T18:01:23", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8541411, + -3.9004843 + ] + }, + "properties": { + "timestamp": "2006-04-06T00:00:55", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9243869, + -3.8432656 + ] + }, + "properties": { + "timestamp": "2006-04-06T06:01:41", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354978, + -3.8399483 + ] + }, + "properties": { + "timestamp": "2006-04-06T18:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9674286, + -3.8401418 + ] + }, + "properties": { + "timestamp": "2006-04-07T00:00:52", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9845124, + -3.8045428 + ] + }, + "properties": { + "timestamp": "2006-04-07T06:03:03", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.985669, + -3.8035074 + ] + }, + "properties": { + "timestamp": "2006-04-07T18:00:55", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9941652, + -3.748985 + ] + }, + "properties": { + "timestamp": "2006-04-08T00:01:41", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9615671, + -3.7449858 + ] + }, + "properties": { + "timestamp": "2006-04-08T06:01:52", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9622146, + -3.7444719 + ] + }, + "properties": { + "timestamp": "2006-04-08T18:00:43", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9624468, + -3.7444026 + ] + }, + "properties": { + "timestamp": "2006-04-09T00:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9624598, + -3.7444266 + ] + }, + "properties": { + "timestamp": "2006-04-09T18:01:23", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9624341, + -3.7444116 + ] + }, + "properties": { + "timestamp": "2006-04-10T00:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9669344, + -3.7253513 + ] + }, + "properties": { + "timestamp": "2006-04-10T06:01:51", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9670314, + -3.7250169 + ] + }, + "properties": { + "timestamp": "2006-04-10T12:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9634929, + -3.7451177 + ] + }, + "properties": { + "timestamp": "2006-04-10T18:00:47", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9106076, + -3.7571624 + ] + }, + "properties": { + "timestamp": "2006-04-11T00:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8069166, + -3.7833582 + ] + }, + "properties": { + "timestamp": "2006-04-11T06:02:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8068745, + -3.7833514 + ] + }, + "properties": { + "timestamp": "2006-04-11T12:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7767882, + -3.8186645 + ] + }, + "properties": { + "timestamp": "2006-04-11T18:00:57", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7856294, + -3.8544539 + ] + }, + "properties": { + "timestamp": "2006-04-12T00:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7702794, + -3.8893648 + ] + }, + "properties": { + "timestamp": "2006-04-12T06:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7933432, + -3.8891439 + ] + }, + "properties": { + "timestamp": "2006-04-12T18:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8511486, + -3.9059461 + ] + }, + "properties": { + "timestamp": "2006-04-13T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8716156, + -3.9024258 + ] + }, + "properties": { + "timestamp": "2006-04-13T06:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8711671, + -3.9018486 + ] + }, + "properties": { + "timestamp": "2006-04-13T12:01:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8621754, + -3.9033786 + ] + }, + "properties": { + "timestamp": "2006-04-13T18:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8570699, + -3.8637508 + ] + }, + "properties": { + "timestamp": "2006-04-14T00:01:59", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8271087, + -3.8479813 + ] + }, + "properties": { + "timestamp": "2006-04-14T06:01:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8233626, + -3.8589454 + ] + }, + "properties": { + "timestamp": "2006-04-14T18:00:47", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8395837, + -3.88951 + ] + }, + "properties": { + "timestamp": "2006-04-15T00:01:12", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8037748, + -3.912257 + ] + }, + "properties": { + "timestamp": "2006-04-15T18:00:42", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7971696, + -3.9838772 + ] + }, + "properties": { + "timestamp": "2006-04-16T00:01:46", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7529815, + -3.989866 + ] + }, + "properties": { + "timestamp": "2006-04-16T06:01:48", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7530732, + -3.9900272 + ] + }, + "properties": { + "timestamp": "2006-04-16T18:01:41", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7806854, + -3.955229 + ] + }, + "properties": { + "timestamp": "2006-04-17T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8305549, + -3.9601966 + ] + }, + "properties": { + "timestamp": "2006-04-17T12:02:14", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8557694, + -3.9249555 + ] + }, + "properties": { + "timestamp": "2006-04-18T00:01:14", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9052328, + -3.8740791 + ] + }, + "properties": { + "timestamp": "2006-04-18T06:01:11", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9047266, + -3.8740974 + ] + }, + "properties": { + "timestamp": "2006-04-18T12:02:43", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9115012, + -3.8744888 + ] + }, + "properties": { + "timestamp": "2006-04-18T18:00:50", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9120327, + -3.8746782 + ] + }, + "properties": { + "timestamp": "2006-04-19T00:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9121044, + -3.8725729 + ] + }, + "properties": { + "timestamp": "2006-04-19T12:01:13", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9123059, + -3.8725791 + ] + }, + "properties": { + "timestamp": "2006-04-19T18:00:47", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.912244, + -3.8728575 + ] + }, + "properties": { + "timestamp": "2006-04-20T00:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9128657, + -3.8707409 + ] + }, + "properties": { + "timestamp": "2006-04-20T06:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9129823, + -3.870749 + ] + }, + "properties": { + "timestamp": "2006-04-20T12:01:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9122644, + -3.8721652 + ] + }, + "properties": { + "timestamp": "2006-04-20T18:00:49", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9478705, + -3.8415693 + ] + }, + "properties": { + "timestamp": "2006-04-21T00:00:47", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9551948, + -3.8363957 + ] + }, + "properties": { + "timestamp": "2006-04-21T18:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9724494, + -3.7945133 + ] + }, + "properties": { + "timestamp": "2006-04-22T00:00:47", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9707702, + -3.7932163 + ] + }, + "properties": { + "timestamp": "2006-04-22T12:03:06", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9725061, + -3.7912264 + ] + }, + "properties": { + "timestamp": "2006-04-22T18:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0144628, + -3.8156117 + ] + }, + "properties": { + "timestamp": "2006-04-23T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0107097, + -3.8148743 + ] + }, + "properties": { + "timestamp": "2006-04-23T18:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9212109, + -3.7393817 + ] + }, + "properties": { + "timestamp": "2006-04-24T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8496269, + -3.6979251 + ] + }, + "properties": { + "timestamp": "2006-04-24T06:00:55", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8495356, + -3.6974749 + ] + }, + "properties": { + "timestamp": "2006-04-24T12:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8296508, + -3.7059719 + ] + }, + "properties": { + "timestamp": "2006-04-24T18:00:55", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7722304, + -3.8320178 + ] + }, + "properties": { + "timestamp": "2006-04-25T00:01:41", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.780198, + -3.843788 + ] + }, + "properties": { + "timestamp": "2006-04-25T06:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7804337, + -3.8438863 + ] + }, + "properties": { + "timestamp": "2006-04-25T12:01:55", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.785869, + -3.8576569 + ] + }, + "properties": { + "timestamp": "2006-04-25T18:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7952557, + -3.91421 + ] + }, + "properties": { + "timestamp": "2006-04-26T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8035335, + -3.9388402 + ] + }, + "properties": { + "timestamp": "2006-04-26T06:01:24", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8037036, + -3.9385493 + ] + }, + "properties": { + "timestamp": "2006-04-26T12:01:48", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7920274, + -3.9381255 + ] + }, + "properties": { + "timestamp": "2006-04-26T18:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8239117, + -3.9319318 + ] + }, + "properties": { + "timestamp": "2006-04-27T00:01:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8010079, + -3.9235646 + ] + }, + "properties": { + "timestamp": "2006-04-27T06:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.800835, + -3.9233481 + ] + }, + "properties": { + "timestamp": "2006-04-27T12:01:18", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.800638, + -3.9230544 + ] + }, + "properties": { + "timestamp": "2006-04-27T18:00:55", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8006506, + -3.9230545 + ] + }, + "properties": { + "timestamp": "2006-04-28T00:01:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8020296, + -3.9273126 + ] + }, + "properties": { + "timestamp": "2006-04-28T12:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7977174, + -3.9288017 + ] + }, + "properties": { + "timestamp": "2006-04-29T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7972013, + -3.9286467 + ] + }, + "properties": { + "timestamp": "2006-04-29T06:01:17", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7954942, + -3.9279593 + ] + }, + "properties": { + "timestamp": "2006-04-29T12:01:52", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7865094, + -3.9438259 + ] + }, + "properties": { + "timestamp": "2006-04-29T18:00:42", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7718104, + -3.9018614 + ] + }, + "properties": { + "timestamp": "2006-04-30T00:00:53", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.773663, + -3.8717711 + ] + }, + "properties": { + "timestamp": "2006-04-30T12:01:18", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7862693, + -3.8542506 + ] + }, + "properties": { + "timestamp": "2006-04-30T18:00:54", + "year": 2006, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8547319, + -3.9482414 + ] + }, + "properties": { + "timestamp": "2006-05-01T00:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8611574, + -3.9728779 + ] + }, + "properties": { + "timestamp": "2006-05-01T06:00:48", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8549178, + -3.9713737 + ] + }, + "properties": { + "timestamp": "2006-05-01T18:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8422742, + -3.9279059 + ] + }, + "properties": { + "timestamp": "2006-05-02T00:01:14", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8737548, + -3.8625611 + ] + }, + "properties": { + "timestamp": "2006-05-02T06:01:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8737566, + -3.8624959 + ] + }, + "properties": { + "timestamp": "2006-05-02T12:01:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8737916, + -3.862494 + ] + }, + "properties": { + "timestamp": "2006-05-02T18:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8831507, + -3.8467767 + ] + }, + "properties": { + "timestamp": "2006-05-03T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9218932, + -3.8192793 + ] + }, + "properties": { + "timestamp": "2006-05-03T06:01:51", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9278889, + -3.8114622 + ] + }, + "properties": { + "timestamp": "2006-05-03T18:01:57", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9530549, + -3.7992198 + ] + }, + "properties": { + "timestamp": "2006-05-04T00:01:27", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9676913, + -3.7897895 + ] + }, + "properties": { + "timestamp": "2006-05-04T06:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9470814, + -3.7637492 + ] + }, + "properties": { + "timestamp": "2006-05-04T18:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8336084, + -3.7057081 + ] + }, + "properties": { + "timestamp": "2006-05-05T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8512307, + -3.6974989 + ] + }, + "properties": { + "timestamp": "2006-05-05T18:00:49", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9010704, + -3.7012548 + ] + }, + "properties": { + "timestamp": "2006-05-06T00:00:48", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9218378, + -3.6865489 + ] + }, + "properties": { + "timestamp": "2006-05-06T06:00:43", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9238493, + -3.6903754 + ] + }, + "properties": { + "timestamp": "2006-05-06T12:02:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9298307, + -3.6939755 + ] + }, + "properties": { + "timestamp": "2006-05-06T18:00:50", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.941638, + -3.7066417 + ] + }, + "properties": { + "timestamp": "2006-05-07T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9024947, + -3.678538 + ] + }, + "properties": { + "timestamp": "2006-05-07T18:01:11", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8366345, + -3.6908861 + ] + }, + "properties": { + "timestamp": "2006-05-08T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.731438, + -3.7071819 + ] + }, + "properties": { + "timestamp": "2006-05-08T06:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7315336, + -3.7072002 + ] + }, + "properties": { + "timestamp": "2006-05-08T12:03:11", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7125555, + -3.7024697 + ] + }, + "properties": { + "timestamp": "2006-05-08T18:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.73292, + -3.7603751 + ] + }, + "properties": { + "timestamp": "2006-05-09T00:01:13", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.788479, + -3.8011451 + ] + }, + "properties": { + "timestamp": "2006-05-09T06:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7885058, + -3.8009047 + ] + }, + "properties": { + "timestamp": "2006-05-09T12:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8015787, + -3.8146432 + ] + }, + "properties": { + "timestamp": "2006-05-09T18:02:00", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8259992, + -3.9181018 + ] + }, + "properties": { + "timestamp": "2006-05-10T00:00:41", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8030239, + -3.9574068 + ] + }, + "properties": { + "timestamp": "2006-05-10T06:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8061395, + -3.9491195 + ] + }, + "properties": { + "timestamp": "2006-05-10T18:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8481438, + -3.9133553 + ] + }, + "properties": { + "timestamp": "2006-05-11T00:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8761841, + -3.8655479 + ] + }, + "properties": { + "timestamp": "2006-05-11T06:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8763556, + -3.8654946 + ] + }, + "properties": { + "timestamp": "2006-05-11T12:03:02", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8841119, + -3.8565786 + ] + }, + "properties": { + "timestamp": "2006-05-11T18:00:55", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8873649, + -3.8518003 + ] + }, + "properties": { + "timestamp": "2006-05-12T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8865048, + -3.8528974 + ] + }, + "properties": { + "timestamp": "2006-05-12T06:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8868025, + -3.8527019 + ] + }, + "properties": { + "timestamp": "2006-05-12T12:01:48", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8856837, + -3.8542247 + ] + }, + "properties": { + "timestamp": "2006-05-12T18:00:45", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.887071, + -3.8526389 + ] + }, + "properties": { + "timestamp": "2006-05-13T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8997954, + -3.8502703 + ] + }, + "properties": { + "timestamp": "2006-05-13T18:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.887425, + -3.8518578 + ] + }, + "properties": { + "timestamp": "2006-05-14T00:01:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8874363, + -3.8516152 + ] + }, + "properties": { + "timestamp": "2006-05-14T12:01:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8871034, + -3.8526117 + ] + }, + "properties": { + "timestamp": "2006-05-14T18:00:49", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9361455, + -3.8274227 + ] + }, + "properties": { + "timestamp": "2006-05-15T00:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9379836, + -3.8256055 + ] + }, + "properties": { + "timestamp": "2006-05-15T06:00:55", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9385404, + -3.8259394 + ] + }, + "properties": { + "timestamp": "2006-05-15T18:01:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9665902, + -3.7836518 + ] + }, + "properties": { + "timestamp": "2006-05-16T00:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9175087, + -3.733118 + ] + }, + "properties": { + "timestamp": "2006-05-16T06:02:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8755933, + -3.7147483 + ] + }, + "properties": { + "timestamp": "2006-05-16T18:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8025549, + -3.7079532 + ] + }, + "properties": { + "timestamp": "2006-05-17T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7399279, + -3.7521728 + ] + }, + "properties": { + "timestamp": "2006-05-17T18:02:03", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7515786, + -3.7767987 + ] + }, + "properties": { + "timestamp": "2006-05-18T00:01:19", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7857097, + -3.8022647 + ] + }, + "properties": { + "timestamp": "2006-05-18T06:01:48", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7857603, + -3.8022921 + ] + }, + "properties": { + "timestamp": "2006-05-18T12:02:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7888026, + -3.8031217 + ] + }, + "properties": { + "timestamp": "2006-05-18T18:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8075987, + -3.9099397 + ] + }, + "properties": { + "timestamp": "2006-05-19T00:01:40", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7987106, + -3.9081272 + ] + }, + "properties": { + "timestamp": "2006-05-19T06:01:51", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021481, + -3.9157885 + ] + }, + "properties": { + "timestamp": "2006-05-19T18:01:52", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7997604, + -3.9136548 + ] + }, + "properties": { + "timestamp": "2006-05-20T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8023877, + -3.910074 + ] + }, + "properties": { + "timestamp": "2006-05-20T06:01:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021262, + -3.9101185 + ] + }, + "properties": { + "timestamp": "2006-05-20T12:01:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021182, + -3.9100233 + ] + }, + "properties": { + "timestamp": "2006-05-20T18:00:56", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8000098, + -3.8402142 + ] + }, + "properties": { + "timestamp": "2006-05-21T00:00:42", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8246874, + -3.7225557 + ] + }, + "properties": { + "timestamp": "2006-05-21T06:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8246213, + -3.7225299 + ] + }, + "properties": { + "timestamp": "2006-05-21T12:01:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8423507, + -3.6918416 + ] + }, + "properties": { + "timestamp": "2006-05-21T18:00:47", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.862756, + -3.6593448 + ] + }, + "properties": { + "timestamp": "2006-05-22T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8785845, + -3.6527388 + ] + }, + "properties": { + "timestamp": "2006-05-22T18:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9429129, + -3.7130651 + ] + }, + "properties": { + "timestamp": "2006-05-23T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9398172, + -3.7127118 + ] + }, + "properties": { + "timestamp": "2006-05-23T12:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9551942, + -3.7187707 + ] + }, + "properties": { + "timestamp": "2006-05-23T18:01:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9719583, + -3.7923606 + ] + }, + "properties": { + "timestamp": "2006-05-24T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9697241, + -3.7886322 + ] + }, + "properties": { + "timestamp": "2006-05-24T06:01:51", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9696778, + -3.7886152 + ] + }, + "properties": { + "timestamp": "2006-05-24T12:01:41", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.959519, + -3.7864378 + ] + }, + "properties": { + "timestamp": "2006-05-24T18:02:16", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9043925, + -3.8670513 + ] + }, + "properties": { + "timestamp": "2006-05-25T00:01:11", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8685525, + -3.8465495 + ] + }, + "properties": { + "timestamp": "2006-05-25T06:01:18", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8657552, + -3.8491867 + ] + }, + "properties": { + "timestamp": "2006-05-25T12:03:10", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8293743, + -3.8907116 + ] + }, + "properties": { + "timestamp": "2006-05-25T18:00:58", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8221379, + -3.9226901 + ] + }, + "properties": { + "timestamp": "2006-05-26T00:00:46", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.820856, + -3.9185076 + ] + }, + "properties": { + "timestamp": "2006-05-26T06:01:24", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8196806, + -3.919015 + ] + }, + "properties": { + "timestamp": "2006-05-26T12:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8244979, + -3.9177328 + ] + }, + "properties": { + "timestamp": "2006-05-26T18:01:46", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8539127, + -3.9460686 + ] + }, + "properties": { + "timestamp": "2006-05-27T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.878653, + -3.8758381 + ] + }, + "properties": { + "timestamp": "2006-05-27T12:01:23", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9064939, + -3.845832 + ] + }, + "properties": { + "timestamp": "2006-05-27T18:01:59", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9418066, + -3.8370789 + ] + }, + "properties": { + "timestamp": "2006-05-28T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9793613, + -3.8496189 + ] + }, + "properties": { + "timestamp": "2006-05-28T18:00:54", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0217208, + -3.8292779 + ] + }, + "properties": { + "timestamp": "2006-05-29T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0159121, + -3.7794689 + ] + }, + "properties": { + "timestamp": "2006-05-29T18:00:49", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.939095, + -3.7416254 + ] + }, + "properties": { + "timestamp": "2006-05-30T00:01:26", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9035343, + -3.7134325 + ] + }, + "properties": { + "timestamp": "2006-05-30T06:00:55", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9034113, + -3.7129163 + ] + }, + "properties": { + "timestamp": "2006-05-30T18:02:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9033792, + -3.7125864 + ] + }, + "properties": { + "timestamp": "2006-05-31T00:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9034315, + -3.7125806 + ] + }, + "properties": { + "timestamp": "2006-05-31T06:02:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.903791, + -3.7126483 + ] + }, + "properties": { + "timestamp": "2006-05-31T12:02:17", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9011175, + -3.7082368 + ] + }, + "properties": { + "timestamp": "2006-05-31T18:00:53", + "year": 2006, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9036265, + -3.711835 + ] + }, + "properties": { + "timestamp": "2006-06-01T00:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9139134, + -3.7322139 + ] + }, + "properties": { + "timestamp": "2006-06-01T18:00:49", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9815136, + -3.7852231 + ] + }, + "properties": { + "timestamp": "2006-06-02T00:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9849204, + -3.7887522 + ] + }, + "properties": { + "timestamp": "2006-06-02T06:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.985786, + -3.7905589 + ] + }, + "properties": { + "timestamp": "2006-06-02T18:00:42", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9919603, + -3.8066581 + ] + }, + "properties": { + "timestamp": "2006-06-03T00:01:14", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.996949, + -3.8204855 + ] + }, + "properties": { + "timestamp": "2006-06-03T06:00:55", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9971469, + -3.8194983 + ] + }, + "properties": { + "timestamp": "2006-06-03T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.943226, + -3.8103289 + ] + }, + "properties": { + "timestamp": "2006-06-04T00:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9024927, + -3.7823795 + ] + }, + "properties": { + "timestamp": "2006-06-04T06:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9025824, + -3.7821048 + ] + }, + "properties": { + "timestamp": "2006-06-04T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.857079, + -3.703027 + ] + }, + "properties": { + "timestamp": "2006-06-05T00:00:49", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7681411, + -3.7163324 + ] + }, + "properties": { + "timestamp": "2006-06-05T06:00:55", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7682888, + -3.7162367 + ] + }, + "properties": { + "timestamp": "2006-06-05T12:01:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7683141, + -3.7164264 + ] + }, + "properties": { + "timestamp": "2006-06-05T18:01:51", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.790268, + -3.805128 + ] + }, + "properties": { + "timestamp": "2006-06-06T00:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8145445, + -3.9097976 + ] + }, + "properties": { + "timestamp": "2006-06-06T06:02:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8144489, + -3.909635 + ] + }, + "properties": { + "timestamp": "2006-06-06T12:02:10", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.814428, + -3.91001 + ] + }, + "properties": { + "timestamp": "2006-06-06T18:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8024376, + -3.9705584 + ] + }, + "properties": { + "timestamp": "2006-06-07T00:01:12", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8052618, + -3.9962462 + ] + }, + "properties": { + "timestamp": "2006-06-08T00:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8239811, + -3.9727447 + ] + }, + "properties": { + "timestamp": "2006-06-08T06:01:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8238895, + -3.972828 + ] + }, + "properties": { + "timestamp": "2006-06-08T12:01:52", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8242268, + -3.9722749 + ] + }, + "properties": { + "timestamp": "2006-06-08T18:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.826948, + -3.9680787 + ] + }, + "properties": { + "timestamp": "2006-06-09T00:00:55", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.832506, + -3.9577819 + ] + }, + "properties": { + "timestamp": "2006-06-09T06:01:20", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8334023, + -3.9576139 + ] + }, + "properties": { + "timestamp": "2006-06-09T12:00:49", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.856024, + -3.9600143 + ] + }, + "properties": { + "timestamp": "2006-06-09T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8126909, + -3.9152551 + ] + }, + "properties": { + "timestamp": "2006-06-10T00:02:04", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7809384, + -3.8680916 + ] + }, + "properties": { + "timestamp": "2006-06-10T06:01:51", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7794817, + -3.8669888 + ] + }, + "properties": { + "timestamp": "2006-06-10T12:02:00", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7860626, + -3.8788018 + ] + }, + "properties": { + "timestamp": "2006-06-10T18:01:41", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7862525, + -3.8548847 + ] + }, + "properties": { + "timestamp": "2006-06-11T00:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7824942, + -3.8734038 + ] + }, + "properties": { + "timestamp": "2006-06-11T12:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7823042, + -3.8732541 + ] + }, + "properties": { + "timestamp": "2006-06-11T18:01:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7933195, + -3.8312311 + ] + }, + "properties": { + "timestamp": "2006-06-12T00:02:19", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7992118, + -3.7962947 + ] + }, + "properties": { + "timestamp": "2006-06-12T06:01:11", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7991472, + -3.7962049 + ] + }, + "properties": { + "timestamp": "2006-06-12T12:03:12", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8083985, + -3.7858507 + ] + }, + "properties": { + "timestamp": "2006-06-12T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7928465, + -3.7362287 + ] + }, + "properties": { + "timestamp": "2006-06-13T00:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8199502, + -3.678584 + ] + }, + "properties": { + "timestamp": "2006-06-13T06:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8110033, + -3.6756213 + ] + }, + "properties": { + "timestamp": "2006-06-13T18:01:12", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8871658, + -3.6610037 + ] + }, + "properties": { + "timestamp": "2006-06-14T00:01:12", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9543964, + -3.7413841 + ] + }, + "properties": { + "timestamp": "2006-06-14T18:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9737189, + -3.7920667 + ] + }, + "properties": { + "timestamp": "2006-06-15T00:00:49", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9771924, + -3.8113546 + ] + }, + "properties": { + "timestamp": "2006-06-15T06:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9706328, + -3.8398238 + ] + }, + "properties": { + "timestamp": "2006-06-15T18:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9525331, + -3.7147836 + ] + }, + "properties": { + "timestamp": "2006-06-16T00:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8950296, + -3.7018146 + ] + }, + "properties": { + "timestamp": "2006-06-16T06:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8768947, + -3.6933863 + ] + }, + "properties": { + "timestamp": "2006-06-16T18:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8205089, + -3.7448683 + ] + }, + "properties": { + "timestamp": "2006-06-17T00:00:49", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8206047, + -3.745504 + ] + }, + "properties": { + "timestamp": "2006-06-17T06:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8206007, + -3.7455373 + ] + }, + "properties": { + "timestamp": "2006-06-17T12:02:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8203813, + -3.7455616 + ] + }, + "properties": { + "timestamp": "2006-06-17T18:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8716717, + -3.7753576 + ] + }, + "properties": { + "timestamp": "2006-06-18T00:00:49", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.903778, + -3.8301816 + ] + }, + "properties": { + "timestamp": "2006-06-18T06:01:18", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9031064, + -3.8319396 + ] + }, + "properties": { + "timestamp": "2006-06-18T12:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9022744, + -3.8328346 + ] + }, + "properties": { + "timestamp": "2006-06-18T18:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9035137, + -3.8249956 + ] + }, + "properties": { + "timestamp": "2006-06-19T00:02:46", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9406074, + -3.8375472 + ] + }, + "properties": { + "timestamp": "2006-06-19T06:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9564876, + -3.8607844 + ] + }, + "properties": { + "timestamp": "2006-06-19T12:02:21", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9086868, + -3.8849065 + ] + }, + "properties": { + "timestamp": "2006-06-19T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8766572, + -3.8627845 + ] + }, + "properties": { + "timestamp": "2006-06-20T00:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8766692, + -3.862412 + ] + }, + "properties": { + "timestamp": "2006-06-20T06:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8807542, + -3.8665583 + ] + }, + "properties": { + "timestamp": "2006-06-20T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.876938, + -3.8624431 + ] + }, + "properties": { + "timestamp": "2006-06-21T00:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8727066, + -3.8600758 + ] + }, + "properties": { + "timestamp": "2006-06-21T06:01:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8727462, + -3.859628 + ] + }, + "properties": { + "timestamp": "2006-06-21T12:02:18", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712361, + -3.8561658 + ] + }, + "properties": { + "timestamp": "2006-06-21T18:00:43", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8302199, + -3.9949107 + ] + }, + "properties": { + "timestamp": "2006-06-22T00:00:46", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8309804, + -3.9933249 + ] + }, + "properties": { + "timestamp": "2006-06-22T06:03:01", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.831366, + -3.9933864 + ] + }, + "properties": { + "timestamp": "2006-06-22T12:01:17", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8316071, + -3.9933942 + ] + }, + "properties": { + "timestamp": "2006-06-22T18:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8201775, + -4.0176032 + ] + }, + "properties": { + "timestamp": "2006-06-23T00:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.770384, + -3.9651209 + ] + }, + "properties": { + "timestamp": "2006-06-23T12:01:51", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.770413, + -3.9656166 + ] + }, + "properties": { + "timestamp": "2006-06-23T18:01:12", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7695665, + -3.9655 + ] + }, + "properties": { + "timestamp": "2006-06-24T00:01:25", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7707167, + -3.9649383 + ] + }, + "properties": { + "timestamp": "2006-06-24T06:01:37", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7704973, + -3.9656249 + ] + }, + "properties": { + "timestamp": "2006-06-24T18:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7703253, + -3.9620087 + ] + }, + "properties": { + "timestamp": "2006-06-25T00:01:17", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7704171, + -3.9650456 + ] + }, + "properties": { + "timestamp": "2006-06-25T06:02:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7704447, + -3.9650319 + ] + }, + "properties": { + "timestamp": "2006-06-25T12:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7687661, + -3.9641837 + ] + }, + "properties": { + "timestamp": "2006-06-25T18:01:24", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7710494, + -3.9608136 + ] + }, + "properties": { + "timestamp": "2006-06-26T00:00:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7774398, + -3.9659267 + ] + }, + "properties": { + "timestamp": "2006-06-26T06:01:59", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7774583, + -3.9658271 + ] + }, + "properties": { + "timestamp": "2006-06-26T12:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7774118, + -3.9658331 + ] + }, + "properties": { + "timestamp": "2006-06-26T18:01:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7775599, + -3.893857 + ] + }, + "properties": { + "timestamp": "2006-06-27T00:00:48", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7783418, + -3.8341399 + ] + }, + "properties": { + "timestamp": "2006-06-27T06:02:21", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7783825, + -3.8339399 + ] + }, + "properties": { + "timestamp": "2006-06-27T12:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7783712, + -3.8339661 + ] + }, + "properties": { + "timestamp": "2006-06-27T18:02:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8121916, + -3.7829476 + ] + }, + "properties": { + "timestamp": "2006-06-28T00:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8217128, + -3.7403911 + ] + }, + "properties": { + "timestamp": "2006-06-28T06:01:36", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8313266, + -3.7370384 + ] + }, + "properties": { + "timestamp": "2006-06-28T18:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9501926, + -3.7970388 + ] + }, + "properties": { + "timestamp": "2006-06-29T00:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9392849, + -3.8229617 + ] + }, + "properties": { + "timestamp": "2006-06-29T06:00:53", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9391693, + -3.8231022 + ] + }, + "properties": { + "timestamp": "2006-06-29T18:01:23", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9391076, + -3.8230958 + ] + }, + "properties": { + "timestamp": "2006-06-30T00:01:11", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9391316, + -3.8233855 + ] + }, + "properties": { + "timestamp": "2006-06-30T06:01:50", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9404008, + -3.8207097 + ] + }, + "properties": { + "timestamp": "2006-06-30T12:00:54", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9390139, + -3.8231836 + ] + }, + "properties": { + "timestamp": "2006-06-30T18:01:47", + "year": 2006, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9385228, + -3.8235573 + ] + }, + "properties": { + "timestamp": "2006-07-01T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9582382, + -3.7974824 + ] + }, + "properties": { + "timestamp": "2006-07-01T12:01:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9583589, + -3.797109 + ] + }, + "properties": { + "timestamp": "2006-07-01T18:01:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9385075, + -3.7801557 + ] + }, + "properties": { + "timestamp": "2006-07-02T00:00:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9581222, + -3.7710623 + ] + }, + "properties": { + "timestamp": "2006-07-02T18:00:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9299846, + -3.7470344 + ] + }, + "properties": { + "timestamp": "2006-07-03T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8162544, + -3.7788893 + ] + }, + "properties": { + "timestamp": "2006-07-03T06:01:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8129644, + -3.7802662 + ] + }, + "properties": { + "timestamp": "2006-07-03T12:00:56", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8109467, + -3.7802318 + ] + }, + "properties": { + "timestamp": "2006-07-03T18:00:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8133717, + -3.7787401 + ] + }, + "properties": { + "timestamp": "2006-07-04T00:01:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8114135, + -3.7785359 + ] + }, + "properties": { + "timestamp": "2006-07-04T06:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8114007, + -3.7783606 + ] + }, + "properties": { + "timestamp": "2006-07-04T12:00:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8114356, + -3.7783729 + ] + }, + "properties": { + "timestamp": "2006-07-04T18:01:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8111655, + -3.7784058 + ] + }, + "properties": { + "timestamp": "2006-07-05T00:01:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8113599, + -3.7782627 + ] + }, + "properties": { + "timestamp": "2006-07-05T06:01:23", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.811211, + -3.7783089 + ] + }, + "properties": { + "timestamp": "2006-07-05T12:10:51", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8112039, + -3.7783092 + ] + }, + "properties": { + "timestamp": "2006-07-05T12:12:01", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8114106, + -3.7783713 + ] + }, + "properties": { + "timestamp": "2006-07-05T18:03:05", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8115623, + -3.7783776 + ] + }, + "properties": { + "timestamp": "2006-07-06T00:00:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8116395, + -3.7782472 + ] + }, + "properties": { + "timestamp": "2006-07-06T18:01:41", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8120841, + -3.7790963 + ] + }, + "properties": { + "timestamp": "2006-07-07T00:01:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8120516, + -3.778434 + ] + }, + "properties": { + "timestamp": "2006-07-07T06:02:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8120501, + -3.7782325 + ] + }, + "properties": { + "timestamp": "2006-07-08T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8101185, + -3.7791375 + ] + }, + "properties": { + "timestamp": "2006-07-08T06:02:02", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8102687, + -3.7792762 + ] + }, + "properties": { + "timestamp": "2006-07-08T18:01:51", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8237834, + -3.7796288 + ] + }, + "properties": { + "timestamp": "2006-07-09T00:02:21", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8818922, + -3.7756225 + ] + }, + "properties": { + "timestamp": "2006-07-09T06:01:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.896287, + -3.7804894 + ] + }, + "properties": { + "timestamp": "2006-07-09T12:01:51", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9146943, + -3.7846853 + ] + }, + "properties": { + "timestamp": "2006-07-09T18:01:17", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9320828, + -3.7942401 + ] + }, + "properties": { + "timestamp": "2006-07-10T00:00:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8789848, + -3.8537209 + ] + }, + "properties": { + "timestamp": "2006-07-10T06:01:52", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8789584, + -3.8534876 + ] + }, + "properties": { + "timestamp": "2006-07-10T12:01:44", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8678113, + -3.8573333 + ] + }, + "properties": { + "timestamp": "2006-07-10T18:01:42", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8037036, + -3.8930217 + ] + }, + "properties": { + "timestamp": "2006-07-11T00:01:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8232034, + -3.9599439 + ] + }, + "properties": { + "timestamp": "2006-07-11T06:02:24", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8232183, + -3.9599122 + ] + }, + "properties": { + "timestamp": "2006-07-11T12:02:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8230708, + -3.9599526 + ] + }, + "properties": { + "timestamp": "2006-07-11T18:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8511506, + -3.9676744 + ] + }, + "properties": { + "timestamp": "2006-07-12T00:00:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7663843, + -3.9839451 + ] + }, + "properties": { + "timestamp": "2006-07-12T06:01:51", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7634347, + -3.9728019 + ] + }, + "properties": { + "timestamp": "2006-07-12T18:00:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7835846, + -3.8842427 + ] + }, + "properties": { + "timestamp": "2006-07-13T00:00:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.779233, + -3.8404869 + ] + }, + "properties": { + "timestamp": "2006-07-13T06:01:23", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.788008, + -3.837511 + ] + }, + "properties": { + "timestamp": "2006-07-13T18:00:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7719082, + -3.786165 + ] + }, + "properties": { + "timestamp": "2006-07-14T00:01:11", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7917019, + -3.7548893 + ] + }, + "properties": { + "timestamp": "2006-07-14T06:00:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7943651, + -3.7502554 + ] + }, + "properties": { + "timestamp": "2006-07-14T18:02:08", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8804844, + -3.6816251 + ] + }, + "properties": { + "timestamp": "2006-07-15T00:00:49", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9408295, + -3.7118638 + ] + }, + "properties": { + "timestamp": "2006-07-15T06:02:24", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.946974, + -3.7217253 + ] + }, + "properties": { + "timestamp": "2006-07-15T18:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0002845, + -3.7765991 + ] + }, + "properties": { + "timestamp": "2006-07-16T00:00:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.995118, + -3.8015986 + ] + }, + "properties": { + "timestamp": "2006-07-16T06:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9952689, + -3.8015592 + ] + }, + "properties": { + "timestamp": "2006-07-16T12:00:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9856999, + -3.8025606 + ] + }, + "properties": { + "timestamp": "2006-07-16T18:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9708189, + -3.7906563 + ] + }, + "properties": { + "timestamp": "2006-07-17T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9707276, + -3.7906664 + ] + }, + "properties": { + "timestamp": "2006-07-17T12:01:24", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9710001, + -3.7904565 + ] + }, + "properties": { + "timestamp": "2006-07-17T18:01:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.970376, + -3.7906209 + ] + }, + "properties": { + "timestamp": "2006-07-18T00:00:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9695081, + -3.7903536 + ] + }, + "properties": { + "timestamp": "2006-07-18T12:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9717801, + -3.7903177 + ] + }, + "properties": { + "timestamp": "2006-07-19T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9365123, + -3.8243336 + ] + }, + "properties": { + "timestamp": "2006-07-19T12:00:55", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9709238, + -3.790371 + ] + }, + "properties": { + "timestamp": "2006-07-20T00:02:14", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8327376, + -3.8479559 + ] + }, + "properties": { + "timestamp": "2006-07-20T12:01:17", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7731733, + -3.8393384 + ] + }, + "properties": { + "timestamp": "2006-07-21T00:01:13", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8512722, + -3.7215066 + ] + }, + "properties": { + "timestamp": "2006-07-22T00:00:48", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9403426, + -3.7863166 + ] + }, + "properties": { + "timestamp": "2006-07-23T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.990243, + -3.8177168 + ] + }, + "properties": { + "timestamp": "2006-07-23T12:00:56", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9391044, + -3.7832616 + ] + }, + "properties": { + "timestamp": "2006-07-24T00:00:49", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9418332, + -3.7831702 + ] + }, + "properties": { + "timestamp": "2006-07-24T12:02:47", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9395604, + -3.7797477 + ] + }, + "properties": { + "timestamp": "2006-07-25T00:00:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.940652, + -3.7758125 + ] + }, + "properties": { + "timestamp": "2006-07-25T12:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9371605, + -3.7801895 + ] + }, + "properties": { + "timestamp": "2006-07-26T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9086443, + -3.6991384 + ] + }, + "properties": { + "timestamp": "2006-07-27T00:00:53", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8687671, + -3.6871611 + ] + }, + "properties": { + "timestamp": "2006-07-27T12:01:24", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9559212, + -3.7154087 + ] + }, + "properties": { + "timestamp": "2006-07-28T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94834, + -3.7638989 + ] + }, + "properties": { + "timestamp": "2006-07-28T12:00:51", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9542842, + -3.7652719 + ] + }, + "properties": { + "timestamp": "2006-07-29T00:00:54", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9413357, + -3.7637245 + ] + }, + "properties": { + "timestamp": "2006-07-30T00:01:20", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8421517, + -3.8475014 + ] + }, + "properties": { + "timestamp": "2006-07-30T12:00:59", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8193265, + -3.9130336 + ] + }, + "properties": { + "timestamp": "2006-07-31T00:01:21", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8357925, + -3.9556093 + ] + }, + "properties": { + "timestamp": "2006-07-31T12:03:08", + "year": 2006, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8007288, + -3.9260099 + ] + }, + "properties": { + "timestamp": "2006-08-01T00:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7857482, + -3.8516967 + ] + }, + "properties": { + "timestamp": "2006-08-01T12:01:51", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8154544, + -3.7808389 + ] + }, + "properties": { + "timestamp": "2006-08-02T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8129066, + -3.7806233 + ] + }, + "properties": { + "timestamp": "2006-08-02T12:01:47", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8192685, + -3.7751655 + ] + }, + "properties": { + "timestamp": "2006-08-03T00:01:11", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.948938, + -3.7656377 + ] + }, + "properties": { + "timestamp": "2006-08-04T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.963674, + -3.832782 + ] + }, + "properties": { + "timestamp": "2006-08-04T12:01:51", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9539898, + -3.8403738 + ] + }, + "properties": { + "timestamp": "2006-08-05T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9385016, + -3.8225982 + ] + }, + "properties": { + "timestamp": "2006-08-06T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9395461, + -3.7784634 + ] + }, + "properties": { + "timestamp": "2006-08-07T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8830424, + -3.8526228 + ] + }, + "properties": { + "timestamp": "2006-08-07T12:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8858887, + -3.8501093 + ] + }, + "properties": { + "timestamp": "2006-08-08T00:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.940572, + -3.776771 + ] + }, + "properties": { + "timestamp": "2006-08-09T00:00:56", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8553914, + -3.7773121 + ] + }, + "properties": { + "timestamp": "2006-08-09T12:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8450105, + -3.7514116 + ] + }, + "properties": { + "timestamp": "2006-08-10T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8999063, + -3.7425074 + ] + }, + "properties": { + "timestamp": "2006-08-10T12:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9448781, + -3.7613458 + ] + }, + "properties": { + "timestamp": "2006-08-11T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9895173, + -3.8087961 + ] + }, + "properties": { + "timestamp": "2006-08-11T12:01:47", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9354183, + -3.7471071 + ] + }, + "properties": { + "timestamp": "2006-08-12T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9324992, + -3.745421 + ] + }, + "properties": { + "timestamp": "2006-08-12T12:02:10", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8997897, + -3.7101593 + ] + }, + "properties": { + "timestamp": "2006-08-13T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9857884, + -3.7736628 + ] + }, + "properties": { + "timestamp": "2006-08-14T00:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9866803, + -3.7730017 + ] + }, + "properties": { + "timestamp": "2006-08-14T12:00:51", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9909151, + -3.7776663 + ] + }, + "properties": { + "timestamp": "2006-08-15T00:00:48", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0003562, + -3.7824685 + ] + }, + "properties": { + "timestamp": "2006-08-15T12:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0117166, + -3.7733962 + ] + }, + "properties": { + "timestamp": "2006-08-16T00:01:25", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.005193, + -3.7992182 + ] + }, + "properties": { + "timestamp": "2006-08-16T12:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0081405, + -3.8181395 + ] + }, + "properties": { + "timestamp": "2006-08-17T00:00:53", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0064506, + -3.8223424 + ] + }, + "properties": { + "timestamp": "2006-08-17T12:01:48", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.952792, + -3.7689999 + ] + }, + "properties": { + "timestamp": "2006-08-18T00:00:48", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9312397, + -3.7425618 + ] + }, + "properties": { + "timestamp": "2006-08-18T12:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9142509, + -3.7141666 + ] + }, + "properties": { + "timestamp": "2006-08-19T00:00:56", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9158213, + -3.7147287 + ] + }, + "properties": { + "timestamp": "2006-08-19T12:01:39", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9307442, + -3.7463449 + ] + }, + "properties": { + "timestamp": "2006-08-20T00:01:19", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.927058, + -3.7412263 + ] + }, + "properties": { + "timestamp": "2006-08-20T12:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9141249, + -3.722879 + ] + }, + "properties": { + "timestamp": "2006-08-21T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9157895, + -3.7147183 + ] + }, + "properties": { + "timestamp": "2006-08-21T12:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8971185, + -3.7526227 + ] + }, + "properties": { + "timestamp": "2006-08-22T00:00:49", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8813504, + -3.8319926 + ] + }, + "properties": { + "timestamp": "2006-08-23T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8326088, + -3.844621 + ] + }, + "properties": { + "timestamp": "2006-08-23T12:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7680797, + -3.8888156 + ] + }, + "properties": { + "timestamp": "2006-08-24T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8704075, + -3.7928773 + ] + }, + "properties": { + "timestamp": "2006-08-25T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9304345, + -3.7782123 + ] + }, + "properties": { + "timestamp": "2006-08-26T00:01:00", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9287093, + -3.7777953 + ] + }, + "properties": { + "timestamp": "2006-08-26T12:01:51", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.901996, + -3.7432663 + ] + }, + "properties": { + "timestamp": "2006-08-27T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9015052, + -3.7378274 + ] + }, + "properties": { + "timestamp": "2006-08-27T12:01:23", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8921117, + -3.7419115 + ] + }, + "properties": { + "timestamp": "2006-08-28T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9435979, + -3.7632919 + ] + }, + "properties": { + "timestamp": "2006-08-28T12:03:03", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9473185, + -3.7566057 + ] + }, + "properties": { + "timestamp": "2006-08-29T00:00:55", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9071422, + -3.7560268 + ] + }, + "properties": { + "timestamp": "2006-08-30T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8733066, + -3.7883337 + ] + }, + "properties": { + "timestamp": "2006-08-31T00:00:54", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8126683, + -3.7788081 + ] + }, + "properties": { + "timestamp": "2006-08-31T12:02:50", + "year": 2006, + "month": 8, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7974296, + -3.7458006 + ] + }, + "properties": { + "timestamp": "2006-09-01T00:00:56", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8375017, + -3.6848256 + ] + }, + "properties": { + "timestamp": "2006-09-01T12:02:01", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.916658, + -3.6833579 + ] + }, + "properties": { + "timestamp": "2006-09-02T00:01:27", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8913496, + -3.7479139 + ] + }, + "properties": { + "timestamp": "2006-09-02T12:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9219598, + -3.804347 + ] + }, + "properties": { + "timestamp": "2006-09-03T00:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9580127, + -3.7966451 + ] + }, + "properties": { + "timestamp": "2006-09-03T12:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9979697, + -3.7898893 + ] + }, + "properties": { + "timestamp": "2006-09-04T00:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9774947, + -3.8008277 + ] + }, + "properties": { + "timestamp": "2006-09-04T12:03:08", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9499834, + -3.7663342 + ] + }, + "properties": { + "timestamp": "2006-09-05T00:01:24", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.940493, + -3.7649532 + ] + }, + "properties": { + "timestamp": "2006-09-05T12:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9374736, + -3.7945904 + ] + }, + "properties": { + "timestamp": "2006-09-06T00:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9202483, + -3.776121 + ] + }, + "properties": { + "timestamp": "2006-09-06T12:02:23", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9245829, + -3.7772253 + ] + }, + "properties": { + "timestamp": "2006-09-07T00:01:24", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8931862, + -3.7529086 + ] + }, + "properties": { + "timestamp": "2006-09-08T00:00:48", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.880159, + -3.751872 + ] + }, + "properties": { + "timestamp": "2006-09-08T12:01:47", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8801102, + -3.7529973 + ] + }, + "properties": { + "timestamp": "2006-09-09T00:00:54", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8671314, + -3.7411271 + ] + }, + "properties": { + "timestamp": "2006-09-09T12:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.791585, + -3.8017881 + ] + }, + "properties": { + "timestamp": "2006-09-10T00:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7172066, + -3.932985 + ] + }, + "properties": { + "timestamp": "2006-09-11T00:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8654524, + -3.8147707 + ] + }, + "properties": { + "timestamp": "2006-09-12T00:01:42", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8712545, + -3.7762589 + ] + }, + "properties": { + "timestamp": "2006-09-12T12:01:23", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9372196, + -3.7435835 + ] + }, + "properties": { + "timestamp": "2006-09-13T00:01:19", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9507793, + -3.7867921 + ] + }, + "properties": { + "timestamp": "2006-09-14T00:01:24", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9372663, + -3.7757631 + ] + }, + "properties": { + "timestamp": "2006-09-14T12:01:45", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9204045, + -3.720022 + ] + }, + "properties": { + "timestamp": "2006-09-15T00:01:24", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8929947, + -3.729483 + ] + }, + "properties": { + "timestamp": "2006-09-15T12:01:54", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9254384, + -3.7656524 + ] + }, + "properties": { + "timestamp": "2006-09-16T00:01:49", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9261452, + -3.7648889 + ] + }, + "properties": { + "timestamp": "2006-09-16T12:01:46", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9258936, + -3.7649622 + ] + }, + "properties": { + "timestamp": "2006-09-17T00:01:24", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9259528, + -3.7652359 + ] + }, + "properties": { + "timestamp": "2006-09-18T00:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9341698, + -3.7628652 + ] + }, + "properties": { + "timestamp": "2006-09-20T00:00:55", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.861664, + -3.8639334 + ] + }, + "properties": { + "timestamp": "2006-09-21T00:01:18", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8087895, + -3.9085285 + ] + }, + "properties": { + "timestamp": "2006-09-21T12:01:24", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8155037, + -3.7809484 + ] + }, + "properties": { + "timestamp": "2006-09-22T00:00:47", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9480185, + -3.7648694 + ] + }, + "properties": { + "timestamp": "2006-09-23T00:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9738265, + -3.7955314 + ] + }, + "properties": { + "timestamp": "2006-09-24T00:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9548064, + -3.7692948 + ] + }, + "properties": { + "timestamp": "2006-09-24T12:03:09", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.0171208, + -3.8048999 + ] + }, + "properties": { + "timestamp": "2006-09-25T00:01:23", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9580828, + -3.7976159 + ] + }, + "properties": { + "timestamp": "2006-09-26T00:01:11", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9668046, + -3.743542 + ] + }, + "properties": { + "timestamp": "2006-09-27T00:00:54", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9519511, + -3.7416105 + ] + }, + "properties": { + "timestamp": "2006-09-27T12:01:52", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9658934, + -3.7441621 + ] + }, + "properties": { + "timestamp": "2006-09-28T00:00:48", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9371975, + -3.7405466 + ] + }, + "properties": { + "timestamp": "2006-09-29T00:01:17", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9287217, + -3.7350665 + ] + }, + "properties": { + "timestamp": "2006-09-29T12:01:11", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8857012, + -3.7259522 + ] + }, + "properties": { + "timestamp": "2006-09-30T00:00:54", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8838509, + -3.7260929 + ] + }, + "properties": { + "timestamp": "2006-09-30T12:00:53", + "year": 2006, + "month": 9, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.884512, + -3.7259101 + ] + }, + "properties": { + "timestamp": "2006-10-01T00:00:55", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8858967, + -3.7227543 + ] + }, + "properties": { + "timestamp": "2006-10-01T12:01:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8857751, + -3.7232533 + ] + }, + "properties": { + "timestamp": "2006-10-02T00:00:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8823869, + -3.7292295 + ] + }, + "properties": { + "timestamp": "2006-10-02T12:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8801772, + -3.7289814 + ] + }, + "properties": { + "timestamp": "2006-10-03T00:00:55", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8284917, + -3.7245387 + ] + }, + "properties": { + "timestamp": "2006-10-03T12:01:23", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7992803, + -3.8041453 + ] + }, + "properties": { + "timestamp": "2006-10-04T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8165008, + -3.8313647 + ] + }, + "properties": { + "timestamp": "2006-10-05T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8184843, + -3.8297606 + ] + }, + "properties": { + "timestamp": "2006-10-05T12:02:01", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8387287, + -3.7566654 + ] + }, + "properties": { + "timestamp": "2006-10-06T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9010883, + -3.7053138 + ] + }, + "properties": { + "timestamp": "2006-10-07T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9301314, + -3.7327065 + ] + }, + "properties": { + "timestamp": "2006-10-07T12:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95989, + -3.8149017 + ] + }, + "properties": { + "timestamp": "2006-10-08T00:01:41", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9709552, + -3.8281655 + ] + }, + "properties": { + "timestamp": "2006-10-08T12:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9054778, + -3.7733375 + ] + }, + "properties": { + "timestamp": "2006-10-09T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9116317, + -3.7550301 + ] + }, + "properties": { + "timestamp": "2006-10-09T12:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8527335, + -3.6848305 + ] + }, + "properties": { + "timestamp": "2006-10-10T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8057703, + -3.6937328 + ] + }, + "properties": { + "timestamp": "2006-10-11T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8067081, + -3.6942258 + ] + }, + "properties": { + "timestamp": "2006-10-12T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8056454, + -3.6941175 + ] + }, + "properties": { + "timestamp": "2006-10-12T12:02:23", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.805773, + -3.6935056 + ] + }, + "properties": { + "timestamp": "2006-10-13T00:01:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8062542, + -3.6958355 + ] + }, + "properties": { + "timestamp": "2006-10-13T12:01:23", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8069074, + -3.7007493 + ] + }, + "properties": { + "timestamp": "2006-10-14T00:00:56", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8063021, + -3.6956932 + ] + }, + "properties": { + "timestamp": "2006-10-14T12:01:43", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8632073, + -3.7367426 + ] + }, + "properties": { + "timestamp": "2006-10-15T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8578483, + -3.7329801 + ] + }, + "properties": { + "timestamp": "2006-10-15T12:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8946165, + -3.7870887 + ] + }, + "properties": { + "timestamp": "2006-10-16T00:01:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8950518, + -3.7864581 + ] + }, + "properties": { + "timestamp": "2006-10-16T12:00:48", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8251667, + -3.9532143 + ] + }, + "properties": { + "timestamp": "2006-10-17T00:00:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8695732, + -3.9913251 + ] + }, + "properties": { + "timestamp": "2006-10-18T00:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8112292, + -3.9675282 + ] + }, + "properties": { + "timestamp": "2006-10-19T00:02:16", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8306941, + -3.9601345 + ] + }, + "properties": { + "timestamp": "2006-10-19T12:00:48", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8412899, + -3.8627435 + ] + }, + "properties": { + "timestamp": "2006-10-20T00:00:48", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8477301, + -3.8302481 + ] + }, + "properties": { + "timestamp": "2006-10-20T12:01:23", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9019512, + -3.7547733 + ] + }, + "properties": { + "timestamp": "2006-10-21T00:00:48", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9243626, + -3.766163 + ] + }, + "properties": { + "timestamp": "2006-10-21T12:00:53", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9538462, + -3.7771811 + ] + }, + "properties": { + "timestamp": "2006-10-22T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9540907, + -3.7773697 + ] + }, + "properties": { + "timestamp": "2006-10-22T12:02:09", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9525942, + -3.7756736 + ] + }, + "properties": { + "timestamp": "2006-10-23T00:00:47", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9536436, + -3.7770533 + ] + }, + "properties": { + "timestamp": "2006-10-24T00:01:12", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9102235, + -3.7333565 + ] + }, + "properties": { + "timestamp": "2006-10-25T00:00:55", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9072821, + -3.7319159 + ] + }, + "properties": { + "timestamp": "2006-10-25T12:01:36", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8744403, + -3.7140591 + ] + }, + "properties": { + "timestamp": "2006-10-26T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8723928, + -3.6839097 + ] + }, + "properties": { + "timestamp": "2006-10-27T00:00:55", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8341242, + -3.7047855 + ] + }, + "properties": { + "timestamp": "2006-10-28T00:00:54", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8093426, + -3.7344517 + ] + }, + "properties": { + "timestamp": "2006-10-28T12:02:11", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8067684, + -3.8962863 + ] + }, + "properties": { + "timestamp": "2006-10-29T00:01:11", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8194373, + -3.9641579 + ] + }, + "properties": { + "timestamp": "2006-10-29T12:03:08", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7095864, + -4.0134655 + ] + }, + "properties": { + "timestamp": "2006-10-30T00:01:50", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.684273, + -4.0381543 + ] + }, + "properties": { + "timestamp": "2006-10-30T12:01:41", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6394524, + -4.0484389 + ] + }, + "properties": { + "timestamp": "2006-10-31T00:00:49", + "year": 2006, + "month": 10, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6627641, + -4.0106153 + ] + }, + "properties": { + "timestamp": "2006-11-01T00:00:56", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6994391, + -3.9305234 + ] + }, + "properties": { + "timestamp": "2006-11-01T12:00:54", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8064074, + -3.9772696 + ] + }, + "properties": { + "timestamp": "2006-11-02T00:01:53", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7905635, + -3.9806629 + ] + }, + "properties": { + "timestamp": "2006-11-03T00:00:54", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7924916, + -3.9810948 + ] + }, + "properties": { + "timestamp": "2006-11-04T00:00:54", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8357667, + -3.9299187 + ] + }, + "properties": { + "timestamp": "2006-11-05T00:01:40", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8169002, + -3.8592952 + ] + }, + "properties": { + "timestamp": "2006-11-05T12:01:52", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8431245, + -3.7563523 + ] + }, + "properties": { + "timestamp": "2006-11-06T00:01:23", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8526556, + -3.753436 + ] + }, + "properties": { + "timestamp": "2006-11-06T12:01:32", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9111583, + -3.7094373 + ] + }, + "properties": { + "timestamp": "2006-11-07T00:01:18", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9395321, + -3.7786807 + ] + }, + "properties": { + "timestamp": "2006-11-08T00:00:54", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.945376, + -3.7870412 + ] + }, + "properties": { + "timestamp": "2006-11-08T12:01:47", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9185813, + -3.7803405 + ] + }, + "properties": { + "timestamp": "2006-11-09T00:02:23", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8375261, + -3.7491005 + ] + }, + "properties": { + "timestamp": "2006-11-09T12:01:55", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8305161, + -3.746165 + ] + }, + "properties": { + "timestamp": "2006-11-10T00:01:53", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8309308, + -3.7463193 + ] + }, + "properties": { + "timestamp": "2006-11-11T00:02:10", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8314957, + -3.7454572 + ] + }, + "properties": { + "timestamp": "2006-11-12T12:01:51", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.800189, + -3.6257726 + ] + }, + "properties": { + "timestamp": "2006-11-13T00:01:04", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7707893, + -3.6925166 + ] + }, + "properties": { + "timestamp": "2006-11-14T00:01:45", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7716103, + -3.7151523 + ] + }, + "properties": { + "timestamp": "2006-11-14T12:02:23", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7803946, + -3.8523237 + ] + }, + "properties": { + "timestamp": "2006-11-15T00:01:43", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7954072, + -4.0111646 + ] + }, + "properties": { + "timestamp": "2006-11-16T00:01:49", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7995515, + -4.0098293 + ] + }, + "properties": { + "timestamp": "2006-11-18T00:00:55", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7849278, + -4.0747174 + ] + }, + "properties": { + "timestamp": "2006-11-18T12:03:06", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7805614, + -4.0705685 + ] + }, + "properties": { + "timestamp": "2006-11-19T00:01:17", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8374217, + -3.9796947 + ] + }, + "properties": { + "timestamp": "2006-11-20T00:02:09", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8296514, + -3.9683354 + ] + }, + "properties": { + "timestamp": "2006-11-21T00:01:24", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8300502, + -3.9658954 + ] + }, + "properties": { + "timestamp": "2006-11-21T12:01:48", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8094392, + -3.8429285 + ] + }, + "properties": { + "timestamp": "2006-11-22T00:01:44", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8069571, + -3.8059626 + ] + }, + "properties": { + "timestamp": "2006-11-22T12:02:51", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8505244, + -3.7334211 + ] + }, + "properties": { + "timestamp": "2006-11-23T00:00:53", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8542031, + -3.7321424 + ] + }, + "properties": { + "timestamp": "2006-11-23T12:01:53", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8763213, + -3.6716977 + ] + }, + "properties": { + "timestamp": "2006-11-24T00:01:24", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8745319, + -3.6725119 + ] + }, + "properties": { + "timestamp": "2006-11-25T00:01:24", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8747514, + -3.6728666 + ] + }, + "properties": { + "timestamp": "2006-11-25T12:01:28", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8718386, + -3.6827762 + ] + }, + "properties": { + "timestamp": "2006-11-26T00:01:11", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8718874, + -3.728655 + ] + }, + "properties": { + "timestamp": "2006-11-26T12:03:10", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8694483, + -3.7423186 + ] + }, + "properties": { + "timestamp": "2006-11-27T00:00:53", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93496, + -3.8000699 + ] + }, + "properties": { + "timestamp": "2006-11-28T00:01:56", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8701239, + -3.8407384 + ] + }, + "properties": { + "timestamp": "2006-11-28T12:01:51", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8458363, + -3.9719837 + ] + }, + "properties": { + "timestamp": "2006-11-29T00:01:23", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.801329, + -4.0670101 + ] + }, + "properties": { + "timestamp": "2006-11-30T00:01:11", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7786255, + -4.082142 + ] + }, + "properties": { + "timestamp": "2006-11-30T12:02:21", + "year": 2006, + "month": 11, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7307858, + -4.0336148 + ] + }, + "properties": { + "timestamp": "2006-12-01T00:01:25", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7631321, + -3.9319342 + ] + }, + "properties": { + "timestamp": "2006-12-02T00:00:48", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7990738, + -3.8867687 + ] + }, + "properties": { + "timestamp": "2006-12-02T12:02:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7918807, + -3.8420969 + ] + }, + "properties": { + "timestamp": "2006-12-03T00:00:50", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7954178, + -3.794883 + ] + }, + "properties": { + "timestamp": "2006-12-03T12:01:18", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7712354, + -3.7647754 + ] + }, + "properties": { + "timestamp": "2006-12-04T00:01:50", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7652721, + -3.765889 + ] + }, + "properties": { + "timestamp": "2006-12-04T12:00:55", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7634911, + -3.7669801 + ] + }, + "properties": { + "timestamp": "2006-12-05T00:00:49", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7641208, + -3.767778 + ] + }, + "properties": { + "timestamp": "2006-12-05T12:00:43", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7634701, + -3.7676038 + ] + }, + "properties": { + "timestamp": "2006-12-06T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7622216, + -3.7670946 + ] + }, + "properties": { + "timestamp": "2006-12-06T12:01:55", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7610744, + -3.7671132 + ] + }, + "properties": { + "timestamp": "2006-12-07T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8671405, + -3.7357536 + ] + }, + "properties": { + "timestamp": "2006-12-08T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8744268, + -3.7304146 + ] + }, + "properties": { + "timestamp": "2006-12-08T12:01:47", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9029494, + -3.754936 + ] + }, + "properties": { + "timestamp": "2006-12-09T00:01:41", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8604387, + -3.8508383 + ] + }, + "properties": { + "timestamp": "2006-12-10T00:01:52", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8293465, + -3.868246 + ] + }, + "properties": { + "timestamp": "2006-12-10T12:01:23", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8092498, + -3.9246723 + ] + }, + "properties": { + "timestamp": "2006-12-11T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8293567, + -3.9617536 + ] + }, + "properties": { + "timestamp": "2006-12-11T12:01:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7970727, + -4.0533506 + ] + }, + "properties": { + "timestamp": "2006-12-12T00:00:48", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7586502, + -4.0935188 + ] + }, + "properties": { + "timestamp": "2006-12-13T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7581427, + -4.0945744 + ] + }, + "properties": { + "timestamp": "2006-12-14T00:01:23", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6911452, + -4.0563649 + ] + }, + "properties": { + "timestamp": "2006-12-15T00:01:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7630002, + -4.0944425 + ] + }, + "properties": { + "timestamp": "2006-12-16T00:00:47", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7722522, + -4.0694122 + ] + }, + "properties": { + "timestamp": "2006-12-16T12:02:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7499415, + -3.9975353 + ] + }, + "properties": { + "timestamp": "2006-12-17T00:00:48", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.82683, + -3.9667576 + ] + }, + "properties": { + "timestamp": "2006-12-18T00:00:47", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.792925, + -4.0098688 + ] + }, + "properties": { + "timestamp": "2006-12-19T00:00:55", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7625236, + -3.9998083 + ] + }, + "properties": { + "timestamp": "2006-12-19T12:01:17", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8068045, + -3.9534739 + ] + }, + "properties": { + "timestamp": "2006-12-20T00:01:48", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8220261, + -3.9528839 + ] + }, + "properties": { + "timestamp": "2006-12-21T00:01:50", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8070602, + -3.8064283 + ] + }, + "properties": { + "timestamp": "2006-12-21T12:03:05", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8546093, + -3.7504499 + ] + }, + "properties": { + "timestamp": "2006-12-22T00:01:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7919839, + -3.7535499 + ] + }, + "properties": { + "timestamp": "2006-12-22T12:03:04", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8264205, + -3.7290086 + ] + }, + "properties": { + "timestamp": "2006-12-23T00:00:48", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8197156, + -3.7173823 + ] + }, + "properties": { + "timestamp": "2006-12-24T00:00:42", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7895916, + -3.8215451 + ] + }, + "properties": { + "timestamp": "2006-12-24T12:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8413034, + -3.9379311 + ] + }, + "properties": { + "timestamp": "2006-12-25T00:01:22", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8552974, + -3.9766247 + ] + }, + "properties": { + "timestamp": "2006-12-25T12:01:12", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8403872, + -4.1107727 + ] + }, + "properties": { + "timestamp": "2006-12-26T00:00:47", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8419195, + -4.1092484 + ] + }, + "properties": { + "timestamp": "2006-12-26T12:00:55", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8367908, + -4.1247966 + ] + }, + "properties": { + "timestamp": "2006-12-27T12:01:09", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8387083, + -4.1279194 + ] + }, + "properties": { + "timestamp": "2006-12-28T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8381286, + -4.1287518 + ] + }, + "properties": { + "timestamp": "2006-12-28T12:01:24", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8385394, + -4.1279167 + ] + }, + "properties": { + "timestamp": "2006-12-29T00:01:51", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8331402, + -4.1285702 + ] + }, + "properties": { + "timestamp": "2006-12-30T00:00:53", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8016664, + -4.0579978 + ] + }, + "properties": { + "timestamp": "2006-12-31T00:00:54", + "year": 2006, + "month": 12, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7935924, + -4.0039249 + ] + }, + "properties": { + "timestamp": "2007-01-01T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8009306, + -4.0575109 + ] + }, + "properties": { + "timestamp": "2007-01-01T12:01:24", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8052775, + -4.0539632 + ] + }, + "properties": { + "timestamp": "2007-01-02T00:00:48", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8232289, + -3.9805106 + ] + }, + "properties": { + "timestamp": "2007-01-03T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8125816, + -3.9098141 + ] + }, + "properties": { + "timestamp": "2007-01-03T12:01:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.797786, + -3.8442422 + ] + }, + "properties": { + "timestamp": "2007-01-04T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8005011, + -3.7502424 + ] + }, + "properties": { + "timestamp": "2007-01-04T12:01:52", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8214238, + -3.7177659 + ] + }, + "properties": { + "timestamp": "2007-01-05T00:00:48", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9002284, + -3.7613727 + ] + }, + "properties": { + "timestamp": "2007-01-06T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.863836, + -3.8307361 + ] + }, + "properties": { + "timestamp": "2007-01-07T00:01:42", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8171685, + -3.949609 + ] + }, + "properties": { + "timestamp": "2007-01-08T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8024892, + -3.9559261 + ] + }, + "properties": { + "timestamp": "2007-01-08T12:02:51", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7952883, + -4.0062079 + ] + }, + "properties": { + "timestamp": "2007-01-09T00:00:55", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7914876, + -4.0083198 + ] + }, + "properties": { + "timestamp": "2007-01-09T12:02:09", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8019281, + -4.0095854 + ] + }, + "properties": { + "timestamp": "2007-01-10T00:02:24", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8301388, + -3.9944827 + ] + }, + "properties": { + "timestamp": "2007-01-10T12:01:44", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8228956, + -3.9802311 + ] + }, + "properties": { + "timestamp": "2007-01-11T00:01:19", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8209001, + -3.9797513 + ] + }, + "properties": { + "timestamp": "2007-01-11T12:01:11", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8211672, + -3.9798747 + ] + }, + "properties": { + "timestamp": "2007-01-12T00:02:05", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.800488, + -3.945577 + ] + }, + "properties": { + "timestamp": "2007-01-13T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021006, + -3.7751877 + ] + }, + "properties": { + "timestamp": "2007-01-14T00:01:51", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7601965, + -3.6574669 + ] + }, + "properties": { + "timestamp": "2007-01-15T12:01:20", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8206023, + -3.6778046 + ] + }, + "properties": { + "timestamp": "2007-01-16T00:01:18", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8472271, + -3.7184986 + ] + }, + "properties": { + "timestamp": "2007-01-17T00:00:55", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8035942, + -3.8341644 + ] + }, + "properties": { + "timestamp": "2007-01-18T00:01:23", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7956714, + -3.9209105 + ] + }, + "properties": { + "timestamp": "2007-01-18T12:03:02", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7996471, + -3.9455692 + ] + }, + "properties": { + "timestamp": "2007-01-19T00:00:55", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8044229, + -3.9486046 + ] + }, + "properties": { + "timestamp": "2007-01-19T12:01:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7958531, + -3.9437586 + ] + }, + "properties": { + "timestamp": "2007-01-20T00:00:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.800601, + -3.9468266 + ] + }, + "properties": { + "timestamp": "2007-01-20T12:00:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8079883, + -3.9946695 + ] + }, + "properties": { + "timestamp": "2007-01-21T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8337977, + -4.0111116 + ] + }, + "properties": { + "timestamp": "2007-01-21T12:01:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7475224, + -3.99418 + ] + }, + "properties": { + "timestamp": "2007-01-22T00:01:39", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7248156, + -3.9515448 + ] + }, + "properties": { + "timestamp": "2007-01-22T12:01:49", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7182565, + -3.9593884 + ] + }, + "properties": { + "timestamp": "2007-01-23T00:00:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7497455, + -4.0315465 + ] + }, + "properties": { + "timestamp": "2007-01-24T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7683968, + -4.0088666 + ] + }, + "properties": { + "timestamp": "2007-01-24T12:01:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8066542, + -3.9683843 + ] + }, + "properties": { + "timestamp": "2007-01-25T00:00:47", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8103043, + -3.9670862 + ] + }, + "properties": { + "timestamp": "2007-01-25T12:01:41", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7777765, + -3.8870113 + ] + }, + "properties": { + "timestamp": "2007-01-26T00:01:41", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7757396, + -3.7541521 + ] + }, + "properties": { + "timestamp": "2007-01-26T12:03:05", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.866147, + -3.7058649 + ] + }, + "properties": { + "timestamp": "2007-01-27T00:00:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9106494, + -3.6867383 + ] + }, + "properties": { + "timestamp": "2007-01-28T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.972329, + -3.6972142 + ] + }, + "properties": { + "timestamp": "2007-01-29T00:01:16", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9764251, + -3.7349849 + ] + }, + "properties": { + "timestamp": "2007-01-30T00:00:54", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9744838, + -3.7512148 + ] + }, + "properties": { + "timestamp": "2007-01-30T12:01:47", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9738031, + -3.79709 + ] + }, + "properties": { + "timestamp": "2007-01-31T00:00:53", + "year": 2007, + "month": 1, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9439137, + -3.7408332 + ] + }, + "properties": { + "timestamp": "2007-02-01T00:02:01", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8176315, + -3.6663797 + ] + }, + "properties": { + "timestamp": "2007-02-02T00:00:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7757499, + -3.6658973 + ] + }, + "properties": { + "timestamp": "2007-02-02T12:01:11", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7902009, + -3.6421474 + ] + }, + "properties": { + "timestamp": "2007-02-03T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7955719, + -3.6803177 + ] + }, + "properties": { + "timestamp": "2007-02-03T12:01:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7746404, + -3.7418947 + ] + }, + "properties": { + "timestamp": "2007-02-04T00:00:47", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8382347, + -3.6987303 + ] + }, + "properties": { + "timestamp": "2007-02-04T12:00:56", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8754732, + -3.6758841 + ] + }, + "properties": { + "timestamp": "2007-02-05T00:00:47", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8433829, + -3.666849 + ] + }, + "properties": { + "timestamp": "2007-02-05T12:03:12", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8267005, + -3.6906311 + ] + }, + "properties": { + "timestamp": "2007-02-06T00:02:01", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8273304, + -3.8388714 + ] + }, + "properties": { + "timestamp": "2007-02-07T00:02:46", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8279664, + -3.8397073 + ] + }, + "properties": { + "timestamp": "2007-02-07T12:00:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8420304, + -3.8822137 + ] + }, + "properties": { + "timestamp": "2007-02-08T00:01:17", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8000784, + -3.8549801 + ] + }, + "properties": { + "timestamp": "2007-02-09T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7777947, + -3.8370118 + ] + }, + "properties": { + "timestamp": "2007-02-09T12:00:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7527705, + -3.7207871 + ] + }, + "properties": { + "timestamp": "2007-02-10T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7373808, + -3.7606021 + ] + }, + "properties": { + "timestamp": "2007-02-11T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7889821, + -3.8591799 + ] + }, + "properties": { + "timestamp": "2007-02-12T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8583093, + -3.9535309 + ] + }, + "properties": { + "timestamp": "2007-02-13T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8591137, + -3.9540196 + ] + }, + "properties": { + "timestamp": "2007-02-13T12:01:44", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8444856, + -3.9628358 + ] + }, + "properties": { + "timestamp": "2007-02-15T00:01:24", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8291136, + -3.9649659 + ] + }, + "properties": { + "timestamp": "2007-02-15T12:02:52", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.829085, + -3.9653523 + ] + }, + "properties": { + "timestamp": "2007-02-16T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8292241, + -3.9647991 + ] + }, + "properties": { + "timestamp": "2007-02-16T12:02:24", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7684335, + -3.9152519 + ] + }, + "properties": { + "timestamp": "2007-02-17T00:01:15", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7740554, + -3.9064653 + ] + }, + "properties": { + "timestamp": "2007-02-17T12:01:41", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7686895, + -3.915274 + ] + }, + "properties": { + "timestamp": "2007-02-18T00:01:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7709897, + -3.9141055 + ] + }, + "properties": { + "timestamp": "2007-02-18T12:02:19", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7687415, + -3.9148586 + ] + }, + "properties": { + "timestamp": "2007-02-19T00:01:23", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7857794, + -3.9264837 + ] + }, + "properties": { + "timestamp": "2007-02-19T12:02:10", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7481496, + -3.8158637 + ] + }, + "properties": { + "timestamp": "2007-02-20T00:01:20", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7702883, + -3.7333822 + ] + }, + "properties": { + "timestamp": "2007-02-21T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7620498, + -3.6686416 + ] + }, + "properties": { + "timestamp": "2007-02-22T00:00:53", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.745771, + -3.6749433 + ] + }, + "properties": { + "timestamp": "2007-02-22T12:00:55", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7967755, + -3.7442376 + ] + }, + "properties": { + "timestamp": "2007-02-23T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8499603, + -3.7190751 + ] + }, + "properties": { + "timestamp": "2007-02-24T00:01:11", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.836334, + -3.7268192 + ] + }, + "properties": { + "timestamp": "2007-02-24T12:01:47", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8204388, + -3.8076135 + ] + }, + "properties": { + "timestamp": "2007-02-25T00:01:11", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7896154, + -3.9499158 + ] + }, + "properties": { + "timestamp": "2007-02-26T00:00:55", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8116092, + -3.9651346 + ] + }, + "properties": { + "timestamp": "2007-02-26T12:01:51", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.859625, + -3.9786586 + ] + }, + "properties": { + "timestamp": "2007-02-27T00:00:54", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8645415, + -4.0014815 + ] + }, + "properties": { + "timestamp": "2007-02-27T12:01:18", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8537347, + -4.0275211 + ] + }, + "properties": { + "timestamp": "2007-02-28T00:01:51", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8550753, + -4.0288 + ] + }, + "properties": { + "timestamp": "2007-02-28T12:00:55", + "year": 2007, + "month": 2, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.855296, + -4.0290055 + ] + }, + "properties": { + "timestamp": "2007-03-01T00:00:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8550657, + -4.0287792 + ] + }, + "properties": { + "timestamp": "2007-03-01T12:01:12", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8547661, + -4.0288684 + ] + }, + "properties": { + "timestamp": "2007-03-02T00:01:25", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8558225, + -4.0296667 + ] + }, + "properties": { + "timestamp": "2007-03-02T12:00:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8204509, + -3.9645644 + ] + }, + "properties": { + "timestamp": "2007-03-04T00:01:47", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7910554, + -3.9426407 + ] + }, + "properties": { + "timestamp": "2007-03-04T12:03:03", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.812206, + -3.9928382 + ] + }, + "properties": { + "timestamp": "2007-03-05T00:01:52", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7992338, + -3.9947069 + ] + }, + "properties": { + "timestamp": "2007-03-05T12:02:10", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021249, + -3.9905786 + ] + }, + "properties": { + "timestamp": "2007-03-06T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8122148, + -3.9847924 + ] + }, + "properties": { + "timestamp": "2007-03-06T12:01:24", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8122978, + -3.9850452 + ] + }, + "properties": { + "timestamp": "2007-03-07T00:00:47", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7985358, + -3.9352212 + ] + }, + "properties": { + "timestamp": "2007-03-08T00:02:18", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7678836, + -3.7351812 + ] + }, + "properties": { + "timestamp": "2007-03-09T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8078867, + -3.6985632 + ] + }, + "properties": { + "timestamp": "2007-03-09T12:01:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9153827, + -3.7587264 + ] + }, + "properties": { + "timestamp": "2007-03-10T00:00:48", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9677505, + -3.7659844 + ] + }, + "properties": { + "timestamp": "2007-03-11T00:00:49", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9674129, + -3.7690944 + ] + }, + "properties": { + "timestamp": "2007-03-11T12:01:24", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9683745, + -3.7692018 + ] + }, + "properties": { + "timestamp": "2007-03-12T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8880063, + -3.7029613 + ] + }, + "properties": { + "timestamp": "2007-03-13T00:01:17", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.806349, + -3.7005784 + ] + }, + "properties": { + "timestamp": "2007-03-13T12:02:51", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7548349, + -3.7262663 + ] + }, + "properties": { + "timestamp": "2007-03-14T00:00:49", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7437364, + -3.7291228 + ] + }, + "properties": { + "timestamp": "2007-03-14T12:01:08", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7597777, + -3.7127047 + ] + }, + "properties": { + "timestamp": "2007-03-15T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7298301, + -3.7301083 + ] + }, + "properties": { + "timestamp": "2007-03-16T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7575106, + -3.7806951 + ] + }, + "properties": { + "timestamp": "2007-03-17T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7559423, + -3.7870703 + ] + }, + "properties": { + "timestamp": "2007-03-17T12:03:09", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7968812, + -3.9233357 + ] + }, + "properties": { + "timestamp": "2007-03-18T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8006917, + -3.9398587 + ] + }, + "properties": { + "timestamp": "2007-03-18T12:02:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8065196, + -3.9528019 + ] + }, + "properties": { + "timestamp": "2007-03-19T00:01:20", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8158948, + -3.9940974 + ] + }, + "properties": { + "timestamp": "2007-03-19T12:00:43", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8197351, + -3.9953666 + ] + }, + "properties": { + "timestamp": "2007-03-20T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8332069, + -3.9949402 + ] + }, + "properties": { + "timestamp": "2007-03-20T12:03:08", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.825878, + -3.9918951 + ] + }, + "properties": { + "timestamp": "2007-03-21T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8347369, + -3.9966184 + ] + }, + "properties": { + "timestamp": "2007-03-21T12:02:18", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8413444, + -3.9950915 + ] + }, + "properties": { + "timestamp": "2007-03-22T00:01:45", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7705624, + -4.0729902 + ] + }, + "properties": { + "timestamp": "2007-03-23T00:00:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6768787, + -4.0992132 + ] + }, + "properties": { + "timestamp": "2007-03-24T00:00:56", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6806739, + -4.0192521 + ] + }, + "properties": { + "timestamp": "2007-03-25T00:01:47", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.784295, + -3.9255537 + ] + }, + "properties": { + "timestamp": "2007-03-25T12:01:23", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871181, + -3.8826249 + ] + }, + "properties": { + "timestamp": "2007-03-26T00:00:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9130066, + -3.8629817 + ] + }, + "properties": { + "timestamp": "2007-03-26T12:01:52", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9517177, + -3.790835 + ] + }, + "properties": { + "timestamp": "2007-03-27T00:01:21", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8773225, + -3.7048654 + ] + }, + "properties": { + "timestamp": "2007-03-28T00:00:55", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8286106, + -3.6875126 + ] + }, + "properties": { + "timestamp": "2007-03-28T12:02:12", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8183935, + -3.6796143 + ] + }, + "properties": { + "timestamp": "2007-03-29T00:01:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8181799, + -3.6797872 + ] + }, + "properties": { + "timestamp": "2007-03-29T12:01:11", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8183401, + -3.6798322 + ] + }, + "properties": { + "timestamp": "2007-03-30T00:01:51", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8181609, + -3.6797627 + ] + }, + "properties": { + "timestamp": "2007-03-30T12:00:53", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8182196, + -3.6782655 + ] + }, + "properties": { + "timestamp": "2007-03-31T00:00:54", + "year": 2007, + "month": 3, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8204276, + -3.6356542 + ] + }, + "properties": { + "timestamp": "2007-04-01T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8038298, + -3.6646082 + ] + }, + "properties": { + "timestamp": "2007-04-01T12:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7832124, + -3.7911571 + ] + }, + "properties": { + "timestamp": "2007-04-02T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8056758, + -3.9141159 + ] + }, + "properties": { + "timestamp": "2007-04-02T12:01:24", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8313151, + -3.9504188 + ] + }, + "properties": { + "timestamp": "2007-04-03T00:00:49", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8329414, + -3.9964076 + ] + }, + "properties": { + "timestamp": "2007-04-03T12:01:24", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8298718, + -4.0285331 + ] + }, + "properties": { + "timestamp": "2007-04-04T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8231258, + -4.0493045 + ] + }, + "properties": { + "timestamp": "2007-04-06T00:01:56", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8182786, + -4.0513442 + ] + }, + "properties": { + "timestamp": "2007-04-07T00:01:27", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8395314, + -4.0036705 + ] + }, + "properties": { + "timestamp": "2007-04-07T12:00:48", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8229756, + -4.0229326 + ] + }, + "properties": { + "timestamp": "2007-04-08T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8195899, + -3.9834876 + ] + }, + "properties": { + "timestamp": "2007-04-09T00:00:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8338793, + -4.0001042 + ] + }, + "properties": { + "timestamp": "2007-04-09T12:02:10", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8066169, + -3.9943551 + ] + }, + "properties": { + "timestamp": "2007-04-10T00:00:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8347183, + -3.9963752 + ] + }, + "properties": { + "timestamp": "2007-04-10T12:01:41", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8069433, + -3.9936738 + ] + }, + "properties": { + "timestamp": "2007-04-11T00:00:48", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8347116, + -3.9964108 + ] + }, + "properties": { + "timestamp": "2007-04-11T12:02:11", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8078006, + -3.9770756 + ] + }, + "properties": { + "timestamp": "2007-04-12T00:00:48", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8039128, + -4.0121782 + ] + }, + "properties": { + "timestamp": "2007-04-13T00:00:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8178331, + -3.9734173 + ] + }, + "properties": { + "timestamp": "2007-04-13T12:01:24", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.808115, + -4.0399498 + ] + }, + "properties": { + "timestamp": "2007-04-14T00:00:56", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8392946, + -4.0074347 + ] + }, + "properties": { + "timestamp": "2007-04-14T12:00:49", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8183253, + -3.9601774 + ] + }, + "properties": { + "timestamp": "2007-04-15T00:01:11", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8143938, + -3.96877 + ] + }, + "properties": { + "timestamp": "2007-04-15T12:01:47", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8275496, + -3.9597566 + ] + }, + "properties": { + "timestamp": "2007-04-16T00:03:07", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8451602, + -3.8561012 + ] + }, + "properties": { + "timestamp": "2007-04-17T00:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8679493, + -3.9438375 + ] + }, + "properties": { + "timestamp": "2007-04-17T12:03:09", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8166759, + -3.8897837 + ] + }, + "properties": { + "timestamp": "2007-04-18T00:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8022891, + -3.8747841 + ] + }, + "properties": { + "timestamp": "2007-04-18T12:01:40", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021074, + -3.8730685 + ] + }, + "properties": { + "timestamp": "2007-04-19T00:01:52", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8029196, + -3.8716587 + ] + }, + "properties": { + "timestamp": "2007-04-19T12:01:41", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8021748, + -3.8734634 + ] + }, + "properties": { + "timestamp": "2007-04-20T00:02:20", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7669324, + -3.7796984 + ] + }, + "properties": { + "timestamp": "2007-04-21T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7614314, + -3.7425082 + ] + }, + "properties": { + "timestamp": "2007-04-22T00:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7710844, + -3.7365816 + ] + }, + "properties": { + "timestamp": "2007-04-22T12:01:51", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7526302, + -3.7220615 + ] + }, + "properties": { + "timestamp": "2007-04-23T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7614369, + -3.7421131 + ] + }, + "properties": { + "timestamp": "2007-04-23T12:02:23", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7652, + -3.73921 + ] + }, + "properties": { + "timestamp": "2007-04-24T00:00:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7610098, + -3.7426829 + ] + }, + "properties": { + "timestamp": "2007-04-25T00:02:11", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7604086, + -3.7469788 + ] + }, + "properties": { + "timestamp": "2007-04-25T12:02:22", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7922643, + -3.831232 + ] + }, + "properties": { + "timestamp": "2007-04-26T00:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8222155, + -3.9566982 + ] + }, + "properties": { + "timestamp": "2007-04-26T12:01:53", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8258814, + -3.963905 + ] + }, + "properties": { + "timestamp": "2007-04-27T00:01:35", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8184657, + -3.919059 + ] + }, + "properties": { + "timestamp": "2007-04-27T12:00:55", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8175573, + -3.9551745 + ] + }, + "properties": { + "timestamp": "2007-04-28T00:01:22", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8339227, + -3.9962491 + ] + }, + "properties": { + "timestamp": "2007-04-28T12:00:54", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8497046, + -3.9928023 + ] + }, + "properties": { + "timestamp": "2007-04-29T00:00:55", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8671299, + -3.9611201 + ] + }, + "properties": { + "timestamp": "2007-04-30T00:01:24", + "year": 2007, + "month": 4, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8675882, + -3.960775 + ] + }, + "properties": { + "timestamp": "2007-05-01T00:00:55", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8807288, + -3.9794262 + ] + }, + "properties": { + "timestamp": "2007-05-02T00:01:12", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8293195, + -3.962089 + ] + }, + "properties": { + "timestamp": "2007-05-03T00:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.786704, + -3.8947666 + ] + }, + "properties": { + "timestamp": "2007-05-04T00:00:52", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7585512, + -3.7700575 + ] + }, + "properties": { + "timestamp": "2007-05-04T12:01:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7615242, + -3.7671445 + ] + }, + "properties": { + "timestamp": "2007-05-05T00:00:43", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7655736, + -3.7677745 + ] + }, + "properties": { + "timestamp": "2007-05-05T12:01:50", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7646313, + -3.7676476 + ] + }, + "properties": { + "timestamp": "2007-05-06T00:00:43", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7664047, + -3.7624594 + ] + }, + "properties": { + "timestamp": "2007-05-06T12:01:23", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7656482, + -3.7596641 + ] + }, + "properties": { + "timestamp": "2007-05-07T00:00:48", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7596996, + -3.7433981 + ] + }, + "properties": { + "timestamp": "2007-05-07T12:03:01", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8419448, + -3.7283684 + ] + }, + "properties": { + "timestamp": "2007-05-08T00:00:52", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8881528, + -3.7589259 + ] + }, + "properties": { + "timestamp": "2007-05-08T12:02:17", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.793399, + -3.7998769 + ] + }, + "properties": { + "timestamp": "2007-05-09T00:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8509396, + -3.8467747 + ] + }, + "properties": { + "timestamp": "2007-05-10T00:00:47", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8253059, + -3.9917473 + ] + }, + "properties": { + "timestamp": "2007-05-11T00:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8239634, + -3.9868899 + ] + }, + "properties": { + "timestamp": "2007-05-11T12:01:50", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8567086, + -4.0242277 + ] + }, + "properties": { + "timestamp": "2007-05-12T00:00:42", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8435617, + -4.0136633 + ] + }, + "properties": { + "timestamp": "2007-05-13T00:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8435771, + -4.0137248 + ] + }, + "properties": { + "timestamp": "2007-05-13T12:02:42", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8436642, + -4.013605 + ] + }, + "properties": { + "timestamp": "2007-05-14T00:01:41", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8439239, + -4.0135944 + ] + }, + "properties": { + "timestamp": "2007-05-14T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8439126, + -4.0135753 + ] + }, + "properties": { + "timestamp": "2007-05-15T00:00:51", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8604136, + -4.0220431 + ] + }, + "properties": { + "timestamp": "2007-05-15T12:01:23", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8336925, + -3.9960317 + ] + }, + "properties": { + "timestamp": "2007-05-16T00:00:48", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8208642, + -4.1058691 + ] + }, + "properties": { + "timestamp": "2007-05-17T00:00:48", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8532701, + -4.1398154 + ] + }, + "properties": { + "timestamp": "2007-05-17T12:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8616616, + -4.0898608 + ] + }, + "properties": { + "timestamp": "2007-05-18T00:02:19", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8613841, + -4.0903511 + ] + }, + "properties": { + "timestamp": "2007-05-18T12:00:44", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8582151, + -4.0648815 + ] + }, + "properties": { + "timestamp": "2007-05-19T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85825, + -4.0648844 + ] + }, + "properties": { + "timestamp": "2007-05-20T12:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8472714, + -3.9990022 + ] + }, + "properties": { + "timestamp": "2007-05-21T00:00:48", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8223728, + -3.9878615 + ] + }, + "properties": { + "timestamp": "2007-05-21T12:02:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8194886, + -3.9489041 + ] + }, + "properties": { + "timestamp": "2007-05-22T00:00:50", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7868587, + -3.7991296 + ] + }, + "properties": { + "timestamp": "2007-05-23T00:01:12", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7907279, + -3.8042213 + ] + }, + "properties": { + "timestamp": "2007-05-23T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7904998, + -3.8035082 + ] + }, + "properties": { + "timestamp": "2007-05-24T00:00:49", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8048543, + -3.8097378 + ] + }, + "properties": { + "timestamp": "2007-05-24T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7769025, + -3.7891711 + ] + }, + "properties": { + "timestamp": "2007-05-25T00:00:48", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7941471, + -3.8886556 + ] + }, + "properties": { + "timestamp": "2007-05-25T12:03:01", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8245728, + -3.967109 + ] + }, + "properties": { + "timestamp": "2007-05-26T00:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8453869, + -3.9810648 + ] + }, + "properties": { + "timestamp": "2007-05-27T00:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.860112, + -3.9639879 + ] + }, + "properties": { + "timestamp": "2007-05-27T12:01:11", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8615612, + -3.9734411 + ] + }, + "properties": { + "timestamp": "2007-05-28T00:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8264328, + -3.9639506 + ] + }, + "properties": { + "timestamp": "2007-05-29T00:00:53", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8141076, + -3.915653 + ] + }, + "properties": { + "timestamp": "2007-05-29T12:00:54", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8311532, + -3.9177486 + ] + }, + "properties": { + "timestamp": "2007-05-30T00:00:47", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8230627, + -3.9456568 + ] + }, + "properties": { + "timestamp": "2007-05-30T12:01:23", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8180729, + -3.9493365 + ] + }, + "properties": { + "timestamp": "2007-05-31T00:00:49", + "year": 2007, + "month": 5, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7201893, + -3.9651752 + ] + }, + "properties": { + "timestamp": "2007-06-01T00:00:48", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.694143, + -3.9798917 + ] + }, + "properties": { + "timestamp": "2007-06-01T12:00:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6880951, + -3.9851185 + ] + }, + "properties": { + "timestamp": "2007-06-02T00:00:54", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6867691, + -3.9863493 + ] + }, + "properties": { + "timestamp": "2007-06-02T12:03:11", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.687226, + -3.9859199 + ] + }, + "properties": { + "timestamp": "2007-06-03T00:00:55", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.6983665, + -4.0007226 + ] + }, + "properties": { + "timestamp": "2007-06-03T12:02:30", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7742297, + -3.9990771 + ] + }, + "properties": { + "timestamp": "2007-06-04T00:00:50", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8338603, + -3.9931235 + ] + }, + "properties": { + "timestamp": "2007-06-05T00:00:54", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8497974, + -3.9880353 + ] + }, + "properties": { + "timestamp": "2007-06-05T12:02:26", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8491433, + -3.9869944 + ] + }, + "properties": { + "timestamp": "2007-06-06T00:00:53", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.849841, + -3.9877384 + ] + }, + "properties": { + "timestamp": "2007-06-07T00:02:02", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85, + -3.9885601 + ] + }, + "properties": { + "timestamp": "2007-06-07T12:01:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8491396, + -3.9868788 + ] + }, + "properties": { + "timestamp": "2007-06-08T00:00:55", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8343773, + -3.9964289 + ] + }, + "properties": { + "timestamp": "2007-06-08T12:01:23", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8145501, + -3.9403339 + ] + }, + "properties": { + "timestamp": "2007-06-09T00:01:54", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7927056, + -3.8683408 + ] + }, + "properties": { + "timestamp": "2007-06-09T12:01:54", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7832177, + -3.7964132 + ] + }, + "properties": { + "timestamp": "2007-06-10T00:00:49", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7630077, + -3.7693861 + ] + }, + "properties": { + "timestamp": "2007-06-11T00:00:48", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7630456, + -3.7691878 + ] + }, + "properties": { + "timestamp": "2007-06-11T12:01:56", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7630624, + -3.7692035 + ] + }, + "properties": { + "timestamp": "2007-06-12T00:01:12", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7677696, + -3.7614533 + ] + }, + "properties": { + "timestamp": "2007-06-12T12:01:45", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7835797, + -3.7829227 + ] + }, + "properties": { + "timestamp": "2007-06-13T00:00:48", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7993165, + -3.8573208 + ] + }, + "properties": { + "timestamp": "2007-06-13T12:01:23", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.807001, + -3.9083312 + ] + }, + "properties": { + "timestamp": "2007-06-14T00:00:49", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8255152, + -3.9100254 + ] + }, + "properties": { + "timestamp": "2007-06-14T12:01:12", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8300208, + -3.9222881 + ] + }, + "properties": { + "timestamp": "2007-06-15T00:00:52", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.818917, + -3.9977102 + ] + }, + "properties": { + "timestamp": "2007-06-16T00:00:55", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7758394, + -4.01857 + ] + }, + "properties": { + "timestamp": "2007-06-17T00:01:16", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8248749, + -4.1064601 + ] + }, + "properties": { + "timestamp": "2007-06-18T00:01:52", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.824261, + -4.1059935 + ] + }, + "properties": { + "timestamp": "2007-06-19T00:00:48", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8242566, + -4.105113 + ] + }, + "properties": { + "timestamp": "2007-06-19T12:00:54", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8727833, + -4.0978781 + ] + }, + "properties": { + "timestamp": "2007-06-20T00:01:24", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8174118, + -4.0416709 + ] + }, + "properties": { + "timestamp": "2007-06-21T12:01:52", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8328413, + -3.9964831 + ] + }, + "properties": { + "timestamp": "2007-06-22T00:00:52", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8343205, + -3.9627241 + ] + }, + "properties": { + "timestamp": "2007-06-23T00:01:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.777208, + -3.7894637 + ] + }, + "properties": { + "timestamp": "2007-06-24T00:01:12", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7681338, + -3.7612553 + ] + }, + "properties": { + "timestamp": "2007-06-24T12:01:36", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7677638, + -3.7588195 + ] + }, + "properties": { + "timestamp": "2007-06-25T00:00:41", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7700134, + -3.7628632 + ] + }, + "properties": { + "timestamp": "2007-06-25T12:01:41", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7692682, + -3.7597891 + ] + }, + "properties": { + "timestamp": "2007-06-26T00:00:53", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7920285, + -3.7497731 + ] + }, + "properties": { + "timestamp": "2007-06-26T12:01:53", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7922227, + -3.7504653 + ] + }, + "properties": { + "timestamp": "2007-06-27T00:01:11", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7653033, + -3.7680087 + ] + }, + "properties": { + "timestamp": "2007-06-27T12:01:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7645539, + -3.767626 + ] + }, + "properties": { + "timestamp": "2007-06-28T00:00:53", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7663605, + -3.7684053 + ] + }, + "properties": { + "timestamp": "2007-06-28T12:01:46", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7645329, + -3.7685513 + ] + }, + "properties": { + "timestamp": "2007-06-29T00:00:48", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8080821, + -3.809968 + ] + }, + "properties": { + "timestamp": "2007-06-29T12:00:47", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8344665, + -3.8325189 + ] + }, + "properties": { + "timestamp": "2007-06-30T00:01:23", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8154055, + -3.8767736 + ] + }, + "properties": { + "timestamp": "2007-06-30T12:03:02", + "year": 2007, + "month": 6, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8204865, + -3.8836112 + ] + }, + "properties": { + "timestamp": "2007-07-01T00:00:54", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8309407, + -3.9606171 + ] + }, + "properties": { + "timestamp": "2007-07-01T12:01:51", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8256736, + -3.9905683 + ] + }, + "properties": { + "timestamp": "2007-07-02T00:01:11", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8606104, + -4.027626 + ] + }, + "properties": { + "timestamp": "2007-07-02T12:01:55", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8253207, + -3.9178021 + ] + }, + "properties": { + "timestamp": "2007-07-03T00:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7687408, + -3.7580954 + ] + }, + "properties": { + "timestamp": "2007-07-04T00:01:23", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8737095, + -3.7381728 + ] + }, + "properties": { + "timestamp": "2007-07-05T00:00:49", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8023723, + -3.8073425 + ] + }, + "properties": { + "timestamp": "2007-07-05T12:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8292852, + -3.9280989 + ] + }, + "properties": { + "timestamp": "2007-07-06T00:00:55", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8217006, + -3.9421529 + ] + }, + "properties": { + "timestamp": "2007-07-07T00:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7983382, + -3.8678514 + ] + }, + "properties": { + "timestamp": "2007-07-07T12:00:55", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8192795, + -3.8732309 + ] + }, + "properties": { + "timestamp": "2007-07-08T00:00:55", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8328253, + -3.8415042 + ] + }, + "properties": { + "timestamp": "2007-07-08T12:01:54", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8328445, + -3.8415193 + ] + }, + "properties": { + "timestamp": "2007-07-09T00:00:56", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8259222, + -3.8380573 + ] + }, + "properties": { + "timestamp": "2007-07-09T12:02:22", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8321274, + -3.8415373 + ] + }, + "properties": { + "timestamp": "2007-07-10T00:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8259095, + -3.8380211 + ] + }, + "properties": { + "timestamp": "2007-07-10T12:02:22", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8321514, + -3.8415925 + ] + }, + "properties": { + "timestamp": "2007-07-11T00:01:17", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8264653, + -3.8325666 + ] + }, + "properties": { + "timestamp": "2007-07-11T12:02:18", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8313839, + -3.8430576 + ] + }, + "properties": { + "timestamp": "2007-07-12T00:00:50", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7684249, + -3.8707934 + ] + }, + "properties": { + "timestamp": "2007-07-12T12:02:23", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7695098, + -3.8714457 + ] + }, + "properties": { + "timestamp": "2007-07-13T00:00:54", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7819684, + -3.9333817 + ] + }, + "properties": { + "timestamp": "2007-07-14T00:01:23", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7920287, + -3.8540664 + ] + }, + "properties": { + "timestamp": "2007-07-15T00:00:47", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7877777, + -3.8204737 + ] + }, + "properties": { + "timestamp": "2007-07-15T12:01:29", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7898842, + -3.8046315 + ] + }, + "properties": { + "timestamp": "2007-07-16T00:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7938387, + -3.8023386 + ] + }, + "properties": { + "timestamp": "2007-07-16T12:01:24", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.7894568, + -3.8038727 + ] + }, + "properties": { + "timestamp": "2007-07-17T00:00:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8706017, + -3.7892921 + ] + }, + "properties": { + "timestamp": "2007-07-20T12:01:53", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8705947, + -3.7893195 + ] + }, + "properties": { + "timestamp": "2007-07-21T00:01:58", + "year": 2007, + "month": 7, + "species": "Lion", + "individual_id": "Kiboche", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87065167, + -3.78817667 + ] + }, + "properties": { + "timestamp": "2002-04-27T22:04:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.929925, + -3.800805 + ] + }, + "properties": { + "timestamp": "2002-04-28T04:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92913667, + -3.80072667 + ] + }, + "properties": { + "timestamp": "2002-04-28T11:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93245167, + -3.80076167 + ] + }, + "properties": { + "timestamp": "2002-04-28T18:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93510667, + -3.80006167 + ] + }, + "properties": { + "timestamp": "2002-04-29T01:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93576167, + -3.79967667 + ] + }, + "properties": { + "timestamp": "2002-04-29T08:04:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93766, + -3.79953833 + ] + }, + "properties": { + "timestamp": "2002-04-29T16:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.941715, + -3.79895333 + ] + }, + "properties": { + "timestamp": "2002-04-29T22:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94081, + -3.7843 + ] + }, + "properties": { + "timestamp": "2002-04-30T12:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.927025, + -3.80612 + ] + }, + "properties": { + "timestamp": "2002-04-30T19:03:00", + "year": 2002, + "month": 4, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96854, + -3.833285 + ] + }, + "properties": { + "timestamp": "2002-05-01T02:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96850333, + -3.83393833 + ] + }, + "properties": { + "timestamp": "2002-05-01T09:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.968305, + -3.83456833 + ] + }, + "properties": { + "timestamp": "2002-05-01T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96400833, + -3.831845 + ] + }, + "properties": { + "timestamp": "2002-05-01T23:02:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94022, + -3.78441667 + ] + }, + "properties": { + "timestamp": "2002-05-02T13:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93944833, + -3.786425 + ] + }, + "properties": { + "timestamp": "2002-05-02T20:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.929425, + -3.79931333 + ] + }, + "properties": { + "timestamp": "2002-05-03T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.929525, + -3.79924667 + ] + }, + "properties": { + "timestamp": "2002-05-03T10:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.927955, + -3.79923333 + ] + }, + "properties": { + "timestamp": "2002-05-03T17:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94084833, + -3.78453333 + ] + }, + "properties": { + "timestamp": "2002-05-04T00:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89106667, + -3.786235 + ] + }, + "properties": { + "timestamp": "2002-05-04T14:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89812833, + -3.79077 + ] + }, + "properties": { + "timestamp": "2002-05-04T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93491, + -3.87698 + ] + }, + "properties": { + "timestamp": "2002-05-05T04:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93485333, + -3.87709167 + ] + }, + "properties": { + "timestamp": "2002-05-05T11:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95076667, + -3.80174167 + ] + }, + "properties": { + "timestamp": "2002-05-05T19:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93952167, + -3.82615667 + ] + }, + "properties": { + "timestamp": "2002-05-06T08:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93964167, + -3.8258 + ] + }, + "properties": { + "timestamp": "2002-05-06T15:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90191833, + -3.86061 + ] + }, + "properties": { + "timestamp": "2002-05-07T12:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88739667, + -3.85182667 + ] + }, + "properties": { + "timestamp": "2002-05-07T19:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92946333, + -3.79961667 + ] + }, + "properties": { + "timestamp": "2002-05-08T02:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94027167, + -3.79353667 + ] + }, + "properties": { + "timestamp": "2002-05-08T17:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88732833, + -3.85227333 + ] + }, + "properties": { + "timestamp": "2002-05-08T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871845, + -3.85364 + ] + }, + "properties": { + "timestamp": "2002-05-09T13:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.943955, + -3.794645 + ] + }, + "properties": { + "timestamp": "2002-05-09T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89765667, + -3.83986833 + ] + }, + "properties": { + "timestamp": "2002-05-10T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88889833, + -3.84641 + ] + }, + "properties": { + "timestamp": "2002-05-10T10:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870025, + -3.86276833 + ] + }, + "properties": { + "timestamp": "2002-05-10T17:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85860167, + -3.81106333 + ] + }, + "properties": { + "timestamp": "2002-05-11T00:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88291333, + -3.80013167 + ] + }, + "properties": { + "timestamp": "2002-05-11T07:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89012, + -3.79102 + ] + }, + "properties": { + "timestamp": "2002-05-11T14:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91660333, + -3.84235667 + ] + }, + "properties": { + "timestamp": "2002-05-11T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00250167, + -3.76275333 + ] + }, + "properties": { + "timestamp": "2002-05-12T04:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.00408, + -3.766455 + ] + }, + "properties": { + "timestamp": "2002-05-12T11:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.971035, + -3.72052333 + ] + }, + "properties": { + "timestamp": "2002-05-12T18:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96925667, + -3.721925 + ] + }, + "properties": { + "timestamp": "2002-05-13T01:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96916, + -3.72183 + ] + }, + "properties": { + "timestamp": "2002-05-13T08:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96919333, + -3.721495 + ] + }, + "properties": { + "timestamp": "2002-05-13T15:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96916, + -3.721815 + ] + }, + "properties": { + "timestamp": "2002-05-13T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93092, + -3.83525833 + ] + }, + "properties": { + "timestamp": "2002-05-14T20:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.915055, + -3.84172 + ] + }, + "properties": { + "timestamp": "2002-05-15T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.914725, + -3.84148167 + ] + }, + "properties": { + "timestamp": "2002-05-15T10:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91866167, + -3.84092667 + ] + }, + "properties": { + "timestamp": "2002-05-15T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92052667, + -3.834145 + ] + }, + "properties": { + "timestamp": "2002-05-15T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90008333, + -3.82810167 + ] + }, + "properties": { + "timestamp": "2002-05-16T07:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90887833, + -3.83243833 + ] + }, + "properties": { + "timestamp": "2002-05-16T14:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90911, + -3.83235333 + ] + }, + "properties": { + "timestamp": "2002-05-16T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.890945, + -3.82019333 + ] + }, + "properties": { + "timestamp": "2002-05-17T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88229333, + -3.82937833 + ] + }, + "properties": { + "timestamp": "2002-05-17T10:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89235167, + -3.83599667 + ] + }, + "properties": { + "timestamp": "2002-05-17T17:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95426167, + -3.80822833 + ] + }, + "properties": { + "timestamp": "2002-05-18T00:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94308667, + -3.80175 + ] + }, + "properties": { + "timestamp": "2002-05-18T07:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9431, + -3.80166 + ] + }, + "properties": { + "timestamp": "2002-05-18T14:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92769167, + -3.801265 + ] + }, + "properties": { + "timestamp": "2002-05-18T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88101, + -3.834125 + ] + }, + "properties": { + "timestamp": "2002-05-19T12:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89550833, + -3.85198 + ] + }, + "properties": { + "timestamp": "2002-05-19T18:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87370833, + -3.83884 + ] + }, + "properties": { + "timestamp": "2002-05-20T01:04:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.944995, + -3.81903333 + ] + }, + "properties": { + "timestamp": "2002-05-20T08:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95025167, + -3.80272833 + ] + }, + "properties": { + "timestamp": "2002-05-20T15:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87623833, + -3.83816167 + ] + }, + "properties": { + "timestamp": "2002-05-21T05:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87411833, + -3.83600333 + ] + }, + "properties": { + "timestamp": "2002-05-21T12:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88404833, + -3.83134833 + ] + }, + "properties": { + "timestamp": "2002-05-21T20:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91051, + -3.80834667 + ] + }, + "properties": { + "timestamp": "2002-05-22T02:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93991333, + -3.82267833 + ] + }, + "properties": { + "timestamp": "2002-05-22T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87754167, + -3.78003 + ] + }, + "properties": { + "timestamp": "2002-05-22T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.886715, + -3.78176167 + ] + }, + "properties": { + "timestamp": "2002-05-23T06:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.916965, + -3.80158167 + ] + }, + "properties": { + "timestamp": "2002-05-23T13:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.924085, + -3.80130167 + ] + }, + "properties": { + "timestamp": "2002-05-23T20:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93635333, + -3.81522667 + ] + }, + "properties": { + "timestamp": "2002-05-24T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93388, + -3.81707333 + ] + }, + "properties": { + "timestamp": "2002-05-24T11:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93685667, + -3.81544167 + ] + }, + "properties": { + "timestamp": "2002-05-25T00:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.936905, + -3.81732 + ] + }, + "properties": { + "timestamp": "2002-05-25T14:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94016167, + -3.82124 + ] + }, + "properties": { + "timestamp": "2002-05-25T21:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.949785, + -3.80407333 + ] + }, + "properties": { + "timestamp": "2002-05-26T11:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94966833, + -3.80373333 + ] + }, + "properties": { + "timestamp": "2002-05-26T18:02:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.895865, + -3.79732833 + ] + }, + "properties": { + "timestamp": "2002-05-27T01:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88155167, + -3.78361333 + ] + }, + "properties": { + "timestamp": "2002-05-27T08:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88719333, + -3.78675833 + ] + }, + "properties": { + "timestamp": "2002-05-27T15:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87726, + -3.820245 + ] + }, + "properties": { + "timestamp": "2002-05-27T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87444667, + -3.844835 + ] + }, + "properties": { + "timestamp": "2002-05-28T13:02:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91266167, + -3.84725833 + ] + }, + "properties": { + "timestamp": "2002-05-28T19:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93294667, + -3.85980333 + ] + }, + "properties": { + "timestamp": "2002-05-29T02:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93103, + -3.85968333 + ] + }, + "properties": { + "timestamp": "2002-05-29T09:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93832333, + -3.82141667 + ] + }, + "properties": { + "timestamp": "2002-05-29T16:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89427333, + -3.85251333 + ] + }, + "properties": { + "timestamp": "2002-05-29T23:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.880565, + -3.83522667 + ] + }, + "properties": { + "timestamp": "2002-05-30T13:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89066667, + -3.79966167 + ] + }, + "properties": { + "timestamp": "2002-05-30T20:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93807333, + -3.82342333 + ] + }, + "properties": { + "timestamp": "2002-05-31T03:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93756333, + -3.82357333 + ] + }, + "properties": { + "timestamp": "2002-05-31T10:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96420333, + -3.80954 + ] + }, + "properties": { + "timestamp": "2002-05-31T17:03:00", + "year": 2002, + "month": 5, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97156167, + -3.79057167 + ] + }, + "properties": { + "timestamp": "2002-06-01T00:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97237167, + -3.786425 + ] + }, + "properties": { + "timestamp": "2002-06-01T07:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97061, + -3.78767167 + ] + }, + "properties": { + "timestamp": "2002-06-01T14:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93057, + -3.76852667 + ] + }, + "properties": { + "timestamp": "2002-06-01T21:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93317833, + -3.823805 + ] + }, + "properties": { + "timestamp": "2002-06-02T04:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93290333, + -3.82346167 + ] + }, + "properties": { + "timestamp": "2002-06-02T11:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91010167, + -3.80803167 + ] + }, + "properties": { + "timestamp": "2002-06-02T18:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95005167, + -3.785005 + ] + }, + "properties": { + "timestamp": "2002-06-03T01:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95159333, + -3.78455 + ] + }, + "properties": { + "timestamp": "2002-06-03T16:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95338833, + -3.78574333 + ] + }, + "properties": { + "timestamp": "2002-06-04T05:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93842833, + -3.82243833 + ] + }, + "properties": { + "timestamp": "2002-06-04T19:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.934895, + -3.85902167 + ] + }, + "properties": { + "timestamp": "2002-06-05T02:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93454, + -3.85871667 + ] + }, + "properties": { + "timestamp": "2002-06-05T09:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93485, + -3.85882 + ] + }, + "properties": { + "timestamp": "2002-06-05T17:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93488, + -3.85842667 + ] + }, + "properties": { + "timestamp": "2002-06-06T00:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93483667, + -3.858935 + ] + }, + "properties": { + "timestamp": "2002-06-06T13:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93132833, + -3.85345333 + ] + }, + "properties": { + "timestamp": "2002-06-06T20:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91988333, + -3.850105 + ] + }, + "properties": { + "timestamp": "2002-06-07T04:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91826833, + -3.85027 + ] + }, + "properties": { + "timestamp": "2002-06-07T11:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88732167, + -3.85243667 + ] + }, + "properties": { + "timestamp": "2002-06-07T17:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.892175, + -3.78743 + ] + }, + "properties": { + "timestamp": "2002-06-08T00:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89681833, + -3.77627333 + ] + }, + "properties": { + "timestamp": "2002-06-08T14:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92145333, + -3.73341333 + ] + }, + "properties": { + "timestamp": "2002-06-08T21:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95541333, + -3.80047 + ] + }, + "properties": { + "timestamp": "2002-06-09T05:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95571667, + -3.80029 + ] + }, + "properties": { + "timestamp": "2002-06-09T11:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95545, + -3.80018167 + ] + }, + "properties": { + "timestamp": "2002-06-09T18:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95556667, + -3.80030167 + ] + }, + "properties": { + "timestamp": "2002-06-10T01:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95562833, + -3.80031 + ] + }, + "properties": { + "timestamp": "2002-06-10T08:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95564, + -3.80034667 + ] + }, + "properties": { + "timestamp": "2002-06-10T15:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95555833, + -3.80031667 + ] + }, + "properties": { + "timestamp": "2002-06-10T22:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.955625, + -3.79993667 + ] + }, + "properties": { + "timestamp": "2002-06-11T05:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95602333, + -3.800315 + ] + }, + "properties": { + "timestamp": "2002-06-11T12:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95556167, + -3.80014333 + ] + }, + "properties": { + "timestamp": "2002-06-11T19:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95511, + -3.80021667 + ] + }, + "properties": { + "timestamp": "2002-06-12T02:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95549, + -3.80009833 + ] + }, + "properties": { + "timestamp": "2002-06-12T09:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95542333, + -3.79999833 + ] + }, + "properties": { + "timestamp": "2002-06-12T16:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93149167, + -3.808465 + ] + }, + "properties": { + "timestamp": "2002-06-12T23:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92937167, + -3.79699833 + ] + }, + "properties": { + "timestamp": "2002-06-13T06:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92781167, + -3.79920833 + ] + }, + "properties": { + "timestamp": "2002-06-13T20:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92663333, + -3.83250833 + ] + }, + "properties": { + "timestamp": "2002-06-14T04:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88758167, + -3.85036833 + ] + }, + "properties": { + "timestamp": "2002-06-14T18:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90048333, + -3.81198167 + ] + }, + "properties": { + "timestamp": "2002-06-15T00:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89214, + -3.80587833 + ] + }, + "properties": { + "timestamp": "2002-06-15T08:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89089833, + -3.800295 + ] + }, + "properties": { + "timestamp": "2002-06-15T14:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87080333, + -3.78967333 + ] + }, + "properties": { + "timestamp": "2002-06-15T21:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88881333, + -3.84639833 + ] + }, + "properties": { + "timestamp": "2002-06-16T05:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88869, + -3.84665833 + ] + }, + "properties": { + "timestamp": "2002-06-16T11:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91068, + -3.83760667 + ] + }, + "properties": { + "timestamp": "2002-06-16T19:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89184, + -3.81185167 + ] + }, + "properties": { + "timestamp": "2002-06-17T01:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89557167, + -3.800535 + ] + }, + "properties": { + "timestamp": "2002-06-17T09:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89291167, + -3.785995 + ] + }, + "properties": { + "timestamp": "2002-06-17T15:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.941925, + -3.79181667 + ] + }, + "properties": { + "timestamp": "2002-06-17T22:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96446833, + -3.82470167 + ] + }, + "properties": { + "timestamp": "2002-06-18T06:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96574, + -3.82538 + ] + }, + "properties": { + "timestamp": "2002-06-18T12:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.99106833, + -3.81580667 + ] + }, + "properties": { + "timestamp": "2002-06-18T20:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97199833, + -3.82497 + ] + }, + "properties": { + "timestamp": "2002-06-19T02:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96997833, + -3.85418667 + ] + }, + "properties": { + "timestamp": "2002-06-19T16:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94657667, + -3.872565 + ] + }, + "properties": { + "timestamp": "2002-06-19T23:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92484833, + -3.87257333 + ] + }, + "properties": { + "timestamp": "2002-06-20T07:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92398833, + -3.87474 + ] + }, + "properties": { + "timestamp": "2002-06-20T13:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92265, + -3.87676667 + ] + }, + "properties": { + "timestamp": "2002-06-20T20:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92287167, + -3.87675 + ] + }, + "properties": { + "timestamp": "2002-06-21T04:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92261833, + -3.87687 + ] + }, + "properties": { + "timestamp": "2002-06-21T17:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92270167, + -3.87681667 + ] + }, + "properties": { + "timestamp": "2002-06-22T00:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92256667, + -3.87711 + ] + }, + "properties": { + "timestamp": "2002-06-22T08:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92264833, + -3.87715333 + ] + }, + "properties": { + "timestamp": "2002-06-22T15:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92227833, + -3.87771667 + ] + }, + "properties": { + "timestamp": "2002-06-22T22:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92339, + -3.87445833 + ] + }, + "properties": { + "timestamp": "2002-06-23T04:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92302, + -3.87746167 + ] + }, + "properties": { + "timestamp": "2002-06-23T12:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92260667, + -3.87726333 + ] + }, + "properties": { + "timestamp": "2002-06-23T18:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88954167, + -3.836955 + ] + }, + "properties": { + "timestamp": "2002-06-24T01:04:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89007333, + -3.83747833 + ] + }, + "properties": { + "timestamp": "2002-06-24T09:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88600667, + -3.84998667 + ] + }, + "properties": { + "timestamp": "2002-06-24T15:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88739833, + -3.85067167 + ] + }, + "properties": { + "timestamp": "2002-06-24T22:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87436333, + -3.84044167 + ] + }, + "properties": { + "timestamp": "2002-06-25T05:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87395833, + -3.84015667 + ] + }, + "properties": { + "timestamp": "2002-06-25T12:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87378167, + -3.84007167 + ] + }, + "properties": { + "timestamp": "2002-06-25T19:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.884605, + -3.82870667 + ] + }, + "properties": { + "timestamp": "2002-06-26T16:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88885667, + -3.84834833 + ] + }, + "properties": { + "timestamp": "2002-06-26T23:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89556167, + -3.82038833 + ] + }, + "properties": { + "timestamp": "2002-06-27T06:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89574333, + -3.82064 + ] + }, + "properties": { + "timestamp": "2002-06-27T13:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89971, + -3.81163 + ] + }, + "properties": { + "timestamp": "2002-06-27T20:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92122, + -3.79648167 + ] + }, + "properties": { + "timestamp": "2002-06-28T03:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96068333, + -3.77404 + ] + }, + "properties": { + "timestamp": "2002-06-28T17:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.870925, + -3.77894 + ] + }, + "properties": { + "timestamp": "2002-06-29T00:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88593833, + -3.80472 + ] + }, + "properties": { + "timestamp": "2002-06-29T08:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87933833, + -3.83214833 + ] + }, + "properties": { + "timestamp": "2002-06-29T14:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88822, + -3.84847667 + ] + }, + "properties": { + "timestamp": "2002-06-29T21:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88459, + -3.84705167 + ] + }, + "properties": { + "timestamp": "2002-06-30T04:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88427667, + -3.84796333 + ] + }, + "properties": { + "timestamp": "2002-06-30T11:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88095, + -3.833985 + ] + }, + "properties": { + "timestamp": "2002-06-30T18:03:00", + "year": 2002, + "month": 6, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8722, + -3.835835 + ] + }, + "properties": { + "timestamp": "2002-07-01T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86703, + -3.84677333 + ] + }, + "properties": { + "timestamp": "2002-07-01T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89281667, + -3.757215 + ] + }, + "properties": { + "timestamp": "2002-07-01T22:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92025167, + -3.74747333 + ] + }, + "properties": { + "timestamp": "2002-07-02T05:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92024333, + -3.74756167 + ] + }, + "properties": { + "timestamp": "2002-07-02T12:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.941895, + -3.72198167 + ] + }, + "properties": { + "timestamp": "2002-07-02T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88086833, + -3.83146833 + ] + }, + "properties": { + "timestamp": "2002-07-03T16:04:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.020955, + -3.75723833 + ] + }, + "properties": { + "timestamp": "2002-07-04T06:04:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 39.011895, + -3.76971667 + ] + }, + "properties": { + "timestamp": "2002-07-04T13:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92464333, + -3.80899 + ] + }, + "properties": { + "timestamp": "2002-07-04T21:04:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88640833, + -3.794245 + ] + }, + "properties": { + "timestamp": "2002-07-05T04:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89003333, + -3.791985 + ] + }, + "properties": { + "timestamp": "2002-07-05T10:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92913667, + -3.82233667 + ] + }, + "properties": { + "timestamp": "2002-07-05T17:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97344667, + -3.80400833 + ] + }, + "properties": { + "timestamp": "2002-07-06T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.975095, + -3.805835 + ] + }, + "properties": { + "timestamp": "2002-07-06T07:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.97505833, + -3.79486 + ] + }, + "properties": { + "timestamp": "2002-07-06T14:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.942, + -3.75236833 + ] + }, + "properties": { + "timestamp": "2002-07-06T21:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96524333, + -3.80891333 + ] + }, + "properties": { + "timestamp": "2002-07-07T04:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96470167, + -3.80917333 + ] + }, + "properties": { + "timestamp": "2002-07-07T12:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98976333, + -3.798685 + ] + }, + "properties": { + "timestamp": "2002-07-07T18:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.96083833, + -3.75195 + ] + }, + "properties": { + "timestamp": "2002-07-08T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95693833, + -3.79033 + ] + }, + "properties": { + "timestamp": "2002-07-08T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95494, + -3.81352333 + ] + }, + "properties": { + "timestamp": "2002-07-08T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95465833, + -3.855985 + ] + }, + "properties": { + "timestamp": "2002-07-08T23:04:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90908833, + -3.83854333 + ] + }, + "properties": { + "timestamp": "2002-07-09T12:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90902833, + -3.83859833 + ] + }, + "properties": { + "timestamp": "2002-07-09T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89931667, + -3.859145 + ] + }, + "properties": { + "timestamp": "2002-07-10T02:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89440167, + -3.84233167 + ] + }, + "properties": { + "timestamp": "2002-07-10T16:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88972667, + -3.838 + ] + }, + "properties": { + "timestamp": "2002-07-10T23:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94142667, + -3.832885 + ] + }, + "properties": { + "timestamp": "2002-07-11T06:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.941655, + -3.82165333 + ] + }, + "properties": { + "timestamp": "2002-07-11T13:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94113333, + -3.84717667 + ] + }, + "properties": { + "timestamp": "2002-07-11T20:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88781, + -3.82275 + ] + }, + "properties": { + "timestamp": "2002-07-12T03:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88411, + -3.83400833 + ] + }, + "properties": { + "timestamp": "2002-07-12T10:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88833, + -3.79649667 + ] + }, + "properties": { + "timestamp": "2002-07-12T17:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88702, + -3.81747667 + ] + }, + "properties": { + "timestamp": "2002-07-13T00:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871965, + -3.819665 + ] + }, + "properties": { + "timestamp": "2002-07-13T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88111333, + -3.83146167 + ] + }, + "properties": { + "timestamp": "2002-07-13T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87338833, + -3.83385833 + ] + }, + "properties": { + "timestamp": "2002-07-13T21:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87359167, + -3.83417 + ] + }, + "properties": { + "timestamp": "2002-07-14T12:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87359333, + -3.83437 + ] + }, + "properties": { + "timestamp": "2002-07-14T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90614833, + -3.83799 + ] + }, + "properties": { + "timestamp": "2002-07-15T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.906165, + -3.8373 + ] + }, + "properties": { + "timestamp": "2002-07-15T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88171333, + -3.836435 + ] + }, + "properties": { + "timestamp": "2002-07-15T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88143833, + -3.83191667 + ] + }, + "properties": { + "timestamp": "2002-07-15T22:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87774333, + -3.82839667 + ] + }, + "properties": { + "timestamp": "2002-07-16T05:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87679333, + -3.82834 + ] + }, + "properties": { + "timestamp": "2002-07-16T12:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.879455, + -3.81271667 + ] + }, + "properties": { + "timestamp": "2002-07-16T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.83577333, + -3.76533 + ] + }, + "properties": { + "timestamp": "2002-07-17T09:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87393833, + -3.72203 + ] + }, + "properties": { + "timestamp": "2002-07-17T17:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92480333, + -3.73928167 + ] + }, + "properties": { + "timestamp": "2002-07-17T23:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92089333, + -3.72775 + ] + }, + "properties": { + "timestamp": "2002-07-18T06:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93012833, + -3.72266833 + ] + }, + "properties": { + "timestamp": "2002-07-18T13:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95456833, + -3.71228833 + ] + }, + "properties": { + "timestamp": "2002-07-18T21:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95444, + -3.71156167 + ] + }, + "properties": { + "timestamp": "2002-07-19T03:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95430833, + -3.71160333 + ] + }, + "properties": { + "timestamp": "2002-07-19T17:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95432667, + -3.71184667 + ] + }, + "properties": { + "timestamp": "2002-07-20T00:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95433333, + -3.71189167 + ] + }, + "properties": { + "timestamp": "2002-07-20T07:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95445833, + -3.711785 + ] + }, + "properties": { + "timestamp": "2002-07-20T14:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95350833, + -3.71172833 + ] + }, + "properties": { + "timestamp": "2002-07-20T21:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95373667, + -3.71180333 + ] + }, + "properties": { + "timestamp": "2002-07-21T04:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95354833, + -3.71190167 + ] + }, + "properties": { + "timestamp": "2002-07-21T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95363167, + -3.711785 + ] + }, + "properties": { + "timestamp": "2002-07-22T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95382, + -3.71186833 + ] + }, + "properties": { + "timestamp": "2002-07-22T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.953865, + -3.71154167 + ] + }, + "properties": { + "timestamp": "2002-07-22T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95381333, + -3.71178333 + ] + }, + "properties": { + "timestamp": "2002-07-22T22:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95350667, + -3.71190167 + ] + }, + "properties": { + "timestamp": "2002-07-23T12:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.953505, + -3.71197667 + ] + }, + "properties": { + "timestamp": "2002-07-23T19:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95365667, + -3.71180333 + ] + }, + "properties": { + "timestamp": "2002-07-24T03:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95306, + -3.71186167 + ] + }, + "properties": { + "timestamp": "2002-07-24T16:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95328667, + -3.71205167 + ] + }, + "properties": { + "timestamp": "2002-07-24T23:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.923395, + -3.70737 + ] + }, + "properties": { + "timestamp": "2002-07-25T06:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92384667, + -3.70760667 + ] + }, + "properties": { + "timestamp": "2002-07-25T13:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92274667, + -3.70877 + ] + }, + "properties": { + "timestamp": "2002-07-25T20:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88112333, + -3.83386333 + ] + }, + "properties": { + "timestamp": "2002-07-26T18:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91654, + -3.83087 + ] + }, + "properties": { + "timestamp": "2002-07-27T00:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93847833, + -3.82198667 + ] + }, + "properties": { + "timestamp": "2002-07-27T14:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94201167, + -3.81712667 + ] + }, + "properties": { + "timestamp": "2002-07-27T21:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92334333, + -3.74738833 + ] + }, + "properties": { + "timestamp": "2002-07-28T04:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92298, + -3.74727667 + ] + }, + "properties": { + "timestamp": "2002-07-28T11:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92771667, + -3.702415 + ] + }, + "properties": { + "timestamp": "2002-07-28T18:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8723, + -3.78536167 + ] + }, + "properties": { + "timestamp": "2002-07-29T01:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87999167, + -3.828355 + ] + }, + "properties": { + "timestamp": "2002-07-29T08:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88097667, + -3.83416667 + ] + }, + "properties": { + "timestamp": "2002-07-29T15:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88005333, + -3.82139167 + ] + }, + "properties": { + "timestamp": "2002-07-29T22:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88086, + -3.832775 + ] + }, + "properties": { + "timestamp": "2002-07-30T20:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88875833, + -3.84805167 + ] + }, + "properties": { + "timestamp": "2002-07-31T02:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88596833, + -3.84989333 + ] + }, + "properties": { + "timestamp": "2002-07-31T16:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.84169667, + -3.86800167 + ] + }, + "properties": { + "timestamp": "2002-07-31T23:03:00", + "year": 2002, + "month": 7, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85137667, + -3.86964667 + ] + }, + "properties": { + "timestamp": "2002-08-01T07:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88120833, + -3.83353 + ] + }, + "properties": { + "timestamp": "2002-08-01T20:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88247167, + -3.85451167 + ] + }, + "properties": { + "timestamp": "2002-08-02T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.886975, + -3.85266833 + ] + }, + "properties": { + "timestamp": "2002-08-02T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86368667, + -3.86177667 + ] + }, + "properties": { + "timestamp": "2002-08-03T00:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88106333, + -3.83391833 + ] + }, + "properties": { + "timestamp": "2002-08-03T15:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88110167, + -3.83384167 + ] + }, + "properties": { + "timestamp": "2002-08-03T21:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87911, + -3.81575333 + ] + }, + "properties": { + "timestamp": "2002-08-04T04:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87921, + -3.81573167 + ] + }, + "properties": { + "timestamp": "2002-08-04T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89264833, + -3.837425 + ] + }, + "properties": { + "timestamp": "2002-08-04T18:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90285333, + -3.839995 + ] + }, + "properties": { + "timestamp": "2002-08-05T01:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88094833, + -3.83382833 + ] + }, + "properties": { + "timestamp": "2002-08-05T15:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.904375, + -3.855875 + ] + }, + "properties": { + "timestamp": "2002-08-05T22:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90472833, + -3.85460333 + ] + }, + "properties": { + "timestamp": "2002-08-06T06:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90487, + -3.85490667 + ] + }, + "properties": { + "timestamp": "2002-08-06T12:02:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.903585, + -3.85221 + ] + }, + "properties": { + "timestamp": "2002-08-06T19:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93912, + -3.84000833 + ] + }, + "properties": { + "timestamp": "2002-08-07T02:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94999333, + -3.83292667 + ] + }, + "properties": { + "timestamp": "2002-08-07T16:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.94431833, + -3.82419167 + ] + }, + "properties": { + "timestamp": "2002-08-07T23:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93958667, + -3.82602167 + ] + }, + "properties": { + "timestamp": "2002-08-08T06:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93986167, + -3.82608167 + ] + }, + "properties": { + "timestamp": "2002-08-08T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93971, + -3.82613333 + ] + }, + "properties": { + "timestamp": "2002-08-08T21:04:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88289167, + -3.83076167 + ] + }, + "properties": { + "timestamp": "2002-08-09T03:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88405833, + -3.82670667 + ] + }, + "properties": { + "timestamp": "2002-08-09T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.880985, + -3.83387333 + ] + }, + "properties": { + "timestamp": "2002-08-09T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89971333, + -3.82499667 + ] + }, + "properties": { + "timestamp": "2002-08-10T00:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.899045, + -3.82547667 + ] + }, + "properties": { + "timestamp": "2002-08-10T08:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89886333, + -3.82592667 + ] + }, + "properties": { + "timestamp": "2002-08-10T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89795, + -3.82587167 + ] + }, + "properties": { + "timestamp": "2002-08-10T21:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88941833, + -3.81247333 + ] + }, + "properties": { + "timestamp": "2002-08-11T04:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88886, + -3.81270833 + ] + }, + "properties": { + "timestamp": "2002-08-11T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.885105, + -3.79112333 + ] + }, + "properties": { + "timestamp": "2002-08-11T19:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85471, + -3.796255 + ] + }, + "properties": { + "timestamp": "2002-08-12T01:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.85474833, + -3.79680167 + ] + }, + "properties": { + "timestamp": "2002-08-12T08:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.84291333, + -3.82203333 + ] + }, + "properties": { + "timestamp": "2002-08-12T15:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87321167, + -3.84656167 + ] + }, + "properties": { + "timestamp": "2002-08-12T22:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89014333, + -3.81703667 + ] + }, + "properties": { + "timestamp": "2002-08-13T05:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86974, + -3.777835 + ] + }, + "properties": { + "timestamp": "2002-08-13T20:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.84566167, + -3.771845 + ] + }, + "properties": { + "timestamp": "2002-08-14T03:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.83339833, + -3.76277333 + ] + }, + "properties": { + "timestamp": "2002-08-14T10:04:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86217833, + -3.751005 + ] + }, + "properties": { + "timestamp": "2002-08-14T16:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89348833, + -3.79973333 + ] + }, + "properties": { + "timestamp": "2002-08-14T23:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88639667, + -3.78239 + ] + }, + "properties": { + "timestamp": "2002-08-15T06:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.864205, + -3.74640333 + ] + }, + "properties": { + "timestamp": "2002-08-15T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.82451167, + -3.76178 + ] + }, + "properties": { + "timestamp": "2002-08-15T20:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88650833, + -3.84194667 + ] + }, + "properties": { + "timestamp": "2002-08-16T03:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88706167, + -3.84421167 + ] + }, + "properties": { + "timestamp": "2002-08-16T10:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90151833, + -3.839085 + ] + }, + "properties": { + "timestamp": "2002-08-16T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.89871, + -3.74159333 + ] + }, + "properties": { + "timestamp": "2002-08-17T08:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90606, + -3.71617167 + ] + }, + "properties": { + "timestamp": "2002-08-17T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9308, + -3.70765 + ] + }, + "properties": { + "timestamp": "2002-08-18T05:04:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93853833, + -3.7079 + ] + }, + "properties": { + "timestamp": "2002-08-18T12:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91803833, + -3.75947667 + ] + }, + "properties": { + "timestamp": "2002-08-18T19:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.83529167, + -3.76430667 + ] + }, + "properties": { + "timestamp": "2002-08-19T01:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87215833, + -3.77375833 + ] + }, + "properties": { + "timestamp": "2002-08-19T08:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86994667, + -3.78032167 + ] + }, + "properties": { + "timestamp": "2002-08-19T15:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86950167, + -3.78021333 + ] + }, + "properties": { + "timestamp": "2002-08-19T22:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92983167, + -3.81551 + ] + }, + "properties": { + "timestamp": "2002-08-20T05:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92966333, + -3.81554667 + ] + }, + "properties": { + "timestamp": "2002-08-20T19:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.929555, + -3.815495 + ] + }, + "properties": { + "timestamp": "2002-08-21T09:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92964667, + -3.81562667 + ] + }, + "properties": { + "timestamp": "2002-08-21T16:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91714833, + -3.80893167 + ] + }, + "properties": { + "timestamp": "2002-08-21T23:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92685333, + -3.81529333 + ] + }, + "properties": { + "timestamp": "2002-08-22T06:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87630333, + -3.80187333 + ] + }, + "properties": { + "timestamp": "2002-08-22T20:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86871167, + -3.77769333 + ] + }, + "properties": { + "timestamp": "2002-08-23T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87250333, + -3.77881667 + ] + }, + "properties": { + "timestamp": "2002-08-24T01:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87242, + -3.778665 + ] + }, + "properties": { + "timestamp": "2002-08-24T07:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86955667, + -3.78027833 + ] + }, + "properties": { + "timestamp": "2002-08-24T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93055833, + -3.79657167 + ] + }, + "properties": { + "timestamp": "2002-08-25T04:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92268833, + -3.79425333 + ] + }, + "properties": { + "timestamp": "2002-08-25T11:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.8809, + -3.83407167 + ] + }, + "properties": { + "timestamp": "2002-08-25T18:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.874325, + -3.78101167 + ] + }, + "properties": { + "timestamp": "2002-08-26T01:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87300667, + -3.78066167 + ] + }, + "properties": { + "timestamp": "2002-08-26T09:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86906333, + -3.78058333 + ] + }, + "properties": { + "timestamp": "2002-08-26T15:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86954, + -3.780895 + ] + }, + "properties": { + "timestamp": "2002-08-26T22:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86006, + -3.77925833 + ] + }, + "properties": { + "timestamp": "2002-08-27T12:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.91860667, + -3.775145 + ] + }, + "properties": { + "timestamp": "2002-08-27T19:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.95316667, + -3.81010833 + ] + }, + "properties": { + "timestamp": "2002-08-28T10:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98372833, + -3.79253667 + ] + }, + "properties": { + "timestamp": "2002-08-28T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98378333, + -3.79256167 + ] + }, + "properties": { + "timestamp": "2002-08-28T23:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98794, + -3.78655833 + ] + }, + "properties": { + "timestamp": "2002-08-29T06:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.983715, + -3.79258167 + ] + }, + "properties": { + "timestamp": "2002-08-29T13:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.98387, + -3.79225167 + ] + }, + "properties": { + "timestamp": "2002-08-29T20:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.9464, + -3.78568167 + ] + }, + "properties": { + "timestamp": "2002-08-30T03:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86940333, + -3.780255 + ] + }, + "properties": { + "timestamp": "2002-08-30T17:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86799333, + -3.775855 + ] + }, + "properties": { + "timestamp": "2002-08-31T00:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87480667, + -3.77180333 + ] + }, + "properties": { + "timestamp": "2002-08-31T14:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87639333, + -3.80290833 + ] + }, + "properties": { + "timestamp": "2002-08-31T21:03:00", + "year": 2002, + "month": 8, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.878105, + -3.82974333 + ] + }, + "properties": { + "timestamp": "2002-09-01T04:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87757667, + -3.82948167 + ] + }, + "properties": { + "timestamp": "2002-09-01T11:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86897333, + -3.77980333 + ] + }, + "properties": { + "timestamp": "2002-09-01T18:02:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87064167, + -3.77771667 + ] + }, + "properties": { + "timestamp": "2002-09-02T22:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88540333, + -3.77005 + ] + }, + "properties": { + "timestamp": "2002-09-03T05:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86965333, + -3.77430333 + ] + }, + "properties": { + "timestamp": "2002-09-03T13:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86114833, + -3.760765 + ] + }, + "properties": { + "timestamp": "2002-09-03T19:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90256833, + -3.75017833 + ] + }, + "properties": { + "timestamp": "2002-09-04T02:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90167167, + -3.74902667 + ] + }, + "properties": { + "timestamp": "2002-09-04T09:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.93013667, + -3.74541167 + ] + }, + "properties": { + "timestamp": "2002-09-04T16:04:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92938667, + -3.745095 + ] + }, + "properties": { + "timestamp": "2002-09-05T14:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92953667, + -3.74524833 + ] + }, + "properties": { + "timestamp": "2002-09-06T03:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92971833, + -3.74526333 + ] + }, + "properties": { + "timestamp": "2002-09-06T10:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92968167, + -3.74532667 + ] + }, + "properties": { + "timestamp": "2002-09-06T18:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.92953667, + -3.74562833 + ] + }, + "properties": { + "timestamp": "2002-09-07T00:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.908805, + -3.849975 + ] + }, + "properties": { + "timestamp": "2002-09-07T22:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.90263833, + -3.84955833 + ] + }, + "properties": { + "timestamp": "2002-09-08T11:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.88092667, + -3.83139 + ] + }, + "properties": { + "timestamp": "2002-09-08T18:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86878, + -3.80519333 + ] + }, + "properties": { + "timestamp": "2002-09-09T01:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.868515, + -3.80545833 + ] + }, + "properties": { + "timestamp": "2002-09-09T09:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871405, + -3.782155 + ] + }, + "properties": { + "timestamp": "2002-09-09T22:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87001667, + -3.78003667 + ] + }, + "properties": { + "timestamp": "2002-09-10T12:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87066667, + -3.779855 + ] + }, + "properties": { + "timestamp": "2002-09-10T19:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87058833, + -3.778815 + ] + }, + "properties": { + "timestamp": "2002-09-11T02:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.86979833, + -3.77676667 + ] + }, + "properties": { + "timestamp": "2002-09-11T17:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87092333, + -3.78068667 + ] + }, + "properties": { + "timestamp": "2002-09-11T23:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.87227167, + -3.78006833 + ] + }, + "properties": { + "timestamp": "2002-09-12T07:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.873035, + -3.78473667 + ] + }, + "properties": { + "timestamp": "2002-09-12T21:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 38.871325, + -3.79500833 + ] + }, + "properties": { + "timestamp": "2002-09-13T03:03:00", + "year": 2002, + "month": 9, + "species": "Lion", + "individual_id": "Romeo", + "study": "Tsavo Lion Study" + } + } + ] +} \ No newline at end of file diff --git a/Homework3_engagement/index.html b/Homework3_engagement/index.html new file mode 100644 index 0000000..7ab42e1 --- /dev/null +++ b/Homework3_engagement/index.html @@ -0,0 +1,284 @@ + + + + + Mara–Serengeti Design Studio + + + + + + + + + + + + + +
+
+ + +
+
+ +
+

Mara–Serengeti Design Studio

+

Design wildlife-friendly tourism routes and facilities in the Mara–Serengeti landscape.

+
+
+ +
+ +
+
+ + +
+
+ Scenario + +
+ +
+ Map view + + + +
+
+ + +
+ + +
+
+
Loading map…
+ + +
+
+
Eco-Health
+ +
78%
+
+ +
+
Visitor Joy
+ +
62%
+
+
+ + +
+ + + + + + + + + + + + + + + +
+ + +
+ +
+
Ranger Leo
+
Pick a tool and place it on the map. I’ll keep an eye on wildlife routes.
+
+
+ + +
© OpenStreetMap contributors · Powered by Leaflet
+
+ + +
No-go zone: 0.0 km²
+
+ + + +
+ + + +
+
+

《Future Blueprint》

+ +
+
+
+ + +
+
+
+ + + + +
+
+ + + + + diff --git a/Homework3_engagement/js/main.js b/Homework3_engagement/js/main.js new file mode 100644 index 0000000..76724e3 --- /dev/null +++ b/Homework3_engagement/js/main.js @@ -0,0 +1,1400 @@ +// Firebase +import { initializeApp } from "https://www.gstatic.com/firebasejs/10.13.1/firebase-app.js"; +import { + getFirestore, + collection, + addDoc, + serverTimestamp, +} from "https://www.gstatic.com/firebasejs/10.13.1/firebase-firestore.js"; + +const firebaseConfig = { + apiKey: "AIzaSyC9c5DQriKjG-COIFiqnbIMNSZ7Up1CEZ0", + authDomain: "mara-serengeti-studio.firebaseapp.com", + projectId: "mara-serengeti-studio", + storageBucket: "mara-serengeti-studio.firebasestorage.app", + messagingSenderId: "642513419758", + appId: "1:642513419758:web:5c2d5335e81d2569bda2ff", + measurementId: "G-E93T6RYRE2", +}; + +const app = initializeApp(firebaseConfig); + +export const db = getFirestore(app); + +// ----------------------------- +// Utilities +// ----------------------------- + +const $ = (id) => document.getElementById(id); +const clamp = (v, lo, hi) => Math.max(lo, Math.min(hi, v)); + +function nowISO() { + const d = new Date(); + return d.toISOString().slice(0, 19).replace("T", " "); +} + +function setMapStatus(text, type = "info") { + const el = $("mapStatus"); + if (!el) return; + el.textContent = text; + el.classList.remove("is-error", "is-ok"); + if (type === "error") el.classList.add("is-error"); + if (type === "ok") el.classList.add("is-ok"); + el.style.opacity = "1"; + el.style.pointerEvents = "none"; +} + +function hideMapStatus(delayMs = 650) { + const el = $("mapStatus"); + if (!el) return; + window.setTimeout(() => { + el.style.opacity = "0"; + }, delayMs); +} + +function toastAI(msg, mood = "neutral") { + const ai = $("aiText"); + if (!ai) return; + ai.textContent = msg; + ai.dataset.mood = mood; + ai.classList.remove("is-pop"); + // restart animation + void ai.offsetWidth; + ai.classList.add("is-pop"); +} + +// ----------------------------- +// Leaflet loader (robust) +// ----------------------------- + +function loadScript(src) { + return new Promise((resolve, reject) => { + const s = document.createElement("script"); + s.src = src; + s.async = true; + s.onload = () => resolve(); + s.onerror = () => reject(new Error(`Failed to load ${src}`)); + document.head.appendChild(s); + }); +} + +async function ensureLeaflet() { + if (window.L) return; + + // Some environments block one CDN but allow the other. + const cdns = [ + "https://cdn.jsdelivr.net/npm/leaflet@1.9.4/dist/leaflet.js", + "https://unpkg.com/leaflet@1.9.4/dist/leaflet.js", + ]; + + let lastErr = null; + for (const url of cdns) { + try { + await loadScript(url); + if (window.L) return; + } catch (e) { + lastErr = e; + } + } + + throw lastErr || new Error("Leaflet not available"); +} + +// ----------------------------- +// Map + scoring state +// ----------------------------- + +let map = null; +let currentTool = "lodge"; +let hasUserChosenTool = false; +let activeTileLayer = null; + +let eco = 100; +let joy = 0; + +const placed = []; // { id, type, latlng, inNoGo } + +// Overlays / layers +let parkBoundaryLayer = null; +let parkBoundary2Layer = null; + +let previewRed = null; +let previewGreen = null; + +let noGoPolys = []; +let noGoLayer = null; + +let habitatLayer = null; +let trafficLayer = null; + +let roadsLayer = null; +let roadsLoading = false; + +// GeoJSON load flags (MUST exist, or ensureExternalGeoLayers will crash) +let geoDataLoading = false; +let geoDataLoaded = false; + +// Tracks layers (built from point GeoJSON) +let wildebeestTracksLayer = null; +let lionTracksLayer = null; + +// Simple facility descriptions for the side panel +const TOOL_INFO = { + lodge: { + title: "Lodge", + blurb: "Purpose: overnight stays and a base for safaris. Impact: medium footprint—keep outside core habitats. Visitor: high comfort.", + eco: -6, + joy: 4, + }, + activity: { + title: "Activity", + blurb: "Purpose: guided experiences (walks, crafts, culture). Impact: keep group size/paths limited to avoid wildlife stress. Visitor: memorable if near viewpoints.", + eco: -14, + joy: 20, + }, + parking: { + title: "Parking", + blurb: "Purpose: staging for shuttles and day trips. Impact: can fragment habitat—cluster with restaurants/lodges to reduce sprawl.", + eco: -10, + joy: 8, + }, + restaurant: { + title: "Restaurant", + blurb: "Purpose: meals and rest stops. Impact: service traffic and waste—site near roads, away from wildlife corridors.", + eco: -7, + joy: 10, + }, + camp: { + title: "Camp", + blurb: "Purpose: low-impact overnight stay. Impact: smaller footprint but needs buffer from wildlife routes. Visitor: immersive if placed responsibly.", + eco: -4, + joy: 6, + }, + shuttle: { + title: "Shuttle", + blurb: "Purpose: move guests efficiently between hubs. Impact: reduces private car traffic; keep routes on existing roads to protect habitats.", + eco: 6, + joy: 8, + }, + view: { + title: "Viewpoint", + blurb: "Purpose: quiet wildlife viewing spot. Impact: light footprint if off-road travel is limited. Visitor: big joy boost near water/habitats.", + eco: -1, + joy: 12, + }, + hide: { + title: "Hide", + blurb: "Purpose: concealed wildlife viewing. Impact: minimal if entry paths are controlled; excellent visitor experience when near water/cover.", + eco: -5, + joy: 14, + }, + research: { + title: "Research", + blurb: "Purpose: monitoring and science. Impact: moderate but justified—site near access to reduce patrol disturbance; supports conservation outcomes.", + eco: 10, + joy: 6, + }, +}; + +const DATA_DIR = "./data/"; +const PARK_BOUNDARY_URL = encodeURI(DATA_DIR + "Serengeti National Park.json"); +const PARK_BOUNDARY_2_URL = encodeURI(DATA_DIR + "Masai Mara.json"); +const WILDEBEEST_POINTS_URL = DATA_DIR + "combined_wildebeest_tsavo_points_sampled.geojson"; +const LION_POINTS_URL = DATA_DIR + "tsavo_lion_points.geojson"; +const ROADS_URL = DATA_DIR + "road.geojson"; + +const TILE_SOURCES = [ + { + name: "OSM HOT", + url: "https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png", + options: { + maxZoom: 19, + attribution: "© OpenStreetMap contributors · style by HOT · tiles by OSM France", + }, + }, + { + name: "OSM Standard", + url: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", + options: { maxZoom: 19, attribution: "© OpenStreetMap contributors" }, + }, + { + name: "Carto Light", + url: "https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png", + options: { + maxZoom: 19, + subdomains: "abcd", + attribution: "© OpenStreetMap contributors · © CARTO", + }, + }, +]; + +// ----------------------------- +// Geometry helpers +// ----------------------------- + +function pointInPolygon(latlng, polygonLatLngs) { + // Ray casting in lon/lat space + const x = latlng.lng; + const y = latlng.lat; + let inside = false; + + for (let i = 0, j = polygonLatLngs.length - 1; i < polygonLatLngs.length; j = i++) { + const xi = polygonLatLngs[i].lng; + const yi = polygonLatLngs[i].lat; + const xj = polygonLatLngs[j].lng; + const yj = polygonLatLngs[j].lat; + + const intersect = yi > y !== yj > y && x < ((xj - xi) * (y - yi)) / (yj - yi + 1e-12) + xi; + if (intersect) inside = !inside; + } + return inside; +} + +function polygonAreaKm2(latlngs) { + // Shoelace in WebMercator meters (good enough for small areas) + // Convert lat/lng -> meters + const R = 6378137; + const pts = latlngs.map((p) => { + const x = (p.lng * Math.PI / 180) * R; + const y = Math.log(Math.tan(Math.PI / 4 + (p.lat * Math.PI / 180) / 2)) * R; + return { x, y }; + }); + + let sum = 0; + for (let i = 0; i < pts.length; i++) { + const j = (i + 1) % pts.length; + sum += pts[i].x * pts[j].y - pts[j].x * pts[i].y; + } + const areaM2 = Math.abs(sum) / 2; + return areaM2 / 1e6; +} + +function distMeters(a, b) { + return map ? map.distance(a, b) : 0; +} + +// ----------------------------- +// GeoJSON helpers (fetch + build layers) +// ----------------------------- +async function fetchGeoJSON(url) { + const res = await fetch(url, { cache: "no-store" }); + if (!res.ok) throw new Error(`Failed to fetch ${url} (HTTP ${res.status})`); + return await res.json(); +} + +function makeBoundaryLayer(geojson, style, label) { + return L.geoJSON(geojson, { + interactive: false, + style, + onEachFeature: (f, layer) => { + const name = + f?.properties?.NAME || + f?.properties?.Name || + f?.properties?.name || + label; + layer.bindTooltip(String(name), { sticky: true }); + }, + }); +} + +/** + * Convert point tracks -> polylines. + * Assumes each feature has: + * - geometry: Point [lng, lat] + * - properties.individual_id (or similar) + * - properties.timestamp (ISO string) (optional but recommended) + */ +function buildTracksFromPoints(pointsGeoJSON, opts) { + const { + idKey = "individual_id", + timeKey = "timestamp", + lineStyle = {}, + labelPrefix = "Track", + } = opts || {}; + + const feats = pointsGeoJSON?.features || []; + const groups = new Map(); // id -> [{t, latlng}...] + + for (const ft of feats) { + const geom = ft?.geometry; + if (!geom || geom.type !== "Point") continue; + + const coords = geom.coordinates; // [lng, lat] + if (!Array.isArray(coords) || coords.length < 2) continue; + + const props = ft.properties || {}; + const id = props[idKey] ?? "unknown"; + + const tRaw = props[timeKey]; + const t = tRaw ? new Date(tRaw).getTime() : NaN; + + const latlng = L.latLng(coords[1], coords[0]); + if (!groups.has(id)) groups.set(id, []); + groups.get(id).push({ t, latlng }); + } + + const out = L.layerGroup(); + + for (const [id, arr] of groups.entries()) { + // sort by time if possible + const sortable = arr.every((p) => Number.isFinite(p.t)); + if (sortable) arr.sort((a, b) => a.t - b.t); + + const latlngs = arr.map((p) => p.latlng); + if (latlngs.length < 2) continue; + + const line = L.polyline(latlngs, { + weight: 3, + opacity: 0.75, + ...lineStyle, + }).bindTooltip(`${labelPrefix}: ${id}`, { sticky: true }); + + out.addLayer(line); + } + + return out; +} + +async function ensureRoadLayer() { + if (!map) return; + if (roadsLayer || roadsLoading) return; + + roadsLoading = true; + try { + const roadsGeo = await fetchGeoJSON(ROADS_URL); + + roadsLayer = L.geoJSON(roadsGeo, { + filter: (f) => { + const t = f?.geometry?.type; + return t === "LineString" || t === "MultiLineString"; + }, + style: () => ({ + color: "rgba(231,168,104,0.95)", + weight: 2, + opacity: 0.85, + }), + }); + } catch (e) { + console.warn("Failed to load road.geojson", e); + } finally { + roadsLoading = false; + } +} + +async function ensureExternalGeoLayers() { + if (!map) return; + if (geoDataLoaded || geoDataLoading) return; + + geoDataLoading = true; + setMapStatus("Loading /data GeoJSON layers…"); + + try { + const [serengeti, masaiMara, wildePoints, lionPoints] = await Promise.all([ + fetchGeoJSON(PARK_BOUNDARY_URL), + fetchGeoJSON(PARK_BOUNDARY_2_URL), + fetchGeoJSON(WILDEBEEST_POINTS_URL), + fetchGeoJSON(LION_POINTS_URL), + ]); + + // 1) boundaries (two layers) + if (!parkBoundaryLayer) { + parkBoundaryLayer = L.geoJSON(serengeti, { + interactive: false, + style: { + color: "rgba(124,91,57,0.9)", + weight: 2, + fill: false, + }, + onEachFeature: (f, layer) => { + const name = + f?.properties?.NAME || + f?.properties?.Name || + f?.properties?.name || + "Serengeti"; + layer.bindTooltip(String(name), { sticky: true }); + }, + }); + parkBoundaryLayer.addTo(map); + } + + if (!parkBoundary2Layer) { + parkBoundary2Layer = L.geoJSON(masaiMara, { + interactive: false, + style: { + color: "rgba(106,163,215,0.9)", + weight: 2, + dashArray: "6 10", + fill: false, + }, + onEachFeature: (f, layer) => { + const name = + f?.properties?.NAME || + f?.properties?.Name || + f?.properties?.name || + "Masai Mara"; + layer.bindTooltip(String(name), { sticky: true }); + }, + }); + parkBoundary2Layer.addTo(map); + } + + const b = L.latLngBounds([]); + try { + if (parkBoundaryLayer) b.extend(parkBoundaryLayer.getBounds()); + if (parkBoundary2Layer) b.extend(parkBoundary2Layer.getBounds()); + if (b.isValid()) map.fitBounds(b.pad(0.06)); + } catch (_) {} + + // 2) tracks (build from points) + wildebeestTracksLayer = buildTracksFromPoints(wildePoints, { + idKey: "individual_id", + timeKey: "timestamp", + lineStyle: { + color: "rgba(47,125,95,0.9)", + dashArray: "10 8", + }, + labelPrefix: "Wildebeest", +}); + +lionTracksLayer = buildTracksFromPoints(lionPoints, { + idKey: "individual_id", + timeKey: "timestamp", + lineStyle: { + color: "rgba(192,108,42,0.9)", + dashArray: "2 10", + }, + labelPrefix: "Lion", +}); + + // 3) fit bounds to both boundaries + + const mode = document.getElementById("map")?.dataset?.mode || "design"; + + if (mode === "habitat") { + buildHabitatOverlays(); + if (habitatLayer && !map.hasLayer(habitatLayer)) { + habitatLayer.addTo(map); + } + } + + applyWildlifeVisibility(mode); + + setMapStatus("GeoJSON layers loaded.", "ok"); + hideMapStatus(650); + } catch (e) { + console.warn(e); + setMapStatus( + "Failed to load /data GeoJSON (check Live Server + filenames).", + "error" + ); + } finally { + geoDataLoading = false; + } +} + +// ----------------------------- +// HUD gauges +// ----------------------------- + +function setGauge(arcId, value) { + const arc = $(arcId); + if (!arc) return; + + // Stroke length of this semicircle path is ~157. (We can compute once, but keeping simple.) + const total = 157; + const v = clamp(value, 0, 100) / 100; + arc.style.strokeDasharray = `${total} ${total}`; + arc.style.strokeDashoffset = `${total * (1 - v)}`; +} + +function bumpGauge(which) { + const el = document.querySelector(`.gauge[data-gauge="${which}"]`); + if (!el) return; + el.classList.remove("is-ping"); + void el.offsetWidth; + el.classList.add("is-ping"); +} + +function updateScoresUI() { + eco = clamp(eco, 0, 100); + joy = clamp(joy, 0, 100); + + const ecoEl = $("ecoValue"); + const joyEl = $("joyValue"); + if (ecoEl) ecoEl.textContent = String(Math.round(eco)); + if (joyEl) joyEl.textContent = String(Math.round(joy)); + + setGauge("ecoArc", eco); + setGauge("joyArc", joy); + + // Right panel bars + const placedCountEl = $("placedCount"); + + const meterEco = $("meterEco"); + const meterJoy = $("meterJoy"); + const meterNoGo = $("meterNoGo"); + + const meterEcoVal = $("meterEcoVal"); + const meterJoyVal = $("meterJoyVal"); + const meterNoGoVal = $("meterNoGoVal"); + + const noGoCount = placed.filter((p) => p.inNoGo).length; + const noGoPct = placed.length ? Math.round((noGoCount / placed.length) * 100) : 0; + + if (placedCountEl) placedCountEl.textContent = String(placed.length); + + if (meterEco) meterEco.style.width = `${Math.round(eco)}%`; + if (meterJoy) meterJoy.style.width = `${Math.round(joy)}%`; + if (meterNoGo) meterNoGo.style.width = `${noGoPct}%`; + + if (meterEcoVal) meterEcoVal.textContent = String(Math.round(eco)); + if (meterJoyVal) meterJoyVal.textContent = String(Math.round(joy)); + if (meterNoGoVal) meterNoGoVal.textContent = String(noGoPct); +} + +// ----------------------------- +// Tile layer fallback +// ----------------------------- + +function attachTileHealth(layer, idx) { + let errorCount = 0; + const createdAt = Date.now(); + + layer.on("loading", () => { + setMapStatus(`Loading map tiles… (${TILE_SOURCES[idx].name})`); + }); + + layer.on("load", () => { + setMapStatus("Canvas ready.", "ok"); + hideMapStatus(550); + }); + + layer.on("tileerror", () => { + errorCount += 1; + const elapsed = Date.now() - createdAt; + if (elapsed < 8000 && errorCount >= 8) { + const next = idx + 1; + if (next < TILE_SOURCES.length) { + setMapStatus(`Tile load failed (${TILE_SOURCES[idx].name}). Switching…`, "error"); + useTileSource(next); + } else { + setMapStatus( + "Tiles failed to load. If your network blocks map CDNs, the workbench stays in blueprint mode.", + "error" + ); + } + } + }); +} + +function useTileSource(idx) { + if (!map) return; + const src = TILE_SOURCES[idx]; + if (activeTileLayer) { + try { map.removeLayer(activeTileLayer); } catch (_) {} + } + activeTileLayer = L.tileLayer(src.url, src.options); + attachTileHealth(activeTileLayer, idx); + activeTileLayer.addTo(map); +} + +// ----------------------------- +// No-go zone + overlays +// ----------------------------- + +function ensureSvgPattern() { + // Leaflet creates an SVG element for vector layers. We inject a diagonal hatch pattern. + const svg = document.querySelector("#map svg"); + if (!svg) return; + if (svg.querySelector("#noGoHatch")) return; + + const defs = document.createElementNS("http://www.w3.org/2000/svg", "defs"); + const pattern = document.createElementNS("http://www.w3.org/2000/svg", "pattern"); + pattern.setAttribute("id", "noGoHatch"); + pattern.setAttribute("patternUnits", "userSpaceOnUse"); + pattern.setAttribute("width", "10"); + pattern.setAttribute("height", "10"); + pattern.setAttribute("patternTransform", "rotate(35)"); + + const rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); + rect.setAttribute("width", "10"); + rect.setAttribute("height", "10"); + rect.setAttribute("fill", "rgba(216,110,91,0.12)"); + + const line = document.createElementNS("http://www.w3.org/2000/svg", "line"); + line.setAttribute("x1", "0"); + line.setAttribute("y1", "0"); + line.setAttribute("x2", "0"); + line.setAttribute("y2", "10"); + line.setAttribute("stroke", "rgba(216,110,91,0.55)"); + line.setAttribute("stroke-width", "4"); + + pattern.appendChild(rect); + pattern.appendChild(line); + defs.appendChild(pattern); + svg.insertBefore(defs, svg.firstChild); +} + +function buildNoGoZones() { + // Rough demo polygons near the Mara / Serengeti region (not authoritative) + // Using a couple of sensitive core zones. + const zones = [ + [ + L.latLng(-2.192230, 35.032646), + L.latLng(-2.233689, 34.975583), + L.latLng(-2.300771, 34.997379), + L.latLng(-2.300771, 35.067913), + L.latLng(-2.233689, 35.089709), + ], + [ + L.latLng(-2.792762, 34.528709), + L.latLng(-2.834221, 34.471646), + L.latLng(-2.901303, 34.493442), + L.latLng(-2.901303, 34.563976), + L.latLng(-2.834221, 34.585772), + ], + ]; + + noGoPolys = zones; + + if (!noGoLayer) noGoLayer = L.layerGroup(); + noGoLayer.clearLayers(); + + zones.forEach((poly) => { + L.polygon(poly, { + color: "rgba(216,110,91,0.85)", + weight: 2, + dashArray: "6 6", + fill: true, + fillColor: "rgba(216,110,91,0.18)", + fillOpacity: 0.85, + }) + .addTo(noGoLayer) + .bindTooltip("No-go zone", { direction: "top" }); + }); + + noGoLayer.addTo(map); + ensureSvgPattern(); + + // Badge area + const area = zones.reduce((acc, poly) => acc + polygonAreaKm2(poly), 0); + const badge = $("noGoBadge"); + if (badge) badge.textContent = `No-go zone: ${area.toFixed(1)} km²`; +} + +function buildHabitatOverlays() { + if (!habitatLayer) habitatLayer = L.layerGroup(); + habitatLayer.clearLayers(); + + // If real tracks are ready, use them + if (wildebeestTracksLayer || lionTracksLayer) { + if (wildebeestTracksLayer) habitatLayer.addLayer(wildebeestTracksLayer); + if (lionTracksLayer) habitatLayer.addLayer(lionTracksLayer); + return; + } + + // Otherwise: fallback to your existing demo corridor + const path = [ + L.latLng(-1.28, 34.93), + L.latLng(-1.37, 34.86), + L.latLng(-1.50, 34.78), + L.latLng(-1.62, 34.67), + ]; + + const line = L.polyline(path, { + color: "rgba(124,91,57,0.85)", + weight: 4, + dashArray: "10 8", + opacity: 0.9, + }).bindTooltip("Migration corridor (demo)", { sticky: true }); + + const water = [ + L.circleMarker(L.latLng(-2.66, 34.79), { radius: 7, color: "rgba(90,150,210,0.95)", weight: 2, fillOpacity: 0.9 }), + L.circleMarker(L.latLng(-2.99, 34.99), { radius: 14, color: "rgba(90,150,210,0.95)", weight: 2, fillOpacity: 0.9 }), + ]; + + line.addTo(habitatLayer); + water.forEach((w) => w.addTo(habitatLayer).bindTooltip("Water source", { direction: "top" })); +} + +async function buildTrafficOverlays() { + if (!trafficLayer) trafficLayer = L.layerGroup(); + trafficLayer.clearLayers(); + + await ensureRoadLayer(); + if (roadsLayer) { + trafficLayer.addLayer(roadsLayer); + } +} + +// ----------------------------- +// Tools + placement +// ----------------------------- + +function getToolSpec(tool) { + const btn = document.querySelector(`.tool-button[data-tool="${tool}"]`); + if (!btn) return null; + + const ecoDelta = Number(btn.dataset.eco || "0"); + const joyDelta = Number(btn.dataset.joy || "0"); + const redRadius = Number(btn.dataset.redRadius || "3000"); + const greenRadius = Number(btn.dataset.greenRadius || "5000"); + + const icon = btn.querySelector(".tool-icon")?.textContent || "•"; + const label = btn.querySelector(".tool-label")?.textContent || tool; + + const colorByTool = { + lodge: "rgba(216,110,91,0.95)", + parking: "rgba(90,90,90,0.85)", + restaurant: "rgba(231,168,104,0.95)", + view: "rgba(106,163,215,0.95)", + + activity: "rgba(255,189,120,0.95)", + hide: "rgba(110,180,155,0.95)", + campfire: "rgba(255,140,110,0.95)", + research: "rgba(155,130,220,0.95)", + shuttle: "rgba(120,120,200,0.95)", + }; + + return { + tool, + ecoDelta, + joyDelta, + redRadius, + greenRadius, + icon, + label, + color: colorByTool[tool] || "rgba(124,91,57,0.95)", + }; +} + +function updateSelectedPanel(spec) { + const typeEl = $("selType"); + const ecoEl = $("selEco"); + const joyEl = $("selJoy"); + const descEl = $("selDesc"); + + if (!spec) { + if (typeEl) typeEl.textContent = "—"; + if (ecoEl) ecoEl.textContent = "—"; + if (joyEl) joyEl.textContent = "—"; + if (descEl) descEl.textContent = "Pick a tool to see what it does."; + return; + } + + const info = TOOL_INFO[spec.tool] || {}; + if (typeEl) typeEl.textContent = info.title || spec.label || spec.tool; + if (ecoEl) ecoEl.textContent = `${spec.ecoDelta > 0 ? "+" : ""}${spec.ecoDelta}`; + if (joyEl) joyEl.textContent = `${spec.joyDelta > 0 ? "+" : ""}${spec.joyDelta}`; + if (descEl) { + descEl.textContent = + info.blurb || + "Purpose: plan ahead. Impact: varies by location. Visitor: place thoughtfully for best experience."; + } +} + +function renderFacilityList() { + const list = $("facilityList"); + if (!list) return; + list.innerHTML = ""; + + Object.entries(TOOL_INFO).forEach(([key, info]) => { + const spec = getToolSpec(key); + if (!spec) return; + + const ecoText = spec.ecoDelta >= 0 ? `+${spec.ecoDelta}` : `${spec.ecoDelta}`; + const joyText = spec.joyDelta >= 0 ? `+${spec.joyDelta}` : `${spec.joyDelta}`; + + const card = document.createElement("div"); + card.className = "facility-card"; + card.dataset.tool = key; + if (currentTool === key) card.classList.add("facility-card--active"); + card.addEventListener("click", () => { + setActiveTool(key); + // Focus stays in the side panel; toast provides feedback + toastAI(`Preparing to build ${spec.label}.`, "neutral"); + }); + + const title = document.createElement("div"); + title.className = "facility-card-title"; + title.textContent = info.title || key; + + const meta = document.createElement("div"); + meta.className = "facility-card-meta"; + meta.textContent = `Eco: ${ecoText} · Visitor: ${joyText}`; + + const text = document.createElement("p"); + text.className = "facility-card-text"; + text.textContent = info.blurb || ""; + + card.appendChild(title); + card.appendChild(meta); + card.appendChild(text); + list.appendChild(card); + }); +} + +const FACILITY_PROMPT_DEFAULT = "Please choose the facility you want to build."; + +function updateFacilityPrompt(spec = null) { + const prompt = $("facilityPrompt"); + if (!prompt) return; + + if (!spec) { + prompt.textContent = FACILITY_PROMPT_DEFAULT; + return; + } + + const info = TOOL_INFO[spec.tool] || {}; + const desc = info.blurb || "Place thoughtfully to balance eco and joy."; + prompt.textContent = `Preparing to build ${spec.label}: ${desc}`; +} + +function setScoreTab(tab) { + document.querySelectorAll(".score-tab").forEach((t) => { + t.classList.toggle("score-tab--active", t.dataset.tab === tab); + }); + + document.querySelectorAll("[data-tab-panel]").forEach((panel) => { + panel.classList.toggle("is-hidden", panel.dataset.tabPanel !== tab); + }); + + if (tab === "facilities") { + const spec = getToolSpec(currentTool); + if (hasUserChosenTool && spec) { + updateFacilityPrompt(spec); + } else { + updateFacilityPrompt(); + } + } +} + +function setActiveTool(tool, opts = {}) { + const { userInitiated = true, skipPrompt = false } = opts; + if (userInitiated) hasUserChosenTool = true; + currentTool = tool; + + document.querySelectorAll(".tool-button[data-tool]").forEach((b) => { + b.classList.toggle("is-active", b.dataset.tool === tool); + }); + + const spec = getToolSpec(tool); + if (!spec) return; + + toastAI(`Placing ${spec.label}. Watch the red/green rings before you click.`, "neutral"); + setPreviewRingsRadii(spec.redRadius, spec.greenRadius); + updateSelectedPanel(spec); + updateFacilityPrompt(spec); + renderFacilityList(); +} + +function setPreviewRingsRadii(redR, greenR) { + if (previewRed) previewRed.setRadius(redR); + if (previewGreen) previewGreen.setRadius(greenR); +} + +function ensurePreviewRings(latlng) { + if (!previewRed) { + previewRed = L.circle(latlng, { + radius: 3500, + color: "rgba(216,110,91,0.9)", + weight: 2, + dashArray: "6 6", + fillColor: "rgba(216,110,91,0.08)", + fillOpacity: 0.25, + interactive: false, + }).addTo(map); + } + + if (!previewGreen) { + previewGreen = L.circle(latlng, { + radius: 6500, + color: "rgba(156,191,123,0.95)", + weight: 2, + dashArray: "2 10", + fillColor: "rgba(156,191,123,0.06)", + fillOpacity: 0.2, + interactive: false, + }).addTo(map); + } +} + +function updatePreviewRings(latlng) { + ensurePreviewRings(latlng); + previewRed.setLatLng(latlng); + previewGreen.setLatLng(latlng); +} + +function isInNoGo(latlng) { + return noGoPolys.some((poly) => pointInPolygon(latlng, poly)); +} + +function facilityIconHtml(spec, isDanger) { + const danger = isDanger ? " facility-marker--danger" : ""; + return `
${spec.icon}
`; +} + +function placeFacility(latlng) { + const spec = getToolSpec(currentTool); + if (!spec) return; + + const inNoGo = isInNoGo(latlng); + + // Extra scoring factors (simple demo): + // - if inside no-go: huge eco penalty + // - if close to migration corridor (habitat path points): joy bonus + // - if too close to no-go boundary: eco penalty + + let ecoDelta = spec.ecoDelta; + let joyDelta = spec.joyDelta; + + if (inNoGo) { + ecoDelta -= 25; + toastAI("Hey! Don’t build inside a sensitive core zone — wildlife needs quiet space.", "warn"); + } else { + // tiny positive reinforcement + toastAI("Nice placement. Trade-offs look reasonable.", "good"); + } + + // Proximity bonuses/penalties + const waterPts = [L.latLng(-1.41, 34.87), L.latLng(-1.58, 34.68)]; + const corePts = [L.latLng(-1.52, 34.83), L.latLng(-1.63, 34.66)]; + + const minWater = Math.min(...waterPts.map((p) => distMeters(p, latlng))); + const minCore = Math.min(...corePts.map((p) => distMeters(p, latlng))); + + if (minWater < 3500) { + joyDelta += 6; + toastAI("Good view potential near water — visitors will love it.", "good"); + } + + if (minCore < 4200) { + ecoDelta -= 8; + toastAI("Careful — you’re close to a core habitat area. Eco health will drop.", "warn"); + } + + // Apply score changes + eco += ecoDelta; + joy += joyDelta; + + bumpGauge("eco"); + bumpGauge("joy"); + + // Marker + const icon = L.divIcon({ + className: "", // we'll use our own inner HTML + html: facilityIconHtml(spec, inNoGo), + iconSize: [34, 34], + iconAnchor: [17, 28], + }); + + const m = L.marker(latlng, { icon, riseOnHover: true }).addTo(map); + const id = crypto?.randomUUID ? crypto.randomUUID() : String(Date.now()) + Math.random().toString(16).slice(2); + + m.on("add", () => { + const el = m.getElement()?.querySelector(".facility-marker"); + if (!el) return; + el.classList.add("is-bounce"); + setTimeout(() => el.classList.remove("is-bounce"), 260); + }); + + m.bindTooltip(`${spec.label}${inNoGo ? " (No-go!)" : ""}`, { direction: "top" }); + + m.on("click", () => { + setSelectedPlacement(id); + toastAI(`Selected: ${spec.label}. You can remove it with the button below.`, "neutral"); + }); + + + let redRing = null; + let greenRing = null; + + if (spec.redRadius > 0) { + redRing = L.circle(latlng, { + radius: spec.redRadius, + color: "rgba(216,110,91,0.45)", + weight: 1.5, + dashArray: "6 6", + fillColor: "rgba(216,110,91,0.04)", + fillOpacity: 0.12, + interactive: false, + }).addTo(map); + } + + if (spec.greenRadius > 0) { + greenRing = L.circle(latlng, { + radius: spec.greenRadius, + color: "rgba(156,191,123,0.55)", + weight: 1.5, + dashArray: "2 10", + fillColor: "rgba(156,191,123,0.03)", + fillOpacity: 0.10, + interactive: false, + }).addTo(map); + } + + // Circle is below the layer + try { + if (redRing) redRing.bringToBack(); + if (greenRing) greenRing.bringToBack(); + m.bringToFront(); + } catch (_) {} + + placed.push({ + id, + type: spec.tool, + latlng, + inNoGo, + marker: m, + ecoDelta, + joyDelta, + redRing, + greenRing, + }); + updateScoresUI(); + + // Little "duang" on dock for positive feedback + const dock = document.querySelector(".dock"); + if (dock) { + dock.classList.remove("is-duang"); + void dock.offsetWidth; + dock.classList.add("is-duang"); + } +} + +function undoLast() { + const last = placed.pop(); + if (!last) { + toastAI("Nothing to undo yet.", "neutral"); + return; + } + + // Revert scores + eco -= last.ecoDelta; + joy -= last.joyDelta; + + // Remove marker + try { map.removeLayer(last.marker); } catch (_) {} + try { if (last.redRing) map.removeLayer(last.redRing); } catch (_) {} + try { if (last.greenRing) map.removeLayer(last.greenRing); } catch (_) {} + + toastAI("Undone. Try another placement for a better balance.", "neutral"); + updateScoresUI(); +} + +function clearAll() { + placed.forEach((p) => { + try { map.removeLayer(p.marker); } catch (_) {} + try { if (p.redRing) map.removeLayer(p.redRing); } catch (_) {} + try { if (p.greenRing) map.removeLayer(p.greenRing); } catch (_) {} + }); + placed.length = 0; + + eco = 100; + joy = 0; + + toastAI("Cleared. Fresh canvas!"); + updateScoresUI(); +} + +// ----------------------------- +// View mode chips +// ----------------------------- + +function setViewMode(mode) { + const mapEl = $("map"); + if (mapEl) mapEl.dataset.mode = mode; +} + +function applyWildlifeVisibility(mode) { + if (!map) return; + + // Always keep boundaries visible (workbench context) + for (const lyr of [parkBoundaryLayer, parkBoundary2Layer]) { + if (lyr && !map.hasLayer(lyr)) lyr.addTo(map); + } + try { + parkBoundaryLayer?.bringToFront?.(); + parkBoundary2Layer?.bringToFront?.(); + } catch (_) {} + + // Trails: show only in habitat view (avoid clutter) + const showTrails = mode === "habitat"; + for (const lyr of [wildebeestTracksLayer, lionTracksLayer]) { + if (!lyr) continue; + const has = map.hasLayer(lyr); + if (showTrails && !has) lyr.addTo(map); + if (!showTrails && has) map.removeLayer(lyr); + } +} + + +// ----------------------------- +// Save brief +// ----------------------------- + +function personalityFromScores(e, j) { + if (e >= 80 && j >= 70) return "balanced conservationist"; + if (e >= 80) return "gentle conservationist"; + if (j >= 75) return "experience-first planner"; + if (e < 45 && j < 45) return "confused newcomer (needs iteration)"; + if (e < 45) return "aggressive developer"; + return "pragmatic designer"; +} + +function openBrief() { + const dlg = $("brief-modal"); + if (!dlg) return; + + const noGoCount = placed.filter((p) => p.inNoGo).length; + const noGoPct = placed.length ? Math.round((noGoCount / placed.length) * 100) : 0; + + const persona = personalityFromScores(eco, joy); + const corridor = eco >= 70 ? "kept most migration corridors intact" : "fragmented some corridors"; + const wildlife = eco >= 70 ? "wildlife disturbance is relatively low" : "wildlife stress may increase"; + const visitor = joy >= 70 ? "visitors will have a high chance of memorable sightings" : "visitors may need longer detours to see wildlife"; + + const text = [ + `《Mara–Serengeti Future Blueprint》`, + `Generated: ${nowISO()}`, + "", + `You are a **${persona}**.`, + `Eco-Health: **${Math.round(eco)}%** · Visitor Joy: **${Math.round(joy)}%** · No-go placement rate: **${noGoPct}%**.`, + "", + `In your plan, you ${corridor}. Overall, ${wildlife}, while ${visitor}.`, + "", + `Next step suggestions:`, + `- Move any facilities away from red rings that overlap core habitats.`, + `- Place viewpoints near water sources (green rings) for big Joy boosts.`, + `- Keep restaurants and parking clustered to reduce traffic footprint.`, + ].join("\n"); + + const content = $("brief-content"); + if (content) content.textContent = text; + + if (typeof dlg.showModal === "function") dlg.showModal(); + else dlg.setAttribute("open", "open"); +} + +function closeBrief() { + const dlg = $("brief-modal"); + if (!dlg) return; + if (typeof dlg.close === "function") dlg.close(); + else dlg.removeAttribute("open"); +} + +async function copyBrief() { + const content = $("brief-content"); + if (!content) return; + const text = content.textContent || ""; + try { + await navigator.clipboard.writeText(text); + toastAI("Copied your blueprint text.", "good"); + } catch (_) { + toastAI("Copy failed (browser permission). You can still select text manually.", "warn"); + } +} + +// ----------------------------- +// Boot +// ----------------------------- +async function init() { + setMapStatus("Initializing workbench…"); + + try { + await ensureLeaflet(); + } catch (err) { + console.error(err); + setMapStatus( + "Leaflet failed to load. If your network blocks CDNs, download Leaflet locally or use a different network.", + "error" + ); + return; + } + + // Create map + map = L.map("map", { + zoomControl: true, + preferCanvas: true, + attributionControl: false, + }).setView([-1.52, 34.85], 10); + + // Tile sources with fallback + useTileSource(0); + + // Make sure SVG exists for patterns + map.on("layeradd", () => ensureSvgPattern()); + map.whenReady(() => { + ensureSvgPattern(); + buildNoGoZones(); + buildHabitatOverlays(); + buildTrafficOverlays(); + updateScoresUI(); + + ensureExternalGeoLayers().catch((e) => console.error(e)); + + geoDataLoaded = true; + + const mode = $("map")?.dataset?.mode || "design"; + applyWildlifeVisibility(mode); + + setMapStatus("GeoJSON layers loaded.", "ok"); + hideMapStatus(650); + + setMapStatus("Canvas ready.", "ok"); + hideMapStatus(700); + }); + + // Fix render after layout settles + setTimeout(() => map.invalidateSize(), 80); + window.addEventListener("resize", () => map.invalidateSize()); + + // Dock tools + document.querySelectorAll(".tool-button[data-tool]").forEach((btn) => { + btn.addEventListener("click", () => setActiveTool(btn.dataset.tool, { userInitiated: true })); + }); + +// Score tab switching + document.querySelectorAll(".score-tab").forEach((btn) => { + btn.addEventListener("click", () => { + const tab = btn.dataset.tab || "overview"; + setScoreTab(tab); + if (tab === "facilities") renderFacilityList(); + }); + }); + + setScoreTab("overview"); + renderFacilityList(); + + // Prevent dock clicks from triggering map placements underneath + const dock = document.querySelector(".dock"); + if (dock && L?.DomEvent?.disableClickPropagation) { + L.DomEvent.disableClickPropagation(dock); + L.DomEvent.disableScrollPropagation(dock); + } + + setActiveTool("lodge", { userInitiated: false, skipPrompt: true }); + + // Undo / clear + $("btn-undo")?.addEventListener("click", undoLast); + $("btn-clear")?.addEventListener("click", clearAll); + + // Preview rings follow cursor + map.on("mousemove", (e) => updatePreviewRings(e.latlng)); + + // Place on click + map.on("click", (e) => placeFacility(e.latlng)); + + // View chips + document.querySelectorAll('.ghost-chip[data-view]').forEach((chip) => { + chip.addEventListener("click", () => { + document + .querySelectorAll('.ghost-chip[data-view]') + .forEach((c) => c.classList.remove("ghost-chip--active")); + chip.classList.add("ghost-chip--active"); + + const view = chip.dataset.view; + setViewMode(view); + + if (habitatLayer && map.hasLayer(habitatLayer)) { + map.removeLayer(habitatLayer); + } + if (trafficLayer && map.hasLayer(trafficLayer)) { + map.removeLayer(trafficLayer); + } + + if (view === "habitat") { + if (!habitatLayer) buildHabitatOverlays(); + habitatLayer?.addTo(map); + } else if (view === "traffic") { + buildTrafficOverlays(); + trafficLayer?.addTo(map); + } + + applyWildlifeVisibility(view); + }); +}); + + // Scenario changes (demo text only) + $("scenario-select")?.addEventListener("change", (e) => { + const v = e.target.value; + if (v === "dry") { + toastAI("Dry season: herds cluster near the Mara River. Plan viewpoints carefully."); + } else if (v === "wet") { + toastAI("Wet season: calving grounds shift south. Keep routes flexible."); + } else { + toastAI("High tourist season: reduce congestion and spread facilities."); + } + }); + + // Close side cards + document.querySelectorAll("[data-close]").forEach((b) => { + b.addEventListener("click", () => { + const sel = b.getAttribute("data-close"); + if (!sel) return; + const el = document.querySelector(sel); + el?.classList.add("is-hidden"); + }); + }); + + // Save brief + $("btn-save-design")?.addEventListener("click", () => { + openBrief(); + saveBlueprintToFirebase(); +}); + $("btn-close-brief")?.addEventListener("click", closeBrief); + $("btn-ok-brief")?.addEventListener("click", closeBrief); + $("btn-copy-brief")?.addEventListener("click", copyBrief); + $("brief-modal")?.addEventListener("click", (e) => { + // clicking backdrop closes + if (e.target?.id === "brief-modal") closeBrief(); + }); + + // Calculate score + $("btn-calc-score")?.addEventListener("click", () => { + const noGoCount = placed.filter((p) => p.inNoGo).length; + const noGoPct = placed.length ? Math.round((noGoCount / placed.length) * 100) : 0; + + const final = clamp(Math.round((eco * 0.55 + joy * 0.45) - noGoPct * 0.35), 0, 100); + const out = $("design-score"); + if (out) { + out.textContent = `Final score: ${final}/100 · Eco ${Math.round(eco)}% · Joy ${Math.round(joy)}% · No-go ${noGoPct}%`; + } + + toastAI(final >= 80 ? "That’s a strong balance. Nice work!" : "Iterate a bit: reduce core-zone overlap for better Eco."); + }); +} + +document.addEventListener("DOMContentLoaded", init); + +async function saveBlueprintToFirebase() { + const ecoScore = Math.round(eco); + const joyScore = Math.round(joy); + + const total = placed.length || 1; + const inNoGoCount = placed.filter((p) => p.inNoGo).length; + const noGoRate = Math.round((inNoGoCount / total) * 100); + + const facilities = placed.map((p) => ({ + type: p.type, + lat: p.latlng.lat, + lng: p.latlng.lng, + ecoDelta: p.ecoDelta, + joyDelta: p.joyDelta, + inNoGo: p.inNoGo, + })); + + try { + await addDoc(collection(db, "designs"), { + createdAt: serverTimestamp(), + ecoScore, + joyScore, + noGoRate, + facilities, + }); + toastAI("Saved to Firebase", "good"); + } catch (err) { + console.error("Failed to save blueprint", err); + toastAI("Oops, failed to save to Firebase. Check console.", "error"); + } +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..3b52645 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + + + Redirecting to engagement project... + + +

+ Redirecting to engagement project... + If you are not redirected, + click here. +

+ +