“[T]he idea that justice, however it might be defined, has a consequential geography, a spatial expression that is more than just a background reflection or set of physical attributes to be descriptively mapped.”
Soja, 2010, Seeking spatial justice
“[Space is] a projection in which other aspects of society can be reflected”
Harvey, 1988, Social Justice and the City
Income Household (Source: https://www.policymap.com/)
Population Density (Source: https://www.policymap.com/)
Device
Programming (highlights)
#include "Adafruit_FONA.h"
#define FONA_RX 2
#define FONA_TX 3
#define FONA_RST 4
#include <SPI.h>
#include <SD.h>
//////variables de FONA
char replybuffer[255];
#include <SoftwareSerial.h>
SoftwareSerial fonaSS = SoftwareSerial(FONA_TX, FONA_RX);
SoftwareSerial *fonaSerial = &fonaSS;
Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
uint8_t readline(char *buff, uint8_t maxbuff, uint16_t timeout = 0);
uint8_t type;
////variables de SD
File fd;
const uint8_t BUFFER_SIZE = 20;
char fileName[] = "RSSILOG.csv"; // SD library only supports up to 8.3 names
char buff[BUFFER_SIZE + 2] = ""; // Added two to allow a 2 char peek for EOF state
uint8_t index = 0;
const uint8_t chipSelect = 8;
const uint8_t cardDetect = 9;
enum states : uint8_t { NORMAL, E, EO };
uint8_t state = NORMAL;
bool alreadyBegan = false; // SD.begin() misbehaves if not first call
bool fonaOK = false;
int led1 = 10;
int led2 = 7;
int led3 = 6;
int led4 = 5;
int ledOK = A0;
void setup() {
Serial.begin(57600);
while (!Serial);
//incializa SD
pinMode(cardDetect, INPUT);
initializeCard();
Serial.println(F("-------------------------------------"));
//InicializaFONA
Serial.println(F("FONA basic test"));
Serial.println(F("Initializing....(May take 3 seconds)"));
fonaSerial->begin(4800);
if (! fona.begin(*fonaSerial)) {
Serial.println(F("Couldn't find FONA"));
while (1);
}else{
fonaOK = true;
}
type = fona.type();
Serial.println(F("FONA is OK"));
Serial.print(F("Found "));
switch (type) {
case FONA800L:
Serial.println(F("FONA 800L")); break;
case FONA800H:
Serial.println(F("FONA 800H")); break;
case FONA808_V1:
Serial.println(F("FONA 808 (v1)")); break;
case FONA808_V2:
Serial.println(F("FONA 808 (v2)")); break;
case FONA3G_A:
Serial.println(F("FONA 3G (American)")); break;
case FONA3G_E:
Serial.println(F("FONA 3G (European)")); break;
default:
Serial.println(F("???")); break;
}
// Print module IMEI number.
char imei[16] = {0}; // MUST use a 16 character buffer for IMEI!
uint8_t imeiLen = fona.getIMEI(imei);
if (imeiLen > 0) {
Serial.print("Module IMEI: "); Serial.println(imei);
}
Serial.println(F("Enabling GPS..."));
fona.enableGPS(true);
pinMode(led1, OUTPUT);
pinMode(led2, OUTPUT);
pinMode(led3, OUTPUT);
pinMode(led4, OUTPUT);
pinMode(ledOK, OUTPUT);
digitalWrite(led1, LOW);
digitalWrite(led2, LOW);
digitalWrite(led3, LOW);
digitalWrite(led4, LOW);
digitalWrite(ledOK, LOW);
if (alreadyBegan == true && fonaOK == true) {
digitalWrite(ledOK, HIGH);
}
}
void printMenu(void) {
Serial.println(F("-------------------------------------"));
Serial.println(F("[i] read RSSI"));
// Time
Serial.println(F("[y] Enable network time sync (FONA 800 & 808)"));
Serial.println(F("[Y] Enable NTP time sync (GPRS FONA 800 & 808)"));
Serial.println(F("[t] Get network time"));
// GPRS
Serial.println(F("[G] Enable GPRS"));
Serial.println(F("[g] Disable GPRS"));
Serial.println(F("[l] Query GSMLOC (GPRS)"));
Serial.println(F("[w] Read webpage (GPRS)"));
Serial.println(F("[W] Post to website (GPRS)"));
// GPS
if ((type == FONA3G_A) || (type == FONA3G_E) || (type == FONA808_V1) || (type == FONA808_V2)) {
Serial.println(F("[O] Turn GPS on (FONA 808 & 3G)"));
Serial.println(F("[o] Turn GPS off (FONA 808 & 3G)"));
Serial.println(F("[L] Query GPS location (FONA 808 & 3G)"));
if (type == FONA808_V1) {
Serial.println(F("[x] GPS fix status (FONA808 v1 only)"));
}
Serial.println(F("[E] Raw NMEA out (FONA808)"));
}
Serial.println(F("-------------------------------------"));
Serial.println(F(""));
}
void loop() {
delay(2000);
String dataString = "";
float latitude, longitude, speed_kph, heading, speed_mph, altitude;
int8_t rssi = -100;
boolean gps_success = fona.getGPS(&latitude, &longitude, &speed_kph, &heading, &altitude);
if (gps_success) {
char buffer[23];
fona.getTime(buffer, 23); // make sure replybuffer is at least 23 bytes!
rssi = getRSSI();
dataString += String(rssi);
dataString += ",";
dataString += String(longitude, 6);
dataString += ",";
dataString += String(latitude, 6);
dataString += ",";
dataString += buffer;
escribeatarjeta(dataString);
Serial.print("RSSI:");
Serial.println(String(rssi));
Serial.print("GPSLoc lat:");
Serial.println(latitude, 6);
Serial.print("GPSLoc long:");
Serial.println(longitude, 6);
} else {
Serial.println("Waiting for FONA GPS 3D fix...");
Serial.println(F("Checking for Cell network..."));
if (fona.getNetworkStatus() == 1) {
// network & GPRS? Great! Print out the GSM location to compare
boolean gsmloc_success = fona.getGSMLoc(&latitude, &longitude);
if (gsmloc_success) {
char buffer[23];
fona.getTime(buffer, 23); // make sure replybuffer is at least 23 bytes!
rssi = getRSSI();
dataString += String(rssi);
dataString += ",";
dataString += String(longitude, 6);
dataString += ",";
dataString += String(latitude, 6);
dataString += ",";
dataString += buffer;
escribeatarjeta(dataString);
Serial.print("RSSI:");
Serial.println(String(rssi));
Serial.print("GSMLoc lat:");
Serial.println(latitude, 6);
Serial.print("GSMLoc long:");
Serial.println(longitude, 6);
} else {
Serial.println("GSM location failed...");
Serial.println(F("Disabling GPRS"));
fona.enableGPRS(false);
Serial.println(F("Enabling GPRS"));
if (!fona.enableGPRS(true)) {
Serial.println(F("Failed to turn GPRS on"));
}
}
}
}
//-50 Excellent, -50 a -60 good, -60 a -70 Fair -70 hacia abajo weak
if (rssi > -50) {
digitalWrite(led1, HIGH);
digitalWrite(led2, HIGH);
digitalWrite(led3, HIGH);
digitalWrite(led4, HIGH);
} else if (rssi < -50 && rssi > -60) {
digitalWrite(led1, HIGH);
digitalWrite(led2, HIGH);
digitalWrite(led3, HIGH);
digitalWrite(led4, LOW);
} else if (rssi < -60 && rssi > -70) {
digitalWrite(led1, HIGH);
digitalWrite(led2, HIGH);
digitalWrite(led3, LOW);
digitalWrite(led4, LOW);
} else if (rssi < -70 && rssi > -90) {
digitalWrite(led1, HIGH);
digitalWrite(led2, LOW);
digitalWrite(led3, LOW);
digitalWrite(led4, LOW);
} else if (rssi < -90) {
digitalWrite(led1, LOW);
digitalWrite(led2, LOW);
digitalWrite(led3, LOW);
digitalWrite(led4, LOW);
}
}
void initializeCard(void) {
Serial.print(F("Initializing SD card..."));
// Is there even a card?
if (!digitalRead(cardDetect))
{
Serial.println(F("No card detected. Waiting for card."));
while (!digitalRead(cardDetect));
delay(250); // 'Debounce insertion'
}
// Card seems to exist. begin() returns failure
// even if it worked if it's not the first call.
if (!SD.begin(chipSelect) && !alreadyBegan) // begin uses half-speed...
{
Serial.println(F("Initialization failed!"));
initializeCard(); // Possible infinite retry loop is as valid as anything
}
else
{
alreadyBegan = true;
}
Serial.println(F("Initialization done."));
Serial.print(fileName);
if (SD.exists(fileName))
{
Serial.println(F(" exists."));
}
else
{
Serial.println(F(" doesn't exist. Creating."));
}
Serial.print("Opening file: ");
Serial.println(fileName);
//Serial.println(F("Enter text to be written to file. 'EOF' will terminate writing."));
}
int8_t getRSSI() {
uint8_t n = fona.getRSSI();
int8_t r;
// Serial.print(F("RSSI = ")); Serial.print(n); Serial.print(": ");
if (n == 0) r = -115;
if (n == 1) r = -111;
if (n == 31) r = -52;
if ((n >= 2) && (n <= 30)) {
r = map(n, 2, 30, -110, -54);
}
return r;//-50 Excellent, -50 a -60 good, -60 a -70 Fair -70 hacia abajo weak
}
void escribeatarjeta(String buff) {
fd = SD.open(fileName, FILE_WRITE);
if (fd) {
fd.println(buff);
fd.flush();
//index = 0;
fd.close();
}
}RSSI,Longitude,Latitude,TimeStamp
-115,-78.825714,42.959633,"04/01/02,03:18:32+00"
-86,-78.825668,42.959637,"04/01/02,03:18:35+00"
-86,-78.825661,42.959648,"04/01/02,03:18:38+00"
-86,-78.825668,42.959648,"04/01/02,03:18:41+00"
-86,-78.825668,42.959637,"04/01/02,03:18:44+00"
-86,-78.825653,42.959629,"04/01/02,03:18:47+00"
-86,-78.825676,42.959629,"04/01/02,03:18:50+00"
-86,-78.825684,42.959614,"04/01/02,03:18:53+00"
-86,-78.825661,42.95961,"04/01/02,03:18:56+00"
-86,-78.825668,42.959602,"04/01/02,03:18:59+00"
-86,-78.825668,42.959602,"04/01/02,03:19:02+00"
-86,-78.825668,42.959621,"04/01/02,03:19:05+00"
-86,-78.825668,42.959621,"04/01/02,03:19:07+00"
-86,-78.825668,42.959621,"04/01/02,03:19:10+00"
-86,-78.825668,42.959621,"04/01/02,03:19:13+00"
-94,-78.823059,42.956429,"04/01/01,00:08:18+00"
-96,-78.823059,42.956429,"04/01/01,00:08:22+00"
-96,-78.823059,42.956429,"04/01/01,00:08:26+00"
-96,-78.823059,42.956429,"04/01/01,00:08:30+00"
-96,-78.823059,42.956429,"04/01/01,00:08:34+00"
-96,-78.823059,42.956429,"04/01/01,00:08:38+00"
-96,-78.823059,42.956429,"04/01/01,00:08:43+00"
-96,-78.823059,42.956429,"04/01/01,00:08:47+00"
-96,-78.823059,42.956429,"04/01/01,00:08:51+00"
-92,-78.823059,42.956429,"04/01/01,00:08:56+00"
-92,-78.823059,42.956429,"04/01/01,00:09:00+00"
-92,-78.823059,42.956429,"04/01/01,00:09:04+00"
-92,-78.823059,42.956429,"04/01/01,00:09:08+00"
-88,-78.819511,42.962059,"04/01/01,00:17:22+00"
-88,-78.819511,42.962059,"04/01/01,00:17:26+00"
-88,-78.819511,42.962059,"04/01/01,00:17:30+00"
-86,-78.819511,42.962059,"04/01/01,00:17:34+00"
-86,-78.819511,42.962059,"04/01/01,00:17:39+00"
-86,-78.819511,42.962059,"04/01/01,00:17:43+00"
-86,-78.819511,42.962059,"04/01/01,00:17:47+00"
-86,-78.819511,42.962059,"04/01/01,00:17:51+00"
-86,-78.819511,42.962059,"04/01/01,00:17:55+00"
-86,-78.819511,42.962059,"04/01/01,00:17:59+00"
-90,-78.819511,42.962059,"04/01/01,00:18:03+00"
-90,-78.819511,42.962059,"04/01/01,00:18:07+00"
-90,-78.819511,42.962059,"04/01/01,00:18:12+00"
-90,-78.819511,42.962059,"04/01/01,00:18:16+00"
-90,-78.819511,42.962059,"04/01/01,00:18:21+00"
-88,-78.819511,42.962059,"04/01/01,00:18:25+00"
-88,-78.819511,42.962059,"04/01/01,00:18:29+00"
-88,-78.819511,42.962059,"04/01/01,00:18:33+00"
-86,-78.819511,42.962059,"04/01/01,00:29:50+00"
-88,-78.819511,42.962059,"04/01/01,00:29:54+00"
-88,-78.819511,42.962059,"04/01/01,00:29:58+00"
-88,-78.819511,42.962059,"04/01/01,00:30:03+00"
-86,-78.819511,42.962059,"04/01/01,00:30:07+00"
-86,-78.819511,42.962059,"04/01/01,00:30:11+00"
-86,-78.819511,42.962059,"04/01/01,00:30:15+00"
-86,-78.819511,42.962059,"04/01/01,00:30:19+00"
-86,-78.819511,42.962059,"04/01/01,00:30:23+00"
-92,-78.819511,42.962059,"04/01/01,00:30:28+00"
-92,-78.819511,42.962059,"04/01/01,00:30:33+00"
-92,-78.823059,42.956429,"04/01/01,00:30:37+00"
-86,-78.823059,42.956429,"04/01/01,00:30:41+00"
-86,-78.823059,42.956429,"04/01/01,00:30:45+00"
-86,-78.823059,42.956429,"04/01/01,00:30:49+00"
-88,-78.823059,42.956429,"04/01/01,00:30:54+00"
-88,-78.823059,42.956429,"04/01/01,00:30:58+00"
-88,-78.823059,42.956429,"04/01/01,00:31:02+00"
-88,-78.823059,42.956429,"04/01/01,00:31:06+00"
-88,-78.823059,42.956429,"04/01/01,00:31:10+00"
-88,-78.823059,42.956429,"04/01/01,00:31:14+00"
-88,-78.823059,42.956429,"04/01/01,00:31:18+00"
-88,-78.823059,42.956429,"04/01/01,00:31:22+00"
-88,-78.823059,42.956429,"04/01/01,00:31:26+00"
-88,-78.823059,42.956429,"04/01/01,00:31:30+00"
-88,-78.823059,42.956429,"04/01/01,00:31:34+00"
-88,-78.823059,42.956429,"04/01/01,00:31:38+00"
-90,-78.823059,42.956429,"04/01/01,00:31:42+00"
-90,-78.823059,42.956429,"04/01/01,00:31:47+00"
-90,-78.819511,42.962059,"04/01/01,00:31:51+00"
-90,-78.819511,42.962059,"04/01/01,00:31:55+00"
-76,-78.819511,42.962059,"04/01/01,00:31:59+00"
-76,-78.819511,42.962059,"04/01/01,00:32:03+00"
-76,-78.819511,42.962059,"04/01/01,00:32:08+00"
-82,-78.819511,42.962059,"04/01/01,00:32:12+00"
-82,-78.819511,42.962059,"04/01/01,00:32:16+00"
-74,-78.819511,42.962059,"04/01/01,00:32:20+00"
-74,-78.819511,42.962059,"04/01/01,00:32:25+00"
-74,-78.819511,42.962059,"04/01/01,00:32:29+00"
-80,-78.819511,42.962059,"04/01/01,00:32:33+00"
-80,-78.819511,42.962059,"04/01/01,00:32:37+00"
-80,-78.819511,42.962059,"04/01/01,00:32:42+00"
-84,-78.819511,42.962059,"04/01/01,00:32:46+00"
-84,-78.819511,42.962059,"04/01/01,00:32:51+00"
-86,-78.819511,42.962059,"04/01/01,00:32:55+00"
-86,-78.819511,42.962059,"04/01/01,00:32:59+00"
-86,-78.819511,42.962059,"04/01/01,00:33:03+00"
-86,-78.819511,42.962059,"04/01/01,00:33:08+00"
-86,-78.819511,42.962059,"04/01/01,00:33:12+00"
-86,-78.819511,42.962059,"04/01/01,00:33:16+00"
-82,-78.819511,42.962059,"04/01/01,00:33:20+00"
-82,-78.819511,42.962059,"04/01/01,00:33:25+00"
-82,-78.819511,42.962059,"04/01/01,00:33:30+00"
-84,-78.819511,42.962059,"04/01/01,00:33:34+00"
-84,-78.819511,42.962059,"04/01/01,00:33:39+00"
-84,-78.819511,42.962059,"04/01/01,00:33:43+00"
-86,-78.819511,42.962059,"04/01/01,00:33:47+00"
-86,-78.819511,42.962059,"04/01/01,00:33:52+00"
-82,-78.819511,42.962059,"04/01/01,00:33:56+00"
-82,-78.819511,42.962059,"04/01/01,00:34:01+00"
-82,-78.819511,42.962059,"04/01/01,00:34:05+00"
-78,-78.819511,42.962059,"04/01/01,00:34:09+00"
-78,-78.819511,42.962059,"04/01/01,00:34:13+00"
-78,-78.819511,42.962059,"04/01/01,00:34:17+00"
-78,-78.819511,42.962059,"04/01/01,00:34:22+00"
-78,-78.819511,42.962059,"04/01/01,00:34:26+00"
-78,-78.819511,42.962059,"04/01/01,00:34:30+00"
-80,-78.819511,42.962059,"04/01/01,00:34:34+00"
-80,-78.819511,42.962059,"04/01/01,00:34:39+00"
-80,-78.825928,42.959862,"04/01/01,00:34:42+00"
-80,-78.825882,42.959843,"04/01/01,00:34:45+00"
-82,-78.825905,42.959827,"04/01/01,00:34:48+00"
-82,-78.825928,42.959805,"04/01/01,00:34:51+00"
-82,-78.82589,42.959801,"04/01/01,00:34:53+00"
-76,-78.825928,42.959724,"04/01/01,00:34:56+00"
-76,-78.825928,42.959686,"04/01/01,00:34:59+00"
-76,-78.825905,42.959671,"04/01/01,00:35:02+00"
-76,-78.825905,42.959648,"04/01/01,00:35:05+00"
-80,-78.825905,42.95961,"04/01/01,00:35:08+00"
-80,-78.825867,42.959599,"04/01/01,00:35:11+00"
-80,-78.825844,42.959602,"04/01/01,00:35:14+00"
-82,-78.82579,42.959618,"04/01/01,00:35:17+00"
-82,-78.825752,42.959614,"04/01/01,00:35:20+00"
-82,-78.825737,42.959618,"04/01/01,00:35:23+00"
-88,-78.825729,42.959629,"04/01/01,00:35:26+00"
-88,-78.825729,42.959637,"04/01/01,00:35:29+00"
-88,-78.825737,42.959667,"04/01/01,00:35:31+00"
-88,-78.825752,42.959663,"04/01/01,00:35:34+00"
-98,-78.825775,42.959637,"04/01/01,00:35:37+00"
-98,-78.825768,42.959629,"04/01/01,00:35:40+00"
-98,-78.825752,42.959637,"04/01/01,00:35:43+00"
-90,-78.825752,42.959637,"04/01/01,00:35:46+00"
-90,-78.825752,42.959648,"04/01/01,00:35:49+00"
-90,-78.825752,42.959648,"04/01/01,00:35:52+00"
-90,-78.825768,42.959652,"04/01/01,00:35:55+00"
-82,-78.825775,42.959667,"04/01/01,00:35:58+00"
-82,-78.82579,42.959663,"04/01/01,00:36:01+00"
-82,-78.825806,42.959671,"04/01/01,00:36:04+00"
-82,-78.825806,42.959667,"04/01/01,00:36:07+00"
-82,-78.82579,42.959671,"04/01/01,00:36:09+00"
-82,-78.825813,42.959671,"04/01/01,00:36:12+00"
-88,-78.825829,42.959671,"04/01/01,00:36:15+00"
-88,-78.825836,42.959671,"04/01/01,00:36:18+00"
-88,-78.825844,42.959663,"04/01/01,00:36:21+00"
-88,-78.825844,42.959663,"04/01/01,00:36:24+00"
-88,-78.825851,42.959667,"04/01/01,00:36:27+00"
-88,-78.825836,42.959671,"04/01/01,00:36:30+00"
-88,-78.825813,42.959686,"04/01/01,00:36:33+00"
-90,-78.82579,42.959698,"04/01/01,00:36:36+00"
-90,-78.82579,42.95969,"04/01/01,00:36:39+00"
-90,-78.825821,42.959682,"04/01/01,00:36:42+00"
-90,-78.825821,42.959679,"04/01/01,00:36:45+00"
-84,-78.825821,42.959671,"04/01/01,00:36:48+00"
-84,-78.825821,42.959671,"04/01/01,00:36:50+00"
-84,-78.825829,42.959667,"04/01/01,00:36:53+00"
-80,-78.825821,42.959671,"04/01/01,00:36:56+00"
-80,-78.825821,42.959663,"04/01/01,00:36:59+00"
-80,-78.825821,42.959663,"04/01/01,00:37:02+00"
-82,-78.825813,42.959663,"04/01/01,00:37:05+00"
-82,-78.825821,42.959663,"04/01/01,00:37:08+00"
-82,-78.825829,42.959663,"04/01/01,00:37:11+00"
-82,-78.825829,42.959667,"04/01/01,00:37:14+00"
-82,-78.825829,42.959667,"04/01/01,00:37:17+00"
-82,-78.825821,42.959663,"04/01/01,00:37:20+00"
-82,-78.825821,42.959663,"04/01/01,00:37:23+00"
-78,-78.825813,42.959667,"04/01/01,00:37:26+00"
-78,-78.825813,42.959663,"04/01/01,00:37:28+00"
-78,-78.82579,42.959652,"04/01/01,00:37:31+00"
-78,-78.819427,42.962059,"04/01/01,00:00:40+00"
-80,-78.819427,42.962059,"04/01/01,00:00:45+00"
-80,-78.819427,42.962059,"04/01/01,00:00:49+00"
-80,-78.819427,42.962059,"04/01/01,00:01:12+00"
-80,-78.819427,42.962059,"04/01/01,00:01:16+00"
-80,-78.819427,42.962059,"04/01/01,00:01:20+00"
-80,-78.819427,42.962059,"04/01/01,00:01:24+00"
-80,-78.819427,42.962059,"04/01/01,00:01:28+00"
-80,-78.819427,42.962059,"04/01/01,00:01:33+00"
-80,-78.819427,42.962059,"04/01/01,00:01:37+00"
-80,-78.819427,42.962059,"04/01/01,00:01:41+00"
-80,-78.819427,42.962059,"04/01/01,00:01:45+00"
-80,-78.819427,42.962059,"04/01/01,00:01:49+00"
-80,-78.819427,42.962059,"04/01/01,00:01:53+00"
-82,-78.819427,42.962059,"04/01/01,00:01:57+00"
-82,-78.819427,42.962059,"04/01/01,00:02:01+00"
-82,-78.819427,42.962059,"04/01/01,00:02:06+00"
-80,-78.819427,42.962059,"04/01/01,00:02:10+00"
-80,-78.819427,42.962059,"04/01/01,00:02:14+00"
-80,-78.819427,42.962059,"04/01/01,00:02:18+00"
-82,-78.819427,42.962059,"04/01/01,00:02:22+00"
-82,-78.819427,42.962059,"04/01/01,00:02:26+00"
-86,-78.819427,42.962059,"04/01/01,00:03:49+00"
-86,-78.819427,42.962059,"04/01/01,00:03:53+00"
-86,-78.819427,42.962059,"04/01/01,00:03:57+00"
-86,-78.819427,42.962059,"04/01/01,00:04:01+00"
-80,-78.819427,42.962059,"04/01/01,00:04:05+00"
-80,-78.819427,42.962059,"04/01/01,00:04:09+00"
-80,-78.819427,42.962059,"04/01/01,00:04:13+00"
-84,-78.819427,42.962059,"04/01/01,00:04:17+00"
-84,-78.819427,42.962059,"04/01/01,00:04:22+00"
-84,-78.819427,42.962059,"04/01/01,00:04:26+00"
-88,-78.819427,42.962059,"04/01/01,00:04:30+00"
-88,-78.819427,42.962059,"04/01/01,00:04:34+00"
-88,-78.819427,42.962059,"04/01/01,00:04:39+00"
-84,-78.819427,42.962059,"04/01/01,00:04:43+00"
-84,-78.819427,42.962059,"04/01/01,00:04:47+00"
-86,-78.819427,42.962059,"04/01/01,00:04:51+00"
-86,-78.819427,42.962059,"04/01/01,00:04:55+00"
-86,-78.819427,42.962059,"04/01/01,00:05:00+00"
-88,-78.819427,42.962059,"04/01/01,00:05:04+00"
-88,-78.819427,42.962059,"04/01/01,00:05:08+00"
-88,-78.819427,42.962059,"04/01/01,00:05:12+00"
-88,-78.819427,42.962059,"04/01/01,00:05:16+00"
-88,-78.819427,42.962059,"04/01/01,00:05:20+00"
-88,-78.819427,42.962059,"04/01/01,00:05:24+00"
-84,-78.819427,42.962059,"04/01/01,00:05:29+00"
-84,-78.819427,42.962059,"04/01/01,00:05:33+00"
-84,-78.819427,42.962059,"04/01/01,00:05:37+00"
-88,-78.819427,42.962059,"04/01/01,00:05:41+00"
-86,-78.819427,42.962059,"04/01/01,00:05:51+00"
-86,-78.819427,42.962059,"04/01/01,00:05:56+00"
-86,-78.819427,42.962059,"04/01/01,00:06:00+00"
-90,-78.819427,42.962059,"04/01/01,00:06:05+00"
-90,-78.819427,42.962059,"04/01/01,00:06:09+00"
-90,-78.819427,42.962059,"04/01/01,00:06:13+00"
-86,-78.823410,42.955967,"04/01/01,00:00:38+00"{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825714,42.959633 ]
},
"properties": {
"RSSI":-115,
"FIELD4":"04/01/02,03:18:32+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959637 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:35+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825661,42.959648 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:38+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959648 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:41+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959637 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:44+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825653,42.959629 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:47+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825676,42.959629 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:50+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825684,42.959614 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:53+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825661,42.95961 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:56+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959602 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:18:59+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959602 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:19:02+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959621 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:19:05+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959621 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:19:07+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959621 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:19:10+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825668,42.959621 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/02,03:19:13+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-94,
"FIELD4":"04/01/01,00:08:18+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:22+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:26+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:30+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:34+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:38+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:43+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:47+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-96,
"FIELD4":"04/01/01,00:08:51+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:08:56+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:09:00+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:09:04+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:09:08+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:17:22+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:17:26+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:17:30+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:34+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:39+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:43+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:47+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:51+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:55+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:17:59+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:18:03+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:18:07+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:18:12+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:18:16+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:18:21+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:18:25+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:18:29+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:18:33+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:29:50+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:29:54+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:29:58+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:30:03+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:07+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:11+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:15+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:19+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:23+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:30:28+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:30:33+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-92,
"FIELD4":"04/01/01,00:30:37+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:41+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:45+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:30:49+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:30:54+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:30:58+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:02+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:06+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:10+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:14+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:18+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:22+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:26+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:30+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:34+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:31:38+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:31:42+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.823059,42.956429 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:31:47+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:31:51+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:31:55+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:31:59+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:32:03+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:32:08+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:32:12+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:32:16+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-74,
"FIELD4":"04/01/01,00:32:20+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-74,
"FIELD4":"04/01/01,00:32:25+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-74,
"FIELD4":"04/01/01,00:32:29+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:32:33+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:32:37+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:32:42+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:32:46+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:32:51+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:32:55+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:32:59+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:33:03+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:33:08+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:33:12+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:33:16+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:33:20+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:33:25+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:33:30+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:33:34+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:33:39+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:33:43+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:33:47+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-86,
"FIELD4":"04/01/01,00:33:52+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:33:56+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:34:01+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:34:05+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:34:09+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:34:13+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:34:17+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:34:22+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:34:26+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:34:30+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:34:34+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.819511,42.962059 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:34:39+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825928,42.959862 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:34:42+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825882,42.959843 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:34:45+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825905,42.959827 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:34:48+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825928,42.959805 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:34:51+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82589,42.959801 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:34:53+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825928,42.959724 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:34:56+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825928,42.959686 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:34:59+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825905,42.959671 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:35:02+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825905,42.959648 ]
},
"properties": {
"RSSI":-76,
"FIELD4":"04/01/01,00:35:05+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825905,42.95961 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:35:08+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825867,42.959599 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:35:11+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825844,42.959602 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:35:14+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82579,42.959618 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:35:17+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825752,42.959614 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:35:20+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825737,42.959618 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:35:23+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825729,42.959629 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:35:26+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825729,42.959637 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:35:29+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825737,42.959667 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:35:31+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825752,42.959663 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:35:34+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825775,42.959637 ]
},
"properties": {
"RSSI":-98,
"FIELD4":"04/01/01,00:35:37+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825768,42.959629 ]
},
"properties": {
"RSSI":-98,
"FIELD4":"04/01/01,00:35:40+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825752,42.959637 ]
},
"properties": {
"RSSI":-98,
"FIELD4":"04/01/01,00:35:43+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825752,42.959637 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:35:46+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825752,42.959648 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:35:49+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825752,42.959648 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:35:52+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825768,42.959652 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:35:55+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825775,42.959667 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:35:58+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82579,42.959663 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:36:01+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825806,42.959671 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:36:04+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825806,42.959667 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:36:07+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82579,42.959671 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:36:09+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825813,42.959671 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:36:12+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825829,42.959671 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:15+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825836,42.959671 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:18+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825844,42.959663 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:21+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825844,42.959663 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:24+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825851,42.959667 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:27+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825836,42.959671 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:30+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825813,42.959686 ]
},
"properties": {
"RSSI":-88,
"FIELD4":"04/01/01,00:36:33+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82579,42.959698 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:36:36+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82579,42.95969 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:36:39+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959682 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:36:42+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959679 ]
},
"properties": {
"RSSI":-90,
"FIELD4":"04/01/01,00:36:45+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959671 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:36:48+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959671 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:36:50+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825829,42.959667 ]
},
"properties": {
"RSSI":-84,
"FIELD4":"04/01/01,00:36:53+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959671 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:36:56+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959663 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:36:59+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959663 ]
},
"properties": {
"RSSI":-80,
"FIELD4":"04/01/01,00:37:02+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825813,42.959663 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:05+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959663 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:08+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825829,42.959663 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:11+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825829,42.959667 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:14+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825829,42.959667 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:17+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959663 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:20+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825821,42.959663 ]
},
"properties": {
"RSSI":-82,
"FIELD4":"04/01/01,00:37:23+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825813,42.959667 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:37:26+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.825813,42.959663 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:37:28+00"
}
},
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [ -78.82579,42.959652 ]
},
"properties": {
"RSSI":-78,
"FIELD4":"04/01/01,00:37:31+00"
}
}
]
}